interface KeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.KeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_KeyValuePairProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.KeyValuePairProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.KeyValuePairProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » 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 { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const keyValuePairProperty: devopsagent.CfnAssociation.KeyValuePairProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | |
| value | string |
key
Type:
string
value
Type:
string

.NET
Go
Java
Python
TypeScript