@Stability(value=Stable)
public static interface CfnMLTransform.InputRecordTablesProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMLTransform.InputRecordTablesProperty.Builder
A builder for
CfnMLTransform.InputRecordTablesProperty |
static class |
CfnMLTransform.InputRecordTablesProperty.Jsii$Proxy
An implementation for
CfnMLTransform.InputRecordTablesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMLTransform.InputRecordTablesProperty.Builder |
builder() |
default Object |
getGlueTables()
The database and table in the AWS Glue Data Catalog that is used for input or output data.
|
@Stability(value=Stable) @Nullable default Object getGlueTables()
@Stability(value=Stable) static CfnMLTransform.InputRecordTablesProperty.Builder builder()
Copyright © 2022. All rights reserved.