Interface CfnRecipe.DataCatalogInputDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecipe.DataCatalogInputDefinitionProperty.Jsii$Proxy
- Enclosing class:
- CfnRecipe
@Stability(Stable)
public static interface CfnRecipe.DataCatalogInputDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
Represents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRecipe.DataCatalogInputDefinitionProperty
static final class
An implementation forCfnRecipe.DataCatalogInputDefinitionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The unique identifier of the AWS account that holds the Data Catalog that stores the data.default String
The name of a database in the Data Catalog.default String
The name of a database table in the Data Catalog.default Object
Represents an Amazon location where DataBrew can store intermediate results.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The unique identifier of the AWS account that holds the Data Catalog that stores the data. -
getDatabaseName
The name of a database in the Data Catalog. -
getTableName
The name of a database table in the Data Catalog.This table corresponds to a DataBrew dataset.
-
getTempDirectory
Represents an Amazon location where DataBrew can store intermediate results. -
builder
-