interface TagValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BCM.CfnDashboardPropsMixin.TagValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbcm#CfnDashboardPropsMixin_TagValuesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bcm.CfnDashboardPropsMixin.TagValuesProperty |
Python | aws_cdk.cfn_property_mixins.aws_bcm.CfnDashboardPropsMixin.TagValuesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bcm » CfnDashboardPropsMixin » TagValuesProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bcm as bcm } from '@aws-cdk/cfn-property-mixins';
const tagValuesProperty: bcm.CfnDashboardPropsMixin.TagValuesProperty = {
key: 'key',
matchOptions: ['matchOptions'],
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | |
| match | string[] | |
| values? | string[] |
key?
Type:
string
(optional)
matchOptions?
Type:
string[]
(optional)
values?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript