Class CfnDatabase.DatabaseIdentifierProperty
A structure that describes a target database for resource linking.
Implements
Inherited Members
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
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
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
Remarks
DatabaseName
The name of the catalog database.
public string? DatabaseName { get; set; }
Property Value
Remarks
Region
The Region of the database.
public string? Region { get; set; }