@Stability(value=Stable)
public static interface CfnJob.DatabaseOutputProperty
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.*;
DatabaseOutputProperty databaseOutputProperty = DatabaseOutputProperty.builder()
.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())
.glueConnectionName("glueConnectionName")
// the properties below are optional
.databaseOutputMode("databaseOutputMode")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.DatabaseOutputProperty.Builder
A builder for
CfnJob.DatabaseOutputProperty |
static class |
CfnJob.DatabaseOutputProperty.Jsii$Proxy
An implementation for
CfnJob.DatabaseOutputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.DatabaseOutputProperty.Builder |
builder() |
Object |
getDatabaseOptions()
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
|
default String |
getDatabaseOutputMode()
The output mode to write into the database.
|
String |
getGlueConnectionName()
The AWS Glue connection that stores the connection information for the target database.
|
@Stability(value=Stable) @NotNull Object getDatabaseOptions()
@Stability(value=Stable) @NotNull String getGlueConnectionName()
@Stability(value=Stable) @Nullable default String getDatabaseOutputMode()
Currently supported option: NEW_TABLE.
@Stability(value=Stable) static CfnJob.DatabaseOutputProperty.Builder builder()
Copyright © 2022. All rights reserved.