interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Invoicing.CfnInvoiceUnit.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinvoicing#CfnInvoiceUnit_ResourceTagProperty |
Java | software.amazon.awscdk.services.invoicing.CfnInvoiceUnit.ResourceTagProperty |
Python | aws_cdk.aws_invoicing.CfnInvoiceUnit.ResourceTagProperty |
TypeScript | aws-cdk-lib » aws_invoicing » CfnInvoiceUnit » ResourceTagProperty |
The tag structure that contains a tag key and value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_invoicing as invoicing } from 'aws-cdk-lib';
const resourceTagProperty: invoicing.CfnInvoiceUnit.ResourceTagProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The object key of your of your resource tag. |
| value | string | The specific value of the resource tag. |
key
Type:
string
The object key of your of your resource tag.
value
Type:
string
The specific value of the resource tag.

.NET
Go
Java
Python
TypeScript