Show / Hide Table of Contents

Interface CfnConfiguredTable.ISnowflakeTableReferenceProperty

A reference to a table within Snowflake.

Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConfiguredTable.ISnowflakeTableReferenceProperty
Syntax (vb)
Public Interface CfnConfiguredTable.ISnowflakeTableReferenceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html

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

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.

Properties

AccountIdentifier

The account identifier for the Snowflake table reference.

string AccountIdentifier { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-accountidentifier

DatabaseName

The name of the database the Snowflake table belongs to.

string DatabaseName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-databasename

SchemaName

The schema name of the Snowflake table reference.

string SchemaName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-schemaname

SecretArn

The secret ARN of the Snowflake table reference.

string SecretArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-secretarn

TableName

The name of the Snowflake table.

string TableName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-tablename

TableSchema

The schema of the Snowflake table.

object TableSchema { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html#cfn-cleanrooms-configuredtable-snowflaketablereference-tableschema

Back to top Generated by DocFX