@Stability(value=Stable)
public static interface CfnDataset.DataCatalogInputDefinitionProperty
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.*;
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 |
CfnDataset.DataCatalogInputDefinitionProperty.Builder
A builder for
CfnDataset.DataCatalogInputDefinitionProperty |
static class |
CfnDataset.DataCatalogInputDefinitionProperty.Jsii$Proxy
An implementation for
CfnDataset.DataCatalogInputDefinitionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.DataCatalogInputDefinitionProperty.Builder |
builder() |
default String |
getCatalogId()
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
|
default String |
getDatabaseName()
The name of a database in the Data Catalog.
|
default String |
getTableName()
The name of a database table in the Data Catalog.
|
default Object |
getTempDirectory()
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.
|
@Stability(value=Stable) @Nullable default String getCatalogId()
@Stability(value=Stable) @Nullable default String getDatabaseName()
@Stability(value=Stable) @Nullable default String getTableName()
This table corresponds to a DataBrew dataset.
@Stability(value=Stable) @Nullable default Object getTempDirectory()
@Stability(value=Stable) static CfnDataset.DataCatalogInputDefinitionProperty.Builder builder()
Copyright © 2022. All rights reserved.