Interface CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty.Jsii$Proxy
Enclosing class:
CfnConfiguredTablePropsMixin

@Stability(Stable) public static interface CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty extends software.amazon.jsii.JsiiSerializable
The schema of a Snowflake 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.cfnpropertymixins.services.cleanrooms.*;
 SnowflakeTableSchemaProperty snowflakeTableSchemaProperty = SnowflakeTableSchemaProperty.builder()
         .v1(List.of(SnowflakeTableSchemaV1Property.builder()
                 .columnName("columnName")
                 .columnType("columnType")
                 .build()))
         .build();
 

See Also: