Interface IDatabaseProps
Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface IDatabaseProps
Syntax (vb)
Public Interface IDatabaseProps
Remarks
Stability: Experimental
ExampleMetadata: infused
Examples
new Database(this, "MyDatabase", new DatabaseProps {
DatabaseName = "my_database",
Description = "my_database_description"
});
Synopsis
Properties
DatabaseName | (experimental) The name of the database. |
Description | (experimental) A description of the database. |
LocationUri | (experimental) The location of the database (for example, an HDFS path). |
Properties
DatabaseName
(experimental) The name of the database.
virtual string DatabaseName { get; }
Property Value
System.String
Remarks
Default: - generated by CDK.
Stability: Experimental
Description
(experimental) A description of the database.
virtual string Description { get; }
Property Value
System.String
Remarks
Default: - no database description
Stability: Experimental
LocationUri
(experimental) The location of the database (for example, an HDFS path).
virtual string LocationUri { get; }
Property Value
System.String
Remarks
Default: undefined. This field is optional in AWS::Glue::Database DatabaseInput
Stability: Experimental