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: