Show / Hide Table of Contents

Class CfnTablePropsMixin.TableIdentifierProperty

A structure that describes a target table for resource linking.

Inheritance
object
CfnTablePropsMixin.TableIdentifierProperty
Implements
CfnTablePropsMixin.ITableIdentifierProperty
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.Glue.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.TableIdentifierProperty : CfnTablePropsMixin.ITableIdentifierProperty
Syntax (vb)
Public Class CfnTablePropsMixin.TableIdentifierProperty Implements CfnTablePropsMixin.ITableIdentifierProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.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.Glue.Mixins;

             var tableIdentifierProperty = new TableIdentifierProperty {
                 CatalogId = "catalogId",
                 DatabaseName = "databaseName",
                 Name = "name",
                 Region = "region"
             };

Synopsis

Constructors

TableIdentifierProperty()

A structure that describes a target table for resource linking.

Properties

CatalogId

The ID of the Data Catalog in which the table resides.

DatabaseName

The name of the catalog database that contains the target table.

Name

The name of the target table.

Region

The Region of the table.

Constructors

TableIdentifierProperty()

A structure that describes a target table for resource linking.

public TableIdentifierProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.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.Glue.Mixins;

             var tableIdentifierProperty = new TableIdentifierProperty {
                 CatalogId = "catalogId",
                 DatabaseName = "databaseName",
                 Name = "name",
                 Region = "region"
             };

Properties

CatalogId

The ID of the Data Catalog in which the table resides.

public string? CatalogId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.html#cfn-glue-table-tableidentifier-catalogid

DatabaseName

The name of the catalog database that contains the target table.

public string? DatabaseName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.html#cfn-glue-table-tableidentifier-databasename

Name

The name of the target table.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.html#cfn-glue-table-tableidentifier-name

Region

The Region of the table.

public string? Region { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.html#cfn-glue-table-tableidentifier-region

Implements

CfnTablePropsMixin.ITableIdentifierProperty
Back to top Generated by DocFX