1. Packages
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. CatalogIntegrationAwsGlue
Viewing docs for Snowflake v2.15.0
published on Saturday, May 9, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.15.0
published on Saturday, May 9, 2026 by Pulumi

    !> Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to previewFeaturesEnabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.

    Resource used to manage AWS Glue catalog integration objects. For more information, check catalog integration documentation.

    Example Usage

    Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // basic resource
    const basic = new snowflake.CatalogIntegrationAwsGlue("basic", {
        name: "example",
        enabled: false,
        glueAwsRoleArn: "arn:aws:iam::123456789012:role/testRole",
        glueCatalogId: "123456789012",
    });
    // complete resource
    const complete = new snowflake.CatalogIntegrationAwsGlue("complete", {
        name: "example_complete",
        enabled: true,
        refreshIntervalSeconds: 60,
        comment: "Lorem ipsum",
        glueAwsRoleArn: "arn:aws:iam::123456789012:role/testRole",
        glueCatalogId: "123456789012",
        glueRegion: "us-east-1",
        catalogNamespace: "myNamespace",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # basic resource
    basic = snowflake.CatalogIntegrationAwsGlue("basic",
        name="example",
        enabled=False,
        glue_aws_role_arn="arn:aws:iam::123456789012:role/testRole",
        glue_catalog_id="123456789012")
    # complete resource
    complete = snowflake.CatalogIntegrationAwsGlue("complete",
        name="example_complete",
        enabled=True,
        refresh_interval_seconds=60,
        comment="Lorem ipsum",
        glue_aws_role_arn="arn:aws:iam::123456789012:role/testRole",
        glue_catalog_id="123456789012",
        glue_region="us-east-1",
        catalog_namespace="myNamespace")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// basic resource
    		_, err := snowflake.NewCatalogIntegrationAwsGlue(ctx, "basic", &snowflake.CatalogIntegrationAwsGlueArgs{
    			Name:           pulumi.String("example"),
    			Enabled:        pulumi.Bool(false),
    			GlueAwsRoleArn: pulumi.String("arn:aws:iam::123456789012:role/testRole"),
    			GlueCatalogId:  pulumi.String("123456789012"),
    		})
    		if err != nil {
    			return err
    		}
    		// complete resource
    		_, err = snowflake.NewCatalogIntegrationAwsGlue(ctx, "complete", &snowflake.CatalogIntegrationAwsGlueArgs{
    			Name:                   pulumi.String("example_complete"),
    			Enabled:                pulumi.Bool(true),
    			RefreshIntervalSeconds: pulumi.Int(60),
    			Comment:                pulumi.String("Lorem ipsum"),
    			GlueAwsRoleArn:         pulumi.String("arn:aws:iam::123456789012:role/testRole"),
    			GlueCatalogId:          pulumi.String("123456789012"),
    			GlueRegion:             pulumi.String("us-east-1"),
    			CatalogNamespace:       pulumi.String("myNamespace"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        // basic resource
        var basic = new Snowflake.CatalogIntegrationAwsGlue("basic", new()
        {
            Name = "example",
            Enabled = false,
            GlueAwsRoleArn = "arn:aws:iam::123456789012:role/testRole",
            GlueCatalogId = "123456789012",
        });
    
        // complete resource
        var complete = new Snowflake.CatalogIntegrationAwsGlue("complete", new()
        {
            Name = "example_complete",
            Enabled = true,
            RefreshIntervalSeconds = 60,
            Comment = "Lorem ipsum",
            GlueAwsRoleArn = "arn:aws:iam::123456789012:role/testRole",
            GlueCatalogId = "123456789012",
            GlueRegion = "us-east-1",
            CatalogNamespace = "myNamespace",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.CatalogIntegrationAwsGlue;
    import com.pulumi.snowflake.CatalogIntegrationAwsGlueArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // basic resource
            var basic = new CatalogIntegrationAwsGlue("basic", CatalogIntegrationAwsGlueArgs.builder()
                .name("example")
                .enabled(false)
                .glueAwsRoleArn("arn:aws:iam::123456789012:role/testRole")
                .glueCatalogId("123456789012")
                .build());
    
            // complete resource
            var complete = new CatalogIntegrationAwsGlue("complete", CatalogIntegrationAwsGlueArgs.builder()
                .name("example_complete")
                .enabled(true)
                .refreshIntervalSeconds(60)
                .comment("Lorem ipsum")
                .glueAwsRoleArn("arn:aws:iam::123456789012:role/testRole")
                .glueCatalogId("123456789012")
                .glueRegion("us-east-1")
                .catalogNamespace("myNamespace")
                .build());
    
        }
    }
    
    resources:
      # basic resource
      basic:
        type: snowflake:CatalogIntegrationAwsGlue
        properties:
          name: example
          enabled: false
          glueAwsRoleArn: arn:aws:iam::123456789012:role/testRole
          glueCatalogId: '123456789012'
      # complete resource
      complete:
        type: snowflake:CatalogIntegrationAwsGlue
        properties:
          name: example_complete
          enabled: true
          refreshIntervalSeconds: 60
          comment: Lorem ipsum
          glueAwsRoleArn: arn:aws:iam::123456789012:role/testRole
          glueCatalogId: '123456789012'
          glueRegion: us-east-1
          catalogNamespace: myNamespace
    
    Example coming soon!
    

    Note If a field has a default value, it is shown next to the type in the schema.

    Create CatalogIntegrationAwsGlue Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CatalogIntegrationAwsGlue(name: string, args: CatalogIntegrationAwsGlueArgs, opts?: CustomResourceOptions);
    @overload
    def CatalogIntegrationAwsGlue(resource_name: str,
                                  args: CatalogIntegrationAwsGlueArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def CatalogIntegrationAwsGlue(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  enabled: Optional[bool] = None,
                                  glue_aws_role_arn: Optional[str] = None,
                                  glue_catalog_id: Optional[str] = None,
                                  catalog_namespace: Optional[str] = None,
                                  comment: Optional[str] = None,
                                  glue_region: Optional[str] = None,
                                  name: Optional[str] = None,
                                  refresh_interval_seconds: Optional[int] = None)
    func NewCatalogIntegrationAwsGlue(ctx *Context, name string, args CatalogIntegrationAwsGlueArgs, opts ...ResourceOption) (*CatalogIntegrationAwsGlue, error)
    public CatalogIntegrationAwsGlue(string name, CatalogIntegrationAwsGlueArgs args, CustomResourceOptions? opts = null)
    public CatalogIntegrationAwsGlue(String name, CatalogIntegrationAwsGlueArgs args)
    public CatalogIntegrationAwsGlue(String name, CatalogIntegrationAwsGlueArgs args, CustomResourceOptions options)
    
    type: snowflake:CatalogIntegrationAwsGlue
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_catalogintegrationawsglue" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CatalogIntegrationAwsGlueArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CatalogIntegrationAwsGlueArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CatalogIntegrationAwsGlueArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CatalogIntegrationAwsGlueArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CatalogIntegrationAwsGlueArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var catalogIntegrationAwsGlueResource = new Snowflake.CatalogIntegrationAwsGlue("catalogIntegrationAwsGlueResource", new()
    {
        Enabled = false,
        GlueAwsRoleArn = "string",
        GlueCatalogId = "string",
        CatalogNamespace = "string",
        Comment = "string",
        GlueRegion = "string",
        Name = "string",
        RefreshIntervalSeconds = 0,
    });
    
    example, err := snowflake.NewCatalogIntegrationAwsGlue(ctx, "catalogIntegrationAwsGlueResource", &snowflake.CatalogIntegrationAwsGlueArgs{
    	Enabled:                pulumi.Bool(false),
    	GlueAwsRoleArn:         pulumi.String("string"),
    	GlueCatalogId:          pulumi.String("string"),
    	CatalogNamespace:       pulumi.String("string"),
    	Comment:                pulumi.String("string"),
    	GlueRegion:             pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	RefreshIntervalSeconds: pulumi.Int(0),
    })
    
    resource "snowflake_catalogintegrationawsglue" "catalogIntegrationAwsGlueResource" {
      enabled                  = false
      glue_aws_role_arn        = "string"
      glue_catalog_id          = "string"
      catalog_namespace        = "string"
      comment                  = "string"
      glue_region              = "string"
      name                     = "string"
      refresh_interval_seconds = 0
    }
    
    var catalogIntegrationAwsGlueResource = new CatalogIntegrationAwsGlue("catalogIntegrationAwsGlueResource", CatalogIntegrationAwsGlueArgs.builder()
        .enabled(false)
        .glueAwsRoleArn("string")
        .glueCatalogId("string")
        .catalogNamespace("string")
        .comment("string")
        .glueRegion("string")
        .name("string")
        .refreshIntervalSeconds(0)
        .build());
    
    catalog_integration_aws_glue_resource = snowflake.CatalogIntegrationAwsGlue("catalogIntegrationAwsGlueResource",
        enabled=False,
        glue_aws_role_arn="string",
        glue_catalog_id="string",
        catalog_namespace="string",
        comment="string",
        glue_region="string",
        name="string",
        refresh_interval_seconds=0)
    
    const catalogIntegrationAwsGlueResource = new snowflake.CatalogIntegrationAwsGlue("catalogIntegrationAwsGlueResource", {
        enabled: false,
        glueAwsRoleArn: "string",
        glueCatalogId: "string",
        catalogNamespace: "string",
        comment: "string",
        glueRegion: "string",
        name: "string",
        refreshIntervalSeconds: 0,
    });
    
    type: snowflake:CatalogIntegrationAwsGlue
    properties:
        catalogNamespace: string
        comment: string
        enabled: false
        glueAwsRoleArn: string
        glueCatalogId: string
        glueRegion: string
        name: string
        refreshIntervalSeconds: 0
    

    CatalogIntegrationAwsGlue Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CatalogIntegrationAwsGlue resource accepts the following input properties:

    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    GlueAwsRoleArn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    GlueCatalogId string
    Specifies the ID of your AWS account.
    CatalogNamespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    GlueRegion string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    GlueAwsRoleArn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    GlueCatalogId string
    Specifies the ID of your AWS account.
    CatalogNamespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    GlueRegion string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    glue_aws_role_arn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glue_catalog_id string
    Specifies the ID of your AWS account.
    catalog_namespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    glue_region string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    glueAwsRoleArn String
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glueCatalogId String
    Specifies the ID of your AWS account.
    catalogNamespace String
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    glueRegion String
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Integer
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    glueAwsRoleArn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glueCatalogId string
    Specifies the ID of your AWS account.
    catalogNamespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    glueRegion string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    glue_aws_role_arn str
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glue_catalog_id str
    Specifies the ID of your AWS account.
    catalog_namespace str
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    comment str
    (Default: ``) Specifies a comment for the catalog integration.
    glue_region str
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name str
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    glueAwsRoleArn String
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glueCatalogId String
    Specifies the ID of your AWS account.
    catalogNamespace String
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    glueRegion String
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CatalogIntegrationAwsGlue resource produces the following output properties:

    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    DescribeOutputs List<CatalogIntegrationAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs List<CatalogIntegrationAwsGlueShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    DescribeOutputs []CatalogIntegrationAwsGlueDescribeOutput
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ShowOutputs []CatalogIntegrationAwsGlueShowOutput
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalog_source string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs list(object)
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    show_outputs list(object)
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<CatalogIntegrationAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<CatalogIntegrationAwsGlueShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs CatalogIntegrationAwsGlueDescribeOutput[]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    showOutputs CatalogIntegrationAwsGlueShowOutput[]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalog_source str
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describe_outputs Sequence[CatalogIntegrationAwsGlueDescribeOutput]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    id str
    The provider-assigned unique ID for this managed resource.
    show_outputs Sequence[CatalogIntegrationAwsGlueShowOutput]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    showOutputs List<Property Map>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.

    Look up Existing CatalogIntegrationAwsGlue Resource

    Get an existing CatalogIntegrationAwsGlue resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CatalogIntegrationAwsGlueState, opts?: CustomResourceOptions): CatalogIntegrationAwsGlue
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            catalog_namespace: Optional[str] = None,
            catalog_source: Optional[str] = None,
            comment: Optional[str] = None,
            describe_outputs: Optional[Sequence[CatalogIntegrationAwsGlueDescribeOutputArgs]] = None,
            enabled: Optional[bool] = None,
            fully_qualified_name: Optional[str] = None,
            glue_aws_role_arn: Optional[str] = None,
            glue_catalog_id: Optional[str] = None,
            glue_region: Optional[str] = None,
            name: Optional[str] = None,
            refresh_interval_seconds: Optional[int] = None,
            show_outputs: Optional[Sequence[CatalogIntegrationAwsGlueShowOutputArgs]] = None) -> CatalogIntegrationAwsGlue
    func GetCatalogIntegrationAwsGlue(ctx *Context, name string, id IDInput, state *CatalogIntegrationAwsGlueState, opts ...ResourceOption) (*CatalogIntegrationAwsGlue, error)
    public static CatalogIntegrationAwsGlue Get(string name, Input<string> id, CatalogIntegrationAwsGlueState? state, CustomResourceOptions? opts = null)
    public static CatalogIntegrationAwsGlue get(String name, Output<String> id, CatalogIntegrationAwsGlueState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:CatalogIntegrationAwsGlue    get:      id: ${id}
    import {
      to = snowflake_catalogintegrationawsglue.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CatalogNamespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    DescribeOutputs List<CatalogIntegrationAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    GlueAwsRoleArn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    GlueCatalogId string
    Specifies the ID of your AWS account.
    GlueRegion string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    ShowOutputs List<CatalogIntegrationAwsGlueShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    CatalogNamespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    CatalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    Comment string
    (Default: ``) Specifies a comment for the catalog integration.
    DescribeOutputs []CatalogIntegrationAwsGlueDescribeOutputArgs
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    Enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    GlueAwsRoleArn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    GlueCatalogId string
    Specifies the ID of your AWS account.
    GlueRegion string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    Name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    RefreshIntervalSeconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    ShowOutputs []CatalogIntegrationAwsGlueShowOutputArgs
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalog_namespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    catalog_source string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    describe_outputs list(object)
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    glue_aws_role_arn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glue_catalog_id string
    Specifies the ID of your AWS account.
    glue_region string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    show_outputs list(object)
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogNamespace String
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    describeOutputs List<CatalogIntegrationAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    glueAwsRoleArn String
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glueCatalogId String
    Specifies the ID of your AWS account.
    glueRegion String
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Integer
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    showOutputs List<CatalogIntegrationAwsGlueShowOutput>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogNamespace string
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    catalogSource string
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment string
    (Default: ``) Specifies a comment for the catalog integration.
    describeOutputs CatalogIntegrationAwsGlueDescribeOutput[]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    glueAwsRoleArn string
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glueCatalogId string
    Specifies the ID of your AWS account.
    glueRegion string
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name string
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    showOutputs CatalogIntegrationAwsGlueShowOutput[]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalog_namespace str
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    catalog_source str
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment str
    (Default: ``) Specifies a comment for the catalog integration.
    describe_outputs Sequence[CatalogIntegrationAwsGlueDescribeOutputArgs]
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled bool
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    glue_aws_role_arn str
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glue_catalog_id str
    Specifies the ID of your AWS account.
    glue_region str
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name str
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refresh_interval_seconds int
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    show_outputs Sequence[CatalogIntegrationAwsGlueShowOutputArgs]
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.
    catalogNamespace String
    Specifies the default AWS Glue Data Catalog namespace for all Iceberg tables that you associate with the catalog integration.
    catalogSource String
    Specifies the type of catalog source. This field is used to detect when the catalog source was changed outside of Terraform and to recreate the resource when that happens.
    comment String
    (Default: ``) Specifies a comment for the catalog integration.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE CATALOG INTEGRATION for the given catalog integration.
    enabled Boolean
    Specifies whether the catalog integration is available for use for Iceberg tables. true allows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally. false prevents users from creating new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration cannot access the catalog in the table definition.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    glueAwsRoleArn String
    Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
    glueCatalogId String
    Specifies the ID of your AWS account.
    glueRegion String
    Specifies the AWS region of your AWS Glue Data Catalog. You must specify a value for this attribute if your Snowflake account is not hosted on AWS. Otherwise, the default region is the Snowflake deployment region for the account.
    name String
    Specifies the identifier (i.e. name) of the catalog integration; must be unique in your account.
    refreshIntervalSeconds Number
    Specifies the number of seconds to wait between attempts to poll the external Iceberg catalog for metadata updates for automated refresh. For Delta-based tables, specifies the number of seconds to wait between attempts to poll your external cloud storage for new metadata.
    showOutputs List<Property Map>
    Outputs the result of SHOW CATALOG INTEGRATIONS for the given catalog integration.

    Supporting Types

    CatalogIntegrationAwsGlueDescribeOutput, CatalogIntegrationAwsGlueDescribeOutputArgs

    CatalogIntegrationAwsGlueShowOutput, CatalogIntegrationAwsGlueShowOutputArgs

    Category string
    Comment string
    CreatedOn string
    Enabled bool
    Name string
    Type string
    Category string
    Comment string
    CreatedOn string
    Enabled bool
    Name string
    Type string
    category string
    comment string
    created_on string
    enabled bool
    name string
    type string
    category String
    comment String
    createdOn String
    enabled Boolean
    name String
    type String
    category string
    comment string
    createdOn string
    enabled boolean
    name string
    type string
    category String
    comment String
    createdOn String
    enabled Boolean
    name String
    type String

    Import

    $ pulumi import snowflake:index/catalogIntegrationAwsGlue:CatalogIntegrationAwsGlue example '"<name>"'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Viewing docs for Snowflake v2.15.0
    published on Saturday, May 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.