@Stability(value=Stable)
public static interface CfnDataset.InputProperty
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.*;
InputProperty inputProperty = InputProperty.builder()
.databaseInputDefinition(DatabaseInputDefinitionProperty.builder()
.glueConnectionName("glueConnectionName")
// the properties below are optional
.databaseTableName("databaseTableName")
.queryString("queryString")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.key("key")
.build())
.build())
.dataCatalogInputDefinition(DataCatalogInputDefinitionProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.tableName("tableName")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.key("key")
.build())
.build())
.metadata(MetadataProperty.builder()
.sourceArn("sourceArn")
.build())
.s3InputDefinition(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.key("key")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.InputProperty.Builder
A builder for
CfnDataset.InputProperty |
static class |
CfnDataset.InputProperty.Jsii$Proxy
An implementation for
CfnDataset.InputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.InputProperty.Builder |
builder() |
default Object |
getDatabaseInputDefinition()
Connection information for dataset input files stored in a database.
|
default Object |
getDataCatalogInputDefinition()
The AWS Glue Data Catalog parameters for the data.
|
default Object |
getMetadata()
Contains additional resource information needed for specific datasets.
|
default Object |
getS3InputDefinition()
The Amazon S3 location where the data is stored.
|
@Stability(value=Stable) @Nullable default Object getDatabaseInputDefinition()
@Stability(value=Stable) @Nullable default Object getDataCatalogInputDefinition()
@Stability(value=Stable) @Nullable default Object getMetadata()
@Stability(value=Stable) @Nullable default Object getS3InputDefinition()
@Stability(value=Stable) static CfnDataset.InputProperty.Builder builder()
CfnDataset.InputProperty.Builder of CfnDataset.InputPropertyCopyright © 2022. All rights reserved.