Class CfnDatabase.DatabaseIdentifierProperty
A structure that describes a target database for resource linking.
Inheritance
System.Object
CfnDatabase.DatabaseIdentifierProperty
Implements
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DatabaseIdentifierProperty : Object, CfnDatabase.IDatabaseIdentifierProperty
Syntax (vb)
Public Class DatabaseIdentifierProperty
Inherits Object
Implements CfnDatabase.IDatabaseIdentifierProperty
Remarks
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() |
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()
public DatabaseIdentifierProperty()
Properties
CatalogId
The ID of the Data Catalog in which the database resides.
public string CatalogId { get; set; }
Property Value
System.String
Remarks
DatabaseName
The name of the catalog database.
public string DatabaseName { get; set; }
Property Value
System.String
Remarks
Region
The Region of the database.
public string Region { get; set; }
Property Value
System.String