CfnReviewTemplateMixinProps
- class aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnReviewTemplateMixinProps(*, description=None, lenses=None, notes=None, tags=None, template_name=None)
Bases:
objectProperties for CfnReviewTemplatePropsMixin.
- Parameters:
description (
Optional[str]) – The review template description.lenses (
Optional[Sequence[str]]) – The lenses applied to 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.template_name (
Optional[str]) – The name of 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.cfn_property_mixins import aws_wellarchitected as wellarchitected cfn_review_template_mixin_props = wellarchitected.CfnReviewTemplateMixinProps( description="description", lenses=["lenses"], notes="notes", tags=[wellarchitected.CfnReviewTemplatePropsMixin.TagsItemsProperty( key="key", value="value" )], template_name="templateName" )
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.