interface TagAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.LakeFormation.TagAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslakeformation#TagAssociationReference |
Java | software.amazon.awscdk.interfaces.lakeformation.TagAssociationReference |
Python | aws_cdk.interfaces.aws_lakeformation.TagAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_lakeformation » TagAssociationReference |
A reference to a TagAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lakeformation as interfaces_aws_lakeformation } from 'aws-cdk-lib/interfaces';
const tagAssociationReference: interfaces_aws_lakeformation.TagAssociationReference = {
resourceIdentifier: 'resourceIdentifier',
tagsIdentifier: 'tagsIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceIdentifier of the TagAssociation resource. |
| tags | string | The TagsIdentifier of the TagAssociation resource. |
resourceIdentifier
Type:
string
The ResourceIdentifier of the TagAssociation resource.
tagsIdentifier
Type:
string
The TagsIdentifier of the TagAssociation resource.

.NET
Go
Java
Python
TypeScript