Interface CfnConfiguredTable.TableReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTable.TableReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTable
@Stability(Stable)
public static interface CfnConfiguredTable.TableReferenceProperty
extends software.amazon.jsii.JsiiSerializable
A pointer to the dataset that underlies this table.
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.cleanrooms.*;
TableReferenceProperty tableReferenceProperty = TableReferenceProperty.builder()
.athena(AthenaTableReferenceProperty.builder()
.databaseName("databaseName")
.tableName("tableName")
.workGroup("workGroup")
// the properties below are optional
.outputLocation("outputLocation")
.region("region")
.build())
.glue(GlueTableReferenceProperty.builder()
.databaseName("databaseName")
.tableName("tableName")
// the properties below are optional
.region("region")
.build())
.snowflake(SnowflakeTableReferenceProperty.builder()
.accountIdentifier("accountIdentifier")
.databaseName("databaseName")
.schemaName("schemaName")
.secretArn("secretArn")
.tableName("tableName")
.tableSchema(SnowflakeTableSchemaProperty.builder()
.v1(List.of(SnowflakeTableSchemaV1Property.builder()
.columnName("columnName")
.columnType("columnType")
.build()))
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfiguredTable.TableReferencePropertystatic final classAn implementation forCfnConfiguredTable.TableReferenceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIf present, a reference to the Athena table referred to by this table reference.default ObjectgetGlue()If present, a reference to the AWS Glue table referred to by this table reference.default ObjectIf present, a reference to the Snowflake table referred to by this table reference.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAthena
If present, a reference to the Athena table referred to by this table reference.Returns union: either
IResolvableorCfnConfiguredTable.AthenaTableReferenceProperty- See Also:
-
getGlue
If present, a reference to the AWS Glue table referred to by this table reference.Returns union: either
IResolvableorCfnConfiguredTable.GlueTableReferenceProperty- See Also:
-
getSnowflake
If present, a reference to the Snowflake table referred to by this table reference.Returns union: either
IResolvableorCfnConfiguredTable.SnowflakeTableReferenceProperty- See Also:
-
builder
-