CfnReviewTemplateProps
- class aws_cdk.aws_wellarchitected.CfnReviewTemplateProps(*, description, lenses, template_name, notes=None, tags=None)
Bases:
objectProperties for defining a
CfnReviewTemplate.- Parameters:
description (
str) – The review template description.lenses (
Sequence[str]) – The lenses applied to the review template.template_name (
str) – The name of the review template.notes (
Optional[str]) – The notes associated with the review template.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – The tags assigned to the review template.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_wellarchitected as wellarchitected cfn_review_template_props = wellarchitected.CfnReviewTemplateProps( description="description", lenses=["lenses"], template_name="templateName", # the properties below are optional notes="notes", tags=[wellarchitected.CfnReviewTemplate.TagsItemsProperty( key="key", value="value" )] )
Attributes
- description
The review template description.
- lenses
The lenses applied to the review template.
- notes
The notes associated with the review template.
- tags
The tags assigned to the review template.
- template_name
The name of the review template.