interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Rbin.CfnRulePropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrbin#CfnRulePropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rbin.CfnRulePropsMixin.ResourceTagProperty |
Python | aws_cdk.cfn_property_mixins.aws_rbin.CfnRulePropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rbin » CfnRulePropsMixin » ResourceTagProperty |
[Tag-level retention rules only] Information about the resource tags used to identify resources that are retained by the retention rule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rbin as rbin } from '@aws-cdk/cfn-property-mixins';
const resourceTagProperty: rbin.CfnRulePropsMixin.ResourceTagProperty = {
resourceTagKey: 'resourceTagKey',
resourceTagValue: 'resourceTagValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The tag key. |
| resource | string | The tag value. |
resourceTagKey?
Type:
string
(optional)
The tag key.
resourceTagValue?
Type:
string
(optional)
The tag value.

.NET
Go
Java
Python
TypeScript