@Stability(value=Stable)
public static interface CfnJob.DataCatalogOutputProperty
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.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
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.overwrite(false)
.s3Options(S3TableOutputOptionsProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.bucketOwner("bucketOwner")
.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()
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
|
String |
getDatabaseName()
The name of a database in the Data Catalog.
|
default Object |
getDatabaseOptions()
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
|
default Object |
getOverwrite()
A value that, if true, means that any data in the location specified for output is overwritten with new output.
|
default Object |
getS3Options()
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
|
String |
getTableName()
The name of a table in the Data Catalog.
|
@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()
Not supported with DatabaseOptions.
@Stability(value=Stable) @Nullable default Object getS3Options()
@Stability(value=Stable) static CfnJob.DataCatalogOutputProperty.Builder builder()
Copyright © 2022. All rights reserved.