Interface CfnMLTransform.InputRecordTablesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMLTransform.InputRecordTablesProperty.Jsii$Proxy
Enclosing class:
CfnMLTransform

@Stability(Stable) public static interface CfnMLTransform.InputRecordTablesProperty extends software.amazon.jsii.JsiiSerializable
A list of AWS Glue table definitions used by the transform.

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.*;
 InputRecordTablesProperty inputRecordTablesProperty = InputRecordTablesProperty.builder()
         .glueTables(List.of(GlueTablesProperty.builder()
                 .databaseName("databaseName")
                 .tableName("tableName")
                 // the properties below are optional
                 .catalogId("catalogId")
                 .connectionName("connectionName")
                 .build()))
         .build();