interface FederatedDatabaseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnDatabasePropsMixin.FederatedDatabaseProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnDatabasePropsMixin_FederatedDatabaseProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnDatabasePropsMixin.FederatedDatabaseProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnDatabasePropsMixin.FederatedDatabaseProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnDatabasePropsMixin » FederatedDatabaseProperty |
A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog .
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 federatedDatabaseProperty: glue_mixins.CfnDatabasePropsMixin.FederatedDatabaseProperty = {
connectionName: 'connectionName',
identifier: 'identifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The name of the connection to the external metastore. |
| identifier? | string | A unique identifier for the federated database. |
connectionName?
Type:
string
(optional)
The name of the connection to the external metastore.
identifier?
Type:
string
(optional)
A unique identifier for the federated database.

.NET
Go
Java
Python
TypeScript