Interface CfnJob.DatabaseTableOutputOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.DatabaseTableOutputOptionsProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.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.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();