public static interface CfnJob.DataCatalogOutputProperty
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 java.lang.String |
getCatalogId()
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
|
java.lang.String |
getDatabaseName()
The name of a database in the Data Catalog.
|
default java.lang.Object |
getDatabaseOptions()
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
|
default java.lang.Object |
getOverwrite()
A value that, if true, means that any data in the location specified for output is overwritten with new output.
|
default java.lang.Object |
getS3Options()
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
|
java.lang.String |
getTableName()
The name of a table in the Data Catalog.
|
java.lang.String getDatabaseName()
java.lang.String getTableName()
default java.lang.String getCatalogId()
default java.lang.Object getDatabaseOptions()
default java.lang.Object getOverwrite()
Not supported with DatabaseOptions.
default java.lang.Object getS3Options()
static CfnJob.DataCatalogOutputProperty.Builder builder()