Interface CfnJob.DatabaseOutputProperty

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

@Stability(Stable) public static interface CfnJob.DatabaseOutputProperty extends software.amazon.jsii.JsiiSerializable
Represents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.

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();
 
  • Method Details

    • getDatabaseOptions

      @Stability(Stable) @NotNull Object getDatabaseOptions()
      Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
    • getGlueConnectionName

      @Stability(Stable) @NotNull String getGlueConnectionName()
      The AWS Glue connection that stores the connection information for the target database.
    • getDatabaseOutputMode

      @Stability(Stable) @Nullable default String getDatabaseOutputMode()
      The output mode to write into the database.

      Currently supported option: NEW_TABLE.

    • builder

      @Stability(Stable) static CfnJob.DatabaseOutputProperty.Builder builder()
      Returns:
      a CfnJob.DatabaseOutputProperty.Builder of CfnJob.DatabaseOutputProperty