Interface CfnMLTransformPropsMixin.GlueTablesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMLTransformPropsMixin.GlueTablesProperty.Jsii$Proxy
- Enclosing class:
CfnMLTransformPropsMixin
@Stability(Stable)
public static interface CfnMLTransformPropsMixin.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.mixins.preview.services.glue.mixins.*;
GlueTablesProperty glueTablesProperty = GlueTablesProperty.builder()
.catalogId("catalogId")
.connectionName("connectionName")
.databaseName("databaseName")
.tableName("tableName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMLTransformPropsMixin.GlueTablesPropertystatic final classAn implementation forCfnMLTransformPropsMixin.GlueTablesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA unique identifier for the AWS Glue Data Catalog .default StringThe name of the connection to the AWS Glue Data Catalog .default StringA database name in the AWS Glue Data Catalog .default StringA table name in the AWS Glue Data Catalog .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
A unique identifier for the AWS Glue Data Catalog .- See Also:
-
getConnectionName
The name of the connection to the AWS Glue Data Catalog .- See Also:
-
getDatabaseName
A database name in the AWS Glue Data Catalog .- See Also:
-
getTableName
A table name in the AWS Glue Data Catalog .- See Also:
-
builder
-