interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Invoicing.CfnInvoiceUnitPropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinvoicing#CfnInvoiceUnitPropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.invoicing.CfnInvoiceUnitPropsMixin.ResourceTagProperty |
Python | aws_cdk.cfn_property_mixins.aws_invoicing.CfnInvoiceUnitPropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_invoicing » 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 { aws_invoicing as invoicing } from '@aws-cdk/cfn-property-mixins';
const resourceTagProperty: invoicing.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