public static interface CfnRecipe.DataCatalogInputDefinitionProperty
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.*; DataCatalogInputDefinitionProperty dataCatalogInputDefinitionProperty = DataCatalogInputDefinitionProperty.builder() .catalogId("catalogId") .databaseName("databaseName") .tableName("tableName") .tempDirectory(S3LocationProperty.builder() .bucket("bucket") // the properties below are optional .key("key") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnRecipe.DataCatalogInputDefinitionProperty.Builder
A builder for
CfnRecipe.DataCatalogInputDefinitionProperty |
static class |
CfnRecipe.DataCatalogInputDefinitionProperty.Jsii$Proxy
An implementation for
CfnRecipe.DataCatalogInputDefinitionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnRecipe.DataCatalogInputDefinitionProperty.Builder |
builder() |
default java.lang.String |
getCatalogId()
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
|
default java.lang.String |
getDatabaseName()
The name of a database in the Data Catalog.
|
default java.lang.String |
getTableName()
The name of a database table in the Data Catalog.
|
default java.lang.Object |
getTempDirectory()
Represents an Amazon location where DataBrew can store intermediate results.
|
default java.lang.String getCatalogId()
default java.lang.String getDatabaseName()
default java.lang.String getTableName()
This table corresponds to a DataBrew dataset.
default java.lang.Object getTempDirectory()
static CfnRecipe.DataCatalogInputDefinitionProperty.Builder builder()