interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Rbin.Mixins.CfnRulePropsMixin.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrbin/mixins#CfnRulePropsMixin_ResourceTagProperty |
Java | software.amazon.awscdk.mixins.preview.services.rbin.mixins.CfnRulePropsMixin.ResourceTagProperty |
Python | aws_cdk.mixins_preview.aws_rbin.mixins.CfnRulePropsMixin.ResourceTagProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rbin » mixins » 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 { mixins as rbin_mixins } from '@aws-cdk/mixins-preview/aws-rbin';
const resourceTagProperty: rbin_mixins.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