interface TagsItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeExternalAccountBinding.TagsItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeExternalAccountBinding_TagsItemsProperty |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeExternalAccountBinding.TagsItemsProperty |
Python | aws_cdk.aws_certificatemanager.CfnAcmeExternalAccountBinding.TagsItemsProperty |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeExternalAccountBinding » TagsItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_certificatemanager as certificatemanager } from 'aws-cdk-lib';
const tagsItemsProperty: certificatemanager.CfnAcmeExternalAccountBinding.TagsItemsProperty = {
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
The key name of the tag.
value
Type:
string
The value for the tag.

.NET
Go
Java
Python
TypeScript