interface KeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.KeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_KeyValuePairProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.KeyValuePairProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.KeyValuePairProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » KeyValuePairProperty |
A key-value pair for tags.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
const keyValuePairProperty: devopsagent_mixins.CfnAssociationPropsMixin.KeyValuePairProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key name of the tag. |
| value? | string | The value for the tag. |
key?
Type:
string
(optional)
The key name of the tag.
value?
Type:
string
(optional)
The value for the tag.

.NET
Go
Java
Python
TypeScript