@Stability(value=Stable)
public static interface CfnJob.DatabaseTableOutputOptionsProperty
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.*;
DatabaseTableOutputOptionsProperty databaseTableOutputOptionsProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.DatabaseTableOutputOptionsProperty.Builder
A builder for
CfnJob.DatabaseTableOutputOptionsProperty |
static class |
CfnJob.DatabaseTableOutputOptionsProperty.Jsii$Proxy
An implementation for
CfnJob.DatabaseTableOutputOptionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.DatabaseTableOutputOptionsProperty.Builder |
builder() |
String |
getTableName()
A prefix for the name of a table DataBrew will create in the database.
|
default Object |
getTempDirectory()
Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.
|
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) @Nullable default Object getTempDirectory()
@Stability(value=Stable) static CfnJob.DatabaseTableOutputOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.