Interface CfnRecipe.InputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecipe.InputProperty.Jsii$Proxy
- Enclosing class:
CfnRecipe
@Stability(Stable)
public static interface CfnRecipe.InputProperty
extends software.amazon.jsii.JsiiSerializable
Represents information on how DataBrew can find data, in either the AWS Glue Data Catalog or Amazon S3.
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.*; InputProperty inputProperty = InputProperty.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRecipe.InputProperty
static final class
An implementation forCfnRecipe.InputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataCatalogInputDefinition
The AWS Glue Data Catalog parameters for the data.- See Also:
-
getS3InputDefinition
The Amazon S3 location where the data is stored.- See Also:
-
builder
- Returns:
- a
CfnRecipe.InputProperty.Builder
ofCfnRecipe.InputProperty
-