Interface CfnDatabase.IDatabaseIdentifierProperty
A structure that describes a target database for resource linking.
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.AWS.Glue.dll
Syntax (csharp)
public interface IDatabaseIdentifierProperty
Syntax (vb)
Public Interface 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"
};
Synopsis
Properties
CatalogId | The ID of the Data Catalog in which the database resides. |
DatabaseName | The name of the catalog database. |
Properties
CatalogId
The ID of the Data Catalog in which the database resides.
virtual string CatalogId { get; }
Property Value
System.String
Remarks
DatabaseName
The name of the catalog database.
virtual string DatabaseName { get; }
Property Value
System.String