Show / Hide Table of Contents

Class CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty

A reference to a table within Snowflake.

Inheritance
object
CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty
Implements
CfnConfiguredTablePropsMixin.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.Mixins.Preview.AWS.CleanRooms.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty : CfnConfiguredTablePropsMixin.ISnowflakeTableReferenceProperty
Syntax (vb)
Public Class CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty Implements CfnConfiguredTablePropsMixin.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.Mixins.Preview.AWS.CleanRooms.Mixins;

             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.Mixins.Preview.AWS.CleanRooms.Mixins;

             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

Type union: either IResolvable or CfnConfiguredTablePropsMixin.ISnowflakeTableSchemaProperty

Implements

CfnConfiguredTablePropsMixin.ISnowflakeTableReferenceProperty
Back to top Generated by DocFX