Class CfnConfiguredTable.SnowflakeTableReferenceProperty
A reference to a table within Snowflake.
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.SnowflakeTableReferenceProperty : CfnConfiguredTable.ISnowflakeTableReferenceProperty
Syntax (vb)
Public Class CfnConfiguredTable.SnowflakeTableReferenceProperty Implements CfnConfiguredTable.ISnowflakeTableReferenceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var snowflakeTableReferenceProperty = new SnowflakeTableReferenceProperty {
AccountIdentifier = "accountIdentifier",
DatabaseName = "databaseName",
SchemaName = "schemaName",
SecretArn = "secretArn",
TableName = "tableName",
TableSchema = new SnowflakeTableSchemaProperty {
V1 = new [] { new SnowflakeTableSchemaV1Property {
ColumnName = "columnName",
ColumnType = "columnType"
} }
}
};
Synopsis
Constructors
SnowflakeTableReferenceProperty() | A reference to a table within Snowflake. |
Properties
AccountIdentifier | The account identifier for the Snowflake table reference. |
DatabaseName | The name of the database the Snowflake table belongs to. |
SchemaName | The schema name of the Snowflake table reference. |
SecretArn | The secret ARN of the Snowflake table reference. |
TableName | The name of the Snowflake table. |
TableSchema | The schema of the Snowflake table. |
Constructors
SnowflakeTableReferenceProperty()
A reference to a table within Snowflake.
public SnowflakeTableReferenceProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var snowflakeTableReferenceProperty = new SnowflakeTableReferenceProperty {
AccountIdentifier = "accountIdentifier",
DatabaseName = "databaseName",
SchemaName = "schemaName",
SecretArn = "secretArn",
TableName = "tableName",
TableSchema = new SnowflakeTableSchemaProperty {
V1 = new [] { new SnowflakeTableSchemaV1Property {
ColumnName = "columnName",
ColumnType = "columnType"
} }
}
};
Properties
AccountIdentifier
The account identifier for the Snowflake table reference.
public string AccountIdentifier { get; set; }
Property Value
Remarks
DatabaseName
The name of the database the Snowflake table belongs to.
public string DatabaseName { get; set; }
Property Value
Remarks
SchemaName
The schema name of the Snowflake table reference.
public string SchemaName { get; set; }
Property Value
Remarks
SecretArn
The secret ARN of the Snowflake table reference.
public string SecretArn { get; set; }
Property Value
Remarks
TableName
The name of the Snowflake table.
public string TableName { get; set; }
Property Value
Remarks
TableSchema
The schema of the Snowflake table.
public object TableSchema { get; set; }