@Stability(value=Stable)
public static interface CfnMLTransform.GlueTablesProperty
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.glue.*;
GlueTablesProperty glueTablesProperty = GlueTablesProperty.builder()
.databaseName("databaseName")
.tableName("tableName")
// the properties below are optional
.catalogId("catalogId")
.connectionName("connectionName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMLTransform.GlueTablesProperty.Builder
A builder for
CfnMLTransform.GlueTablesProperty |
static class |
CfnMLTransform.GlueTablesProperty.Jsii$Proxy
An implementation for
CfnMLTransform.GlueTablesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMLTransform.GlueTablesProperty.Builder |
builder() |
default String |
getCatalogId()
A unique identifier for the AWS Glue Data Catalog .
|
default String |
getConnectionName()
The name of the connection to the AWS Glue Data Catalog .
|
String |
getDatabaseName()
A database name in the AWS Glue Data Catalog .
|
String |
getTableName()
A table name in the AWS Glue Data Catalog .
|
@Stability(value=Stable) @NotNull String getDatabaseName()
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) @Nullable default String getCatalogId()
@Stability(value=Stable) @Nullable default String getConnectionName()
@Stability(value=Stable) static CfnMLTransform.GlueTablesProperty.Builder builder()
Copyright © 2022. All rights reserved.