Interface CfnDataset.GlueConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataset.GlueConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataset
@Stability(Stable)
public static interface CfnDataset.GlueConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration information for coordination with AWS Glue , a fully managed extract, transform and load (ETL) service.
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.iotanalytics.*; GlueConfigurationProperty glueConfigurationProperty = GlueConfigurationProperty.builder() .databaseName("databaseName") .tableName("tableName") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataset.GlueConfigurationProperty
static final class
An implementation forCfnDataset.GlueConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the database in your AWS Glue Data Catalog in which the table is located.The name of the table in your AWS Glue Data Catalog that is used to perform the ETL operations.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
The name of the database in your AWS Glue Data Catalog in which the table is located.An AWS Glue Data Catalog database contains metadata tables.
- See Also:
-
getTableName
The name of the table in your AWS Glue Data Catalog that is used to perform the ETL operations.An AWS Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
- See Also:
-
builder
-