Interface CfnConfiguredTablePropsMixin.GlueTableReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.GlueTableReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.GlueTableReferenceProperty
extends software.amazon.jsii.JsiiSerializable
A reference to a table within an AWS Glue data catalog.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
GlueTableReferenceProperty glueTableReferenceProperty = GlueTableReferenceProperty.builder()
.databaseName("databaseName")
.region("region")
.tableName("tableName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfiguredTablePropsMixin.GlueTableReferencePropertystatic final classAn implementation forCfnConfiguredTablePropsMixin.GlueTableReferenceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
The name of the database the AWS Glue table belongs to.- See Also:
-
getRegion
The AWS Region where the AWS Glue table is located.This parameter is required to uniquely identify and access tables across different Regions.
- See Also:
-
getTableName
The name of the AWS Glue table.- See Also:
-
builder
-