@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.365Z") @Stability(value=Stable) public interface CfnTagAssociationProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTagAssociationProps.Builder
A builder for
CfnTagAssociationProps |
static class |
CfnTagAssociationProps.Jsii$Proxy
An implementation for
CfnTagAssociationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTagAssociationProps.Builder |
builder() |
Object |
getLfTags()
`AWS::LakeFormation::TagAssociation.LFTags`.
|
Object |
getResource()
`AWS::LakeFormation::TagAssociation.Resource`.
|
@Stability(value=Stable) @NotNull Object getLfTags()
@Stability(value=Stable) @NotNull Object getResource()
@Stability(value=Stable) static CfnTagAssociationProps.Builder builder()
CfnTagAssociationProps.Builder of CfnTagAssociationPropsCopyright © 2022. All rights reserved.