@Stability(value=Stable)
public static interface CfnTagAssociation.ResourceProperty
extends software.amazon.jsii.JsiiSerializable
// 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;
ResourceProperty resourceProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTagAssociation.ResourceProperty.Builder
A builder for
CfnTagAssociation.ResourceProperty |
static class |
CfnTagAssociation.ResourceProperty.Jsii$Proxy
An implementation for
CfnTagAssociation.ResourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTagAssociation.ResourceProperty.Builder |
builder() |
default Object |
getCatalog()
`CfnTagAssociation.ResourceProperty.Catalog`.
|
default Object |
getDatabase()
`CfnTagAssociation.ResourceProperty.Database`.
|
default Object |
getTable()
`CfnTagAssociation.ResourceProperty.Table`.
|
default Object |
getTableWithColumns()
`CfnTagAssociation.ResourceProperty.TableWithColumns`.
|
@Stability(value=Stable) @Nullable default Object getCatalog()
@Stability(value=Stable) @Nullable default Object getDatabase()
@Stability(value=Stable) @Nullable default Object getTable()
@Stability(value=Stable) @Nullable default Object getTableWithColumns()
@Stability(value=Stable) static CfnTagAssociation.ResourceProperty.Builder builder()
Copyright © 2022. All rights reserved.