interface CfnReviewTemplateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WellArchitected.CfnReviewTemplateProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswellarchitected#CfnReviewTemplateProps |
Java | software.amazon.awscdk.services.wellarchitected.CfnReviewTemplateProps |
Python | aws_cdk.aws_wellarchitected.CfnReviewTemplateProps |
TypeScript | aws-cdk-lib » aws_wellarchitected » CfnReviewTemplateProps |
Properties for defining a CfnReviewTemplate.
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-lib';
const cfnReviewTemplateProps: wellarchitected.CfnReviewTemplateProps = {
description: 'description',
lenses: ['lenses'],
templateName: 'templateName',
// the properties below are optional
notes: 'notes',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The review template description. |
| lenses | string[] | The lenses applied to the review template. |
| template | string | The name of the review template. |
| notes? | string | The notes associated with the review template. |
| tags? | Tags[] | The tags assigned to the review template. |
description
Type:
string
The review template description.
lenses
Type:
string[]
The lenses applied to the review template.
templateName
Type:
string
The name of 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.

.NET
Go
Java
Python
TypeScript