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();