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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecipe.DataCatalogInputDefinitionPropertystatic final classAn implementation forCfnRecipe.DataCatalogInputDefinitionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe unique identifier of the AWS account that holds the Data Catalog that stores the data.default StringThe name of a database in the Data Catalog.default StringThe name of a database table in the Data Catalog.default ObjectRepresents 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
-