interface CfnLensProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WellArchitected.CfnLensProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswellarchitected#CfnLensProps |
Java | software.amazon.awscdk.services.wellarchitected.CfnLensProps |
Python | aws_cdk.aws_wellarchitected.CfnLensProps |
TypeScript | aws-cdk-lib » aws_wellarchitected » CfnLensProps |
Properties for defining a CfnLens.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wellarchitected-lens.html
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 cfnLensProps: wellarchitected.CfnLensProps = {
jsonString: 'jsonString',
lensVersion: 'lensVersion',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| json | string | The JSON representation of a lens. |
| lens | string | The version of the lens. |
| tags? | Tags[] | The tags assigned to the lens. |
jsonString?
Type:
string
(optional)
The JSON representation of a lens.
lensVersion?
Type:
string
(optional)
The version of the lens.
tags?
Type:
Tags[]
(optional)
The tags assigned to the lens.

.NET
Go
Java
Python
TypeScript