CfnReviewTemplateProps

class aws_cdk.aws_wellarchitected.CfnReviewTemplateProps(*, description, lenses, template_name, notes=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-description

lenses

The lenses applied to the review template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-lenses

notes

The notes associated with the review template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-notes

tags

The tags assigned to the review template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-tags

template_name

The name of the review template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-reviewtemplate.html#cfn-wellarchitected-reviewtemplate-templatename