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