@Stability(value=Stable)
public static interface CfnJob.DataCatalogOutputProperty
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.databrew.*;
DataCatalogOutputProperty dataCatalogOutputProperty = DataCatalogOutputProperty.builder()
.databaseName("databaseName")
.tableName("tableName")
// the properties below are optional
.catalogId("catalogId")
.databaseOptions(DatabaseTableOutputOptionsProperty.builder()
.tableName("tableName")
// the properties below are optional
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.key("key")
.build())
.build())
.overwrite(false)
.s3Options(S3TableOutputOptionsProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.key("key")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.DataCatalogOutputProperty.Builder
A builder for
CfnJob.DataCatalogOutputProperty |
static class |
CfnJob.DataCatalogOutputProperty.Jsii$Proxy
An implementation for
CfnJob.DataCatalogOutputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.DataCatalogOutputProperty.Builder |
builder() |
default String |
getCatalogId()
`CfnJob.DataCatalogOutputProperty.CatalogId`.
|
String |
getDatabaseName()
`CfnJob.DataCatalogOutputProperty.DatabaseName`.
|
default Object |
getDatabaseOptions()
`CfnJob.DataCatalogOutputProperty.DatabaseOptions`.
|
default Object |
getOverwrite()
`CfnJob.DataCatalogOutputProperty.Overwrite`.
|
default Object |
getS3Options()
`CfnJob.DataCatalogOutputProperty.S3Options`.
|
String |
getTableName()
`CfnJob.DataCatalogOutputProperty.TableName`.
|
@Stability(value=Stable) @NotNull String getDatabaseName()
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) @Nullable default String getCatalogId()
@Stability(value=Stable) @Nullable default Object getDatabaseOptions()
@Stability(value=Stable) @Nullable default Object getOverwrite()
@Stability(value=Stable) @Nullable default Object getS3Options()
@Stability(value=Stable) static CfnJob.DataCatalogOutputProperty.Builder builder()
Copyright © 2022. All rights reserved.