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();