Show / Hide Table of Contents

Class CfnConfiguredTable.SnowflakeTableReferenceProperty

A reference to a table within Snowflake.

Inheritance
object
CfnConfiguredTable.SnowflakeTableReferenceProperty
Implements
CfnConfiguredTable.ISnowflakeTableReferenceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
                     } }
                 }
             };

Properties

AccountIdentifier

The account identifier for the Snowflake table reference.

public string AccountIdentifier { get; set; }
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.

public string DatabaseName { get; set; }
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.

public string SchemaName { get; set; }
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.

public string SecretArn { get; set; }
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.

public string TableName { get; set; }
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.

public object TableSchema { get; set; }
Property Value

object

Remarks

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

Implements

CfnConfiguredTable.ISnowflakeTableReferenceProperty
Back to top Generated by DocFX