Interface CfnTagAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTagAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:58.440Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTagAssociationProps
static final class
An 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. -
getResource
UTF-8 string (valid values:DATABASE | TABLE
).The resource for which the LF-tag policy applies.
-
builder
- Returns:
- a
CfnTagAssociationProps.Builder
ofCfnTagAssociationProps
-