Interface CfnJobPropsMixin.DatabaseTableOutputOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobPropsMixin.DatabaseTableOutputOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnJobPropsMixin
@Stability(Stable)
public static interface CfnJobPropsMixin.DatabaseTableOutputOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.databrew.*;
DatabaseTableOutputOptionsProperty databaseTableOutputOptionsProperty = DatabaseTableOutputOptionsProperty.builder()
.tableName("tableName")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobPropsMixin.DatabaseTableOutputOptionsPropertystatic final classAn implementation forCfnJobPropsMixin.DatabaseTableOutputOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTableName
A prefix for the name of a table DataBrew will create in the database.- See Also:
-
getTempDirectory
Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.Returns union: either
IResolvableorCfnJobPropsMixin.S3LocationProperty- See Also:
-
builder
-