interface CfnReviewTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WellArchitected.CfnReviewTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswellarchitected#CfnReviewTemplateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wellarchitected.CfnReviewTemplateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnReviewTemplateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wellarchitected » CfnReviewTemplateMixinProps |
Properties for CfnReviewTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wellarchitected as wellarchitected } from '@aws-cdk/cfn-property-mixins';
const cfnReviewTemplateMixinProps: wellarchitected.CfnReviewTemplateMixinProps = {
description: 'description',
lenses: ['lenses'],
notes: 'notes',
tags: [{
key: 'key',
value: 'value',
}],
templateName: 'templateName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The review template description. |
| lenses? | string[] | The lenses applied to the review template. |
| notes? | string | The notes associated with the review template. |
| tags? | Tags[] | The tags assigned to the review template. |
| template | string | The name of the review template. |
description?
Type:
string
(optional)
The review template description.
lenses?
Type:
string[]
(optional)
The lenses applied to the review template.
notes?
Type:
string
(optional)
The notes associated with the review template.
tags?
Type:
Tags[]
(optional)
The tags assigned to the review template.
templateName?
Type:
string
(optional)
The name of the review template.

.NET
Go
Java
Python
TypeScript