interface LFTagKeyResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnPrincipalPermissionsPropsMixin.LFTagKeyResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnPrincipalPermissionsPropsMixin_LFTagKeyResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnPrincipalPermissionsPropsMixin.LFTagKeyResourceProperty |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnPrincipalPermissionsPropsMixin.LFTagKeyResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnPrincipalPermissionsPropsMixin » LFTagKeyResourceProperty |
A structure containing an LF-tag key and values for a resource.
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';
const lFTagKeyResourceProperty: lakeformation_mixins.CfnPrincipalPermissionsPropsMixin.LFTagKeyResourceProperty = {
catalogId: 'catalogId',
tagKey: 'tagKey',
tagValues: ['tagValues'],
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The identifier for the Data Catalog where the location is registered with Data Catalog . |
| tag | string | The key-name for the LF-tag. |
| tag | string[] | A list of possible values for the corresponding TagKey of an LF-tag key-value pair. |
catalogId?
Type:
string
(optional)
The identifier for the Data Catalog where the location is registered with Data Catalog .
tagKey?
Type:
string
(optional)
The key-name for the LF-tag.
tagValues?
Type:
string[]
(optional)
A list of possible values for the corresponding TagKey of an LF-tag key-value pair.

.NET
Go
Java
Python
TypeScript