interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Invoicing.Mixins.CfnInvoiceUnitPropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinvoicing/mixins#CfnInvoiceUnitPropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.mixins.preview.services.invoicing.mixins.CfnInvoiceUnitPropsMixin.ResourceTagProperty |
Python | aws_cdk.mixins_preview.aws_invoicing.mixins.CfnInvoiceUnitPropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/mixins-preview » aws_invoicing » mixins » CfnInvoiceUnitPropsMixin » 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 { mixins as invoicing_mixins } from '@aws-cdk/mixins-preview/aws-invoicing';
const resourceTagProperty: invoicing_mixins.CfnInvoiceUnitPropsMixin.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
(optional)
The object key of your of your resource tag.
value?
Type:
string
(optional)
The specific value of the resource tag.

.NET
Go
Java
Python
TypeScript