Interface CfnRecipe.SecondaryInputProperty

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

@Stability(Stable) public static interface CfnRecipe.SecondaryInputProperty extends software.amazon.jsii.JsiiSerializable
Represents secondary inputs in a UNION transform.

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.*;
 SecondaryInputProperty secondaryInputProperty = SecondaryInputProperty.builder()
         .dataCatalogInputDefinition(DataCatalogInputDefinitionProperty.builder()
                 .catalogId("catalogId")
                 .databaseName("databaseName")
                 .tableName("tableName")
                 .tempDirectory(S3LocationProperty.builder()
                         .bucket("bucket")
                         // the properties below are optional
                         .key("key")
                         .build())
                 .build())
         .s3InputDefinition(S3LocationProperty.builder()
                 .bucket("bucket")
                 // the properties below are optional
                 .key("key")
                 .build())
         .build();
 

See Also: