@Stability(value=Stable)
public static interface CfnDataset.DatabaseInputDefinitionProperty
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.databrew.*;
DatabaseInputDefinitionProperty databaseInputDefinitionProperty = DatabaseInputDefinitionProperty.builder()
.glueConnectionName("glueConnectionName")
// the properties below are optional
.databaseTableName("databaseTableName")
.queryString("queryString")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.key("key")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.DatabaseInputDefinitionProperty.Builder
A builder for
CfnDataset.DatabaseInputDefinitionProperty |
static class |
CfnDataset.DatabaseInputDefinitionProperty.Jsii$Proxy
An implementation for
CfnDataset.DatabaseInputDefinitionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.DatabaseInputDefinitionProperty.Builder |
builder() |
default String |
getDatabaseTableName()
The table within the target database.
|
String |
getGlueConnectionName()
The AWS Glue Connection that stores the connection information for the target database.
|
default String |
getQueryString()
Custom SQL to run against the provided AWS Glue connection.
|
default Object |
getTempDirectory()
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.
|
@Stability(value=Stable) @NotNull String getGlueConnectionName()
@Stability(value=Stable) @Nullable default String getDatabaseTableName()
@Stability(value=Stable) @Nullable default String getQueryString()
This SQL will be used as the input for DataBrew projects and jobs.
@Stability(value=Stable) @Nullable default Object getTempDirectory()
@Stability(value=Stable) static CfnDataset.DatabaseInputDefinitionProperty.Builder builder()
Copyright © 2022. All rights reserved.