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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMLTransform.InputRecordTablesProperty
static final class
An implementation forCfnMLTransform.InputRecordTablesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGlueTables
The database and table in the AWS Glue Data Catalog that is used for input or output data. -
builder
-