interface DatabaseIdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDatabasePropsMixin.DatabaseIdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDatabasePropsMixin_DatabaseIdentifierProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDatabasePropsMixin.DatabaseIdentifierProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDatabasePropsMixin.DatabaseIdentifierProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDatabasePropsMixin » DatabaseIdentifierProperty |
A structure that describes a target database for resource linking.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const databaseIdentifierProperty: glue_mixins.CfnDatabasePropsMixin.DatabaseIdentifierProperty = {
catalogId: 'catalogId',
databaseName: 'databaseName',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The ID of the Data Catalog in which the database resides. |
| database | string | The name of the catalog database. |
| region? | string | The Region of the database. |
catalogId?
Type:
string
(optional)
The ID of the Data Catalog in which the database resides.
databaseName?
Type:
string
(optional)
The name of the catalog database.
region?
Type:
string
(optional)
The Region of the database.

.NET
Go
Java
Python
TypeScript