@Stability(value=Stable)
public static interface CfnRecipe.SecondaryInputProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRecipe.SecondaryInputProperty.Builder
A builder for
CfnRecipe.SecondaryInputProperty |
static class |
CfnRecipe.SecondaryInputProperty.Jsii$Proxy
An implementation for
CfnRecipe.SecondaryInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRecipe.SecondaryInputProperty.Builder |
builder() |
default Object |
getDataCatalogInputDefinition()
The AWS Glue Data Catalog parameters for the data.
|
default Object |
getS3InputDefinition()
The Amazon S3 location where the data is stored.
|
@Stability(value=Stable) @Nullable default Object getDataCatalogInputDefinition()
@Stability(value=Stable) @Nullable default Object getS3InputDefinition()
@Stability(value=Stable) static CfnRecipe.SecondaryInputProperty.Builder builder()
Copyright © 2022. All rights reserved.