interface CfnTagMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LakeFormation.Mixins.CfnTagMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslakeformation/mixins#CfnTagMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lakeformation.mixins.CfnTagMixinProps |
Python | aws_cdk.mixins_preview.aws_lakeformation.mixins.CfnTagMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lakeformation » mixins » CfnTagMixinProps |
Properties for CfnTagPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-tag.html
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 cfnTagMixinProps: lakeformation_mixins.CfnTagMixinProps = {
catalogId: 'catalogId',
tagKey: 'tagKey',
tagValues: ['tagValues'],
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
| tag | string | UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern . |
| tag | string[] | An array of UTF-8 strings, not less than 1 or more than 50 strings. |
catalogId?
Type:
string
(optional)
Catalog id string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
The identifier for the Data Catalog . By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your AWS Lake Formation environment.
tagKey?
Type:
string
(optional)
UTF-8 string, not less than 1 or more than 255 bytes long, matching the single-line string pattern .
The key-name for the LF-tag.
tagValues?
Type:
string[]
(optional)
An array of UTF-8 strings, not less than 1 or more than 50 strings.
A list of possible values of the corresponding TagKey of an LF-tag key-value pair.

.NET
Go
Java
Python
TypeScript