Interface CfnMLTransform.GlueTablesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMLTransform.GlueTablesProperty.Jsii$Proxy
- Enclosing class:
- CfnMLTransform
@Stability(Stable)
public static interface CfnMLTransform.GlueTablesProperty
extends software.amazon.jsii.JsiiSerializable
The database and table in the AWS Glue Data Catalog that is used for input or output data.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMLTransform.GlueTablesProperty
static final class
An implementation forCfnMLTransform.GlueTablesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
A database name in the AWS Glue Data Catalog . -
getTableName
A table name in the AWS Glue Data Catalog . -
getCatalogId
A unique identifier for the AWS Glue Data Catalog . -
getConnectionName
The name of the connection to the AWS Glue Data Catalog . -
builder
-