Interface CfnTagAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTagAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:09.696Z")
@Stability(Stable)
public interface CfnTagAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTagAssociation.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lakeformation.*;
Object catalog;
Object tableWildcard;
CfnTagAssociationProps cfnTagAssociationProps = CfnTagAssociationProps.builder()
.lfTags(List.of(LFTagPairProperty.builder()
.catalogId("catalogId")
.tagKey("tagKey")
.tagValues(List.of("tagValues"))
.build()))
.resource(ResourceProperty.builder()
.catalog(catalog)
.database(DatabaseResourceProperty.builder()
.catalogId("catalogId")
.name("name")
.build())
.table(TableResourceProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
// the properties below are optional
.name("name")
.tableWildcard(tableWildcard)
.build())
.tableWithColumns(TableWithColumnsResourceProperty.builder()
.catalogId("catalogId")
.columnNames(List.of("columnNames"))
.databaseName("databaseName")
.name("name")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTagAssociationPropsstatic final classAn implementation forCfnTagAssociationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A structure containing an LF-tag key-value pair.UTF-8 string (valid values:DATABASE | TABLE).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLfTags
A structure containing an LF-tag key-value pair.- See Also:
-
getResource
UTF-8 string (valid values:DATABASE | TABLE).The resource for which the LF-tag policy applies.
- See Also:
-
builder
- Returns:
- a
CfnTagAssociationProps.BuilderofCfnTagAssociationProps
-