interface FederatedDatabaseProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnDatabasePropsMixin.FederatedDatabaseProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnDatabasePropsMixin_FederatedDatabaseProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnDatabasePropsMixin.FederatedDatabaseProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnDatabasePropsMixin.FederatedDatabaseProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const federatedDatabaseProperty: glue.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