interface CfnTagMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LakeFormation.CfnTagMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslakeformation#CfnTagMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lakeformation.CfnTagMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lakeformation.CfnTagMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lakeformation » 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 { aws_lakeformation as lakeformation } from '@aws-cdk/cfn-property-mixins';
const cfnTagMixinProps: lakeformation.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