interface CfnLensMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WellArchitected.CfnLensMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswellarchitected#CfnLensMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wellarchitected.CfnLensMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnLensMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wellarchitected » CfnLensMixinProps |
Properties for CfnLensPropsMixin.
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/cfn-property-mixins';
const cfnLensMixinProps: wellarchitected.CfnLensMixinProps = {
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