interface FederatedCatalogProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnCatalog.FederatedCatalogProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCatalog_FederatedCatalogProperty |
Java | software.amazon.awscdk.services.glue.CfnCatalog.FederatedCatalogProperty |
Python | aws_cdk.aws_glue.CfnCatalog.FederatedCatalogProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnCatalog » FederatedCatalogProperty |
A FederatedCatalog structure that references an entity outside the 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-lib';
const federatedCatalogProperty: glue.CfnCatalog.FederatedCatalogProperty = {
connectionName: 'connectionName',
identifier: 'identifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The name of the connection to an external data source. |
| identifier? | string | A unique identifier for the federated catalog. |
connectionName?
Type:
string
(optional)
The name of the connection to an external data source.
identifier?
Type:
string
(optional)
A unique identifier for the federated catalog.

.NET
Go
Java
Python
TypeScript