Interface CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty
extends software.amazon.jsii.JsiiSerializable
A reference to a table within Snowflake.
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.*;
SnowflakeTableReferenceProperty snowflakeTableReferenceProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe account identifier for the Snowflake table reference.default StringThe name of the database the Snowflake table belongs to.default StringThe schema name of the Snowflake table reference.default StringThe secret ARN of the Snowflake table reference.default StringThe name of the Snowflake table.default ObjectThe schema of the Snowflake table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountIdentifier
The account identifier for the Snowflake table reference.- See Also:
-
getDatabaseName
The name of the database the Snowflake table belongs to.- See Also:
-
getSchemaName
The schema name of the Snowflake table reference.- See Also:
-
getSecretArn
The secret ARN of the Snowflake table reference.- See Also:
-
getTableName
The name of the Snowflake table.- See Also:
-
getTableSchema
The schema of the Snowflake table.Returns union: either
IResolvableorCfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty.Builder builder()
-