published on Saturday, May 9, 2026 by Pulumi
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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- Glue
Catalog stringId - 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 intSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- Glue
Catalog stringId - 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 intSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ stringrole_ arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue_
catalog_ stringid - 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_ numberseconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 StringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue
Catalog StringId - 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 IntegerSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue
Catalog stringId - 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 numberSeconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ strrole_ arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue_
catalog_ strid - 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_ intseconds - 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.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 StringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue
Catalog StringId - 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 NumberSeconds - 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:
- 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<CatalogIntegration Aws Glue Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Fully
Qualified stringName - 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<CatalogIntegration Aws Glue Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 []CatalogIntegration Aws Glue Describe Output - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Fully
Qualified stringName - 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 []CatalogIntegration Aws Glue Show Output - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 INTEGRATIONfor the given catalog integration. - fully_
qualified_ stringname - 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 INTEGRATIONSfor 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<CatalogIntegration Aws Glue Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully
Qualified StringName - 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<CatalogIntegration Aws Glue Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 CatalogIntegration Aws Glue Describe Output[] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully
Qualified stringName - 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 CatalogIntegration Aws Glue Show Output[] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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[CatalogIntegration Aws Glue Describe Output] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully_
qualified_ strname - 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[CatalogIntegration Aws Glue Show Output] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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<Property Map> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - fully
Qualified StringName - 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<Property Map> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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) -> CatalogIntegrationAwsGluefunc 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.
- 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<CatalogIntegration Aws Glue Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Glue
Aws stringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- Glue
Catalog stringId - 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 intSeconds - 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<CatalogIntegration Aws Glue Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 []CatalogIntegration Aws Glue Describe Output Args - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - Enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Glue
Aws stringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- Glue
Catalog stringId - 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 intSeconds - 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 []CatalogIntegration Aws Glue Show Output Args - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 INTEGRATIONfor the given catalog integration. - enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ stringname - Fully qualified name of the resource. For more information, see object name resolution.
- glue_
aws_ stringrole_ arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue_
catalog_ stringid - 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_ numberseconds - 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 INTEGRATIONSfor 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<CatalogIntegration Aws Glue Describe Output> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled Boolean
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 StringName - Fully qualified name of the resource. For more information, see object name resolution.
- glue
Aws StringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue
Catalog StringId - 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 IntegerSeconds - 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<CatalogIntegration Aws Glue Show Output> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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 CatalogIntegration Aws Glue Describe Output[] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled boolean
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 stringName - Fully qualified name of the resource. For more information, see object name resolution.
- glue
Aws stringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue
Catalog stringId - 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 numberSeconds - 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 CatalogIntegration Aws Glue Show Output[] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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[CatalogIntegration Aws Glue Describe Output Args] - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled bool
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- glue_
aws_ strrole_ arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue_
catalog_ strid - 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_ intseconds - 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[CatalogIntegration Aws Glue Show Output Args] - Outputs the result of
SHOW CATALOG INTEGRATIONSfor 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<Property Map> - Outputs the result of
DESCRIBE CATALOG INTEGRATIONfor the given catalog integration. - enabled Boolean
- Specifies whether the catalog integration is available for use for Iceberg tables.
trueallows users to create new Iceberg tables that reference this integration. Existing Iceberg tables that reference this integration function normally.falseprevents 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 StringName - Fully qualified name of the resource. For more information, see object name resolution.
- glue
Aws StringRole Arn - Specifies the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to assume.
- glue
Catalog StringId - 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 NumberSeconds - 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<Property Map> - Outputs the result of
SHOW CATALOG INTEGRATIONSfor the given catalog integration.
Supporting Types
CatalogIntegrationAwsGlueDescribeOutput, CatalogIntegrationAwsGlueDescribeOutputArgs
- Catalog
Namespace string - Catalog
Source string - Comment string
- Enabled bool
- Glue
Aws stringRole Arn - Glue
Catalog stringId - Glue
Region string - Id string
- Refresh
Interval intSeconds - Table
Format string
- Catalog
Namespace string - Catalog
Source string - Comment string
- Enabled bool
- Glue
Aws stringRole Arn - Glue
Catalog stringId - Glue
Region string - Id string
- Refresh
Interval intSeconds - Table
Format string
- catalog_
namespace string - catalog_
source string - comment string
- enabled bool
- glue_
aws_ stringrole_ arn - glue_
catalog_ stringid - glue_
region string - id string
- refresh_
interval_ numberseconds - table_
format string
- catalog
Namespace String - catalog
Source String - comment String
- enabled Boolean
- glue
Aws StringRole Arn - glue
Catalog StringId - glue
Region String - id String
- refresh
Interval IntegerSeconds - table
Format String
- catalog
Namespace string - catalog
Source string - comment string
- enabled boolean
- glue
Aws stringRole Arn - glue
Catalog stringId - glue
Region string - id string
- refresh
Interval numberSeconds - table
Format string
- catalog_
namespace str - catalog_
source str - comment str
- enabled bool
- glue_
aws_ strrole_ arn - glue_
catalog_ strid - glue_
region str - id str
- refresh_
interval_ intseconds - table_
format str
- catalog
Namespace String - catalog
Source String - comment String
- enabled Boolean
- glue
Aws StringRole Arn - glue
Catalog StringId - glue
Region String - id String
- refresh
Interval NumberSeconds - table
Format String
CatalogIntegrationAwsGlueShowOutput, CatalogIntegrationAwsGlueShowOutputArgs
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
snowflakeTerraform Provider.
published on Saturday, May 9, 2026 by Pulumi
