interface CfnTagAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnTagAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnTagAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnTagAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnTagAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnTagAssociationMixinProps |
Properties for CfnTagAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lakeformation_mixins } from '@aws-cdk/mixins-preview/aws-lakeformation';
declare const catalog: any;
declare const tableWildcard: any;
const cfnTagAssociationMixinProps: lakeformation_mixins.CfnTagAssociationMixinProps = {
lfTags: [{
catalogId: 'catalogId',
tagKey: 'tagKey',
tagValues: ['tagValues'],
}],
resource: {
catalog: catalog,
database: {
catalogId: 'catalogId',
name: 'name',
},
table: {
catalogId: 'catalogId',
databaseName: 'databaseName',
name: 'name',
tableWildcard: tableWildcard,
},
tableWithColumns: {
catalogId: 'catalogId',
columnNames: ['columnNames'],
databaseName: 'databaseName',
name: 'name',
},
},
};
Properties
| Name | Type | Description | |
|---|---|---|---|
| lf | IResolvable | (IResolvable | LFTag)[] | A structure containing an LF-tag key-value pair. | |
| resource? | IResolvable | Resource | UTF-8 string (valid values: `DATABASE | TABLE` ). |
lfTags?
Type:
IResolvable | (IResolvable | LFTag)[]
(optional)
A structure containing an LF-tag key-value pair.
resource?
Type:
IResolvable | Resource
(optional)
UTF-8 string (valid values: DATABASE | TABLE ).
The resource for which the LF-tag policy applies.

.NET
Go
Java
Python
TypeScript