Titan Core
  • Overview
  • Getting Started
  • Working With Resources
  • Blueprint
  • GitHub Action
  • Resources
    • APIAuthenticationSecurityIntegration
    • APIIntegration
    • AccountParameter
    • AggregationPolicy
    • Alert
    • AuthenticationPolicy
    • AzureStorageIntegration
    • ComputePool
    • Database
    • DatabaseRole
    • DynamicTable
    • EmailNotificationIntegration
    • EventTable
    • ExternalAccessIntegration
    • ExternalStage
    • FailoverGroup
    • FutureGrant
    • GCSStorageIntegration
    • GenericSecret
    • GlueCatalogIntegration
    • Grant
    • GrantOnAll
    • HybridTable
    • ImageRepository
    • InternalStage
    • JSONFileFormat
    • JavascriptUDF
    • MaterializedView
    • NetworkPolicy
    • NetworkRule
    • OAuthSecret
    • ObjectStoreCatalogIntegration
    • PackagesPolicy
    • ParquetFileFormat
    • PasswordPolicy
    • PasswordSecret
    • Pipe
    • PythonStoredProcedure
    • PythonUDF
    • ReplicationGroup
    • ResourceMonitor
    • Role
    • RoleGrant
    • S3StorageIntegration
    • Schema
    • Sequence
    • Service
    • SessionPolicy
    • Share
    • SnowflakePartnerOAuthSecurityIntegration
    • SnowservicesOAuthSecurityIntegration
    • StageStream
    • Table
    • TableStream
    • Tag
    • Task
    • User
    • View
    • ViewStream
    • Warehouse
Powered by GitBook
On this page
  • Examples
  • Python
  • YAML
  • Fields
  1. Resources

GlueCatalogIntegration

PreviousGenericSecretNextGrant

Last updated 11 months ago

Manages the integration of AWS Glue as a catalog in Snowflake, supporting the ICEBERG table format.

Examples

Python

glue_catalog_integration = GlueCatalogIntegration(
    name="some_catalog_integration",
    table_format="ICEBERG",
    glue_aws_role_arn="arn:aws:iam::123456789012:role/SnowflakeAccess",
    glue_catalog_id="some_glue_catalog_id",
    catalog_namespace="some_namespace",
    enabled=True,
    glue_region="us-west-2",
    comment="Integration for AWS Glue with Snowflake."
)

YAML

catalog_integrations:
  - name: some_catalog_integration
    table_format: ICEBERG
    glue_aws_role_arn: arn:aws:iam::123456789012:role/SnowflakeAccess
    glue_catalog_id: some_glue_catalog_id
    catalog_namespace: some_namespace
    enabled: true
    glue_region: us-west-2
    comment: Integration for AWS Glue with Snowflake.

Fields

  • name (string, required) - The name of the catalog integration.

  • glue_aws_role_arn (string, required) - The ARN for the AWS role to assume.

  • glue_catalog_id (string, required) - The Glue catalog ID.

  • catalog_namespace (string, required) - The namespace of the catalog.

  • enabled (bool, required) - Specifies whether the catalog integration is enabled.

  • glue_region (string) - The AWS region of the Glue catalog. Defaults to None.

  • comment (string) - An optional comment describing the catalog integration.

table_format (string or , required) - The format of the table, defaults to ICEBERG.

owner (string or ) - The owner role of the catalog integration. Defaults to "ACCOUNTADMIN".

Snowflake Documentation
CatalogTableFormat
Role