interface ResourceTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_rbin.CfnRule.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrbin#CfnRule_ResourceTagProperty |
Java | software.amazon.awscdk.services.rbin.CfnRule.ResourceTagProperty |
Python | aws_cdk.aws_rbin.CfnRule.ResourceTagProperty |
TypeScript | aws-cdk-lib » aws_rbin » CfnRule » 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-lib';
const resourceTagProperty: rbin.CfnRule.ResourceTagProperty = {
resourceTagKey: 'resourceTagKey',
resourceTagValue: 'resourceTagValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The tag key. |
| resource | string | The tag value. |
resourceTagKey
Type:
string
The tag key.
resourceTagValue
Type:
string
The tag value.

.NET
Go
Java
Python
TypeScript