Show / Hide Table of Contents

Class CfnDatabase.DatabaseIdentifierProperty

A structure that describes a target database for resource linking.

Inheritance
object
CfnDatabase.DatabaseIdentifierProperty
Implements
CfnDatabase.IDatabaseIdentifierProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDatabase.DatabaseIdentifierProperty : CfnDatabase.IDatabaseIdentifierProperty
Syntax (vb)
Public Class CfnDatabase.DatabaseIdentifierProperty Implements CfnDatabase.IDatabaseIdentifierProperty
Remarks

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

             var databaseIdentifierProperty = new DatabaseIdentifierProperty {
                 CatalogId = "catalogId",
                 DatabaseName = "databaseName",
                 Region = "region"
             };

Synopsis

Constructors

DatabaseIdentifierProperty()

A structure that describes a target database for resource linking.

Properties

CatalogId

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

DatabaseName

The name of the catalog database.

Region

The Region of the database.

Constructors

DatabaseIdentifierProperty()

A structure that describes a target database for resource linking.

public DatabaseIdentifierProperty()
Remarks

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

             var databaseIdentifierProperty = new DatabaseIdentifierProperty {
                 CatalogId = "catalogId",
                 DatabaseName = "databaseName",
                 Region = "region"
             };

Properties

CatalogId

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

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

string

Remarks

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

DatabaseName

The name of the catalog database.

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

string

Remarks

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

Region

The Region of the database.

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

string

Remarks

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

Implements

CfnDatabase.IDatabaseIdentifierProperty
Back to top Generated by DocFX