1. Registry
  2. Packages
  3. Snowflake Provider
  4. API Docs
  5. IcebergTableFromAwsGlue
Viewing docs for Snowflake v2.19.0
published on Friday, Jul 31, 2026 by Pulumi
snowflake logo
Viewing docs for Snowflake v2.19.0
published on Friday, Jul 31, 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.

    Note Due to Snowflake limitations, external changes to the external cloud storage type is not detected.

    Resource used to manage an Iceberg table whose metadata is managed by an AWS Glue catalog. For more information, check the official documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    // Basic - only required fields
    const basic = new snowflake.IcebergTableFromAwsGlue("basic", {
        database: "DATABASE",
        schema: "SCHEMA",
        name: "TABLE",
        catalogTableName: "my_catalog_table",
    });
    // Complete - all fields set
    const complete = new snowflake.IcebergTableFromAwsGlue("complete", {
        database: "DATABASE",
        schema: "SCHEMA",
        name: "TABLE",
        externalVolume: "EXTERNAL_VOLUME",
        catalog: "CATALOG",
        catalogTableName: "my_catalog_table",
        catalogNamespace: "my_namespace",
        replaceInvalidCharacters: true,
        autoRefresh: "true",
        comment: "COMMENT",
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    # Basic - only required fields
    basic = snowflake.IcebergTableFromAwsGlue("basic",
        database="DATABASE",
        schema="SCHEMA",
        name="TABLE",
        catalog_table_name="my_catalog_table")
    # Complete - all fields set
    complete = snowflake.IcebergTableFromAwsGlue("complete",
        database="DATABASE",
        schema="SCHEMA",
        name="TABLE",
        external_volume="EXTERNAL_VOLUME",
        catalog="CATALOG",
        catalog_table_name="my_catalog_table",
        catalog_namespace="my_namespace",
        replace_invalid_characters=True,
        auto_refresh="true",
        comment="COMMENT")
    
    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 - only required fields
    		_, err := snowflake.NewIcebergTableFromAwsGlue(ctx, "basic", &snowflake.IcebergTableFromAwsGlueArgs{
    			Database:         pulumi.String("DATABASE"),
    			Schema:           pulumi.String("SCHEMA"),
    			Name:             pulumi.String("TABLE"),
    			CatalogTableName: pulumi.String("my_catalog_table"),
    		})
    		if err != nil {
    			return err
    		}
    		// Complete - all fields set
    		_, err = snowflake.NewIcebergTableFromAwsGlue(ctx, "complete", &snowflake.IcebergTableFromAwsGlueArgs{
    			Database:                 pulumi.String("DATABASE"),
    			Schema:                   pulumi.String("SCHEMA"),
    			Name:                     pulumi.String("TABLE"),
    			ExternalVolume:           pulumi.String("EXTERNAL_VOLUME"),
    			Catalog:                  pulumi.String("CATALOG"),
    			CatalogTableName:         pulumi.String("my_catalog_table"),
    			CatalogNamespace:         pulumi.String("my_namespace"),
    			ReplaceInvalidCharacters: pulumi.Bool(true),
    			AutoRefresh:              pulumi.String("true"),
    			Comment:                  pulumi.String("COMMENT"),
    		})
    		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 - only required fields
        var basic = new Snowflake.IcebergTableFromAwsGlue("basic", new()
        {
            Database = "DATABASE",
            Schema = "SCHEMA",
            Name = "TABLE",
            CatalogTableName = "my_catalog_table",
        });
    
        // Complete - all fields set
        var complete = new Snowflake.IcebergTableFromAwsGlue("complete", new()
        {
            Database = "DATABASE",
            Schema = "SCHEMA",
            Name = "TABLE",
            ExternalVolume = "EXTERNAL_VOLUME",
            Catalog = "CATALOG",
            CatalogTableName = "my_catalog_table",
            CatalogNamespace = "my_namespace",
            ReplaceInvalidCharacters = true,
            AutoRefresh = "true",
            Comment = "COMMENT",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.IcebergTableFromAwsGlue;
    import com.pulumi.snowflake.IcebergTableFromAwsGlueArgs;
    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 - only required fields
            var basic = new IcebergTableFromAwsGlue("basic", IcebergTableFromAwsGlueArgs.builder()
                .database("DATABASE")
                .schema("SCHEMA")
                .name("TABLE")
                .catalogTableName("my_catalog_table")
                .build());
    
            // Complete - all fields set
            var complete = new IcebergTableFromAwsGlue("complete", IcebergTableFromAwsGlueArgs.builder()
                .database("DATABASE")
                .schema("SCHEMA")
                .name("TABLE")
                .externalVolume("EXTERNAL_VOLUME")
                .catalog("CATALOG")
                .catalogTableName("my_catalog_table")
                .catalogNamespace("my_namespace")
                .replaceInvalidCharacters(true)
                .autoRefresh("true")
                .comment("COMMENT")
                .build());
    
        }
    }
    
    resources:
      # Basic - only required fields
      basic:
        type: snowflake:IcebergTableFromAwsGlue
        properties:
          database: DATABASE
          schema: SCHEMA
          name: TABLE
          catalogTableName: my_catalog_table
      # Complete - all fields set
      complete:
        type: snowflake:IcebergTableFromAwsGlue
        properties:
          database: DATABASE
          schema: SCHEMA
          name: TABLE
          externalVolume: EXTERNAL_VOLUME
          catalog: CATALOG
          catalogTableName: my_catalog_table
          catalogNamespace: my_namespace
          replaceInvalidCharacters: true
          autoRefresh: 'true'
          comment: COMMENT
    
    pulumi {
      required_providers {
        snowflake = {
          source = "pulumi/snowflake"
        }
      }
    }
    
    # Basic - only required fields
    resource "snowflake_icebergtablefromawsglue" "basic" {
      database           = "DATABASE"
      schema             = "SCHEMA"
      name               = "TABLE"
      catalog_table_name = "my_catalog_table"
    }
    # Complete - all fields set
    resource "snowflake_icebergtablefromawsglue" "complete" {
      database                   = "DATABASE"
      schema                     = "SCHEMA"
      name                       = "TABLE"
      external_volume            = "EXTERNAL_VOLUME"
      catalog                    = "CATALOG"
      catalog_table_name         = "my_catalog_table"
      catalog_namespace          = "my_namespace"
      replace_invalid_characters = true
      auto_refresh               = "true"
      comment                    = "COMMENT"
    }
    

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

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

    Create IcebergTableFromAwsGlue Resource

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

    Constructor syntax

    new IcebergTableFromAwsGlue(name: string, args: IcebergTableFromAwsGlueArgs, opts?: CustomResourceOptions);
    @overload
    def IcebergTableFromAwsGlue(resource_name: str,
                                args: IcebergTableFromAwsGlueArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def IcebergTableFromAwsGlue(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                catalog_table_name: Optional[str] = None,
                                database: Optional[str] = None,
                                schema: Optional[str] = None,
                                auto_refresh: Optional[str] = None,
                                catalog: Optional[str] = None,
                                catalog_namespace: Optional[str] = None,
                                comment: Optional[str] = None,
                                external_volume: Optional[str] = None,
                                name: Optional[str] = None,
                                replace_invalid_characters: Optional[bool] = None)
    func NewIcebergTableFromAwsGlue(ctx *Context, name string, args IcebergTableFromAwsGlueArgs, opts ...ResourceOption) (*IcebergTableFromAwsGlue, error)
    public IcebergTableFromAwsGlue(string name, IcebergTableFromAwsGlueArgs args, CustomResourceOptions? opts = null)
    public IcebergTableFromAwsGlue(String name, IcebergTableFromAwsGlueArgs args)
    public IcebergTableFromAwsGlue(String name, IcebergTableFromAwsGlueArgs args, CustomResourceOptions options)
    
    type: snowflake:IcebergTableFromAwsGlue
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "snowflake_iceberg_table_from_aws_glue" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args IcebergTableFromAwsGlueArgs
    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 IcebergTableFromAwsGlueArgs
    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 IcebergTableFromAwsGlueArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IcebergTableFromAwsGlueArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IcebergTableFromAwsGlueArgs
    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 icebergTableFromAwsGlueResource = new Snowflake.IcebergTableFromAwsGlue("icebergTableFromAwsGlueResource", new()
    {
        CatalogTableName = "string",
        Database = "string",
        Schema = "string",
        AutoRefresh = "string",
        Catalog = "string",
        CatalogNamespace = "string",
        Comment = "string",
        ExternalVolume = "string",
        Name = "string",
        ReplaceInvalidCharacters = false,
    });
    
    example, err := snowflake.NewIcebergTableFromAwsGlue(ctx, "icebergTableFromAwsGlueResource", &snowflake.IcebergTableFromAwsGlueArgs{
    	CatalogTableName:         pulumi.String("string"),
    	Database:                 pulumi.String("string"),
    	Schema:                   pulumi.String("string"),
    	AutoRefresh:              pulumi.String("string"),
    	Catalog:                  pulumi.String("string"),
    	CatalogNamespace:         pulumi.String("string"),
    	Comment:                  pulumi.String("string"),
    	ExternalVolume:           pulumi.String("string"),
    	Name:                     pulumi.String("string"),
    	ReplaceInvalidCharacters: pulumi.Bool(false),
    })
    
    resource "snowflake_iceberg_table_from_aws_glue" "icebergTableFromAwsGlueResource" {
      lifecycle {
        create_before_destroy = true
      }
      catalog_table_name         = "string"
      database                   = "string"
      schema                     = "string"
      auto_refresh               = "string"
      catalog                    = "string"
      catalog_namespace          = "string"
      comment                    = "string"
      external_volume            = "string"
      name                       = "string"
      replace_invalid_characters = false
    }
    
    var icebergTableFromAwsGlueResource = new IcebergTableFromAwsGlue("icebergTableFromAwsGlueResource", IcebergTableFromAwsGlueArgs.builder()
        .catalogTableName("string")
        .database("string")
        .schema("string")
        .autoRefresh("string")
        .catalog("string")
        .catalogNamespace("string")
        .comment("string")
        .externalVolume("string")
        .name("string")
        .replaceInvalidCharacters(false)
        .build());
    
    iceberg_table_from_aws_glue_resource = snowflake.IcebergTableFromAwsGlue("icebergTableFromAwsGlueResource",
        catalog_table_name="string",
        database="string",
        schema="string",
        auto_refresh="string",
        catalog="string",
        catalog_namespace="string",
        comment="string",
        external_volume="string",
        name="string",
        replace_invalid_characters=False)
    
    const icebergTableFromAwsGlueResource = new snowflake.IcebergTableFromAwsGlue("icebergTableFromAwsGlueResource", {
        catalogTableName: "string",
        database: "string",
        schema: "string",
        autoRefresh: "string",
        catalog: "string",
        catalogNamespace: "string",
        comment: "string",
        externalVolume: "string",
        name: "string",
        replaceInvalidCharacters: false,
    });
    
    type: snowflake:IcebergTableFromAwsGlue
    properties:
        autoRefresh: string
        catalog: string
        catalogNamespace: string
        catalogTableName: string
        comment: string
        database: string
        externalVolume: string
        name: string
        replaceInvalidCharacters: false
        schema: string
    

    IcebergTableFromAwsGlue 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 IcebergTableFromAwsGlue resource accepts the following input properties:

    CatalogTableName string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    Database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    AutoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    CatalogNamespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    Comment string
    Specifies a comment for the Iceberg table.
    ExternalVolume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    Name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ReplaceInvalidCharacters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    CatalogTableName string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    Database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    AutoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    CatalogNamespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    Comment string
    Specifies a comment for the Iceberg table.
    ExternalVolume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    Name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ReplaceInvalidCharacters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    catalog_table_name string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    auto_refresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalog_namespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    comment string
    Specifies a comment for the Iceberg table.
    external_volume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    replace_invalid_characters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    catalogTableName String
    Specifies the name of the table as it appears in the AWS Glue catalog.
    database String
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    autoRefresh String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog String
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalogNamespace String
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    comment String
    Specifies a comment for the Iceberg table.
    externalVolume String
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    name String
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    replaceInvalidCharacters Boolean
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    catalogTableName string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    autoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalogNamespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    comment string
    Specifies a comment for the Iceberg table.
    externalVolume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    replaceInvalidCharacters boolean
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    catalog_table_name str
    Specifies the name of the table as it appears in the AWS Glue catalog.
    database str
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema str
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    auto_refresh str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog str
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalog_namespace str
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    comment str
    Specifies a comment for the Iceberg table.
    external_volume str
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    name str
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    replace_invalid_characters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    catalogTableName String
    Specifies the name of the table as it appears in the AWS Glue catalog.
    database String
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    autoRefresh String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog String
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalogNamespace String
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    comment String
    Specifies a comment for the Iceberg table.
    externalVolume String
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    name String
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    replaceInvalidCharacters Boolean
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.

    Outputs

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

    DescribeOutputs List<IcebergTableFromAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    Parameters List<IcebergTableFromAwsGlueParameter>
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    ShowOutputs List<IcebergTableFromAwsGlueShowOutput>
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    DescribeOutputs []IcebergTableFromAwsGlueDescribeOutput
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    Parameters []IcebergTableFromAwsGlueParameter
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    ShowOutputs []IcebergTableFromAwsGlueShowOutput
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    describe_outputs list(object)
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    parameters list(object)
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    show_outputs list(object)
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    describeOutputs List<IcebergTableFromAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    parameters List<IcebergTableFromAwsGlueParameter>
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    showOutputs List<IcebergTableFromAwsGlueShowOutput>
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    describeOutputs IcebergTableFromAwsGlueDescribeOutput[]
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    parameters IcebergTableFromAwsGlueParameter[]
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    showOutputs IcebergTableFromAwsGlueShowOutput[]
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    describe_outputs Sequence[IcebergTableFromAwsGlueDescribeOutput]
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    parameters Sequence[IcebergTableFromAwsGlueParameter]
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    show_outputs Sequence[IcebergTableFromAwsGlueShowOutput]
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    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.
    parameters List<Property Map>
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    showOutputs List<Property Map>
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.

    Look up Existing IcebergTableFromAwsGlue Resource

    Get an existing IcebergTableFromAwsGlue 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?: IcebergTableFromAwsGlueState, opts?: CustomResourceOptions): IcebergTableFromAwsGlue
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_refresh: Optional[str] = None,
            catalog: Optional[str] = None,
            catalog_namespace: Optional[str] = None,
            catalog_table_name: Optional[str] = None,
            comment: Optional[str] = None,
            database: Optional[str] = None,
            describe_outputs: Optional[Sequence[IcebergTableFromAwsGlueDescribeOutputArgs]] = None,
            external_volume: Optional[str] = None,
            fully_qualified_name: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Sequence[IcebergTableFromAwsGlueParameterArgs]] = None,
            replace_invalid_characters: Optional[bool] = None,
            schema: Optional[str] = None,
            show_outputs: Optional[Sequence[IcebergTableFromAwsGlueShowOutputArgs]] = None) -> IcebergTableFromAwsGlue
    func GetIcebergTableFromAwsGlue(ctx *Context, name string, id IDInput, state *IcebergTableFromAwsGlueState, opts ...ResourceOption) (*IcebergTableFromAwsGlue, error)
    public static IcebergTableFromAwsGlue Get(string name, Input<string> id, IcebergTableFromAwsGlueState? state, CustomResourceOptions? opts = null)
    public static IcebergTableFromAwsGlue get(String name, Output<String> id, IcebergTableFromAwsGlueState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:IcebergTableFromAwsGlue    get:      id: ${id}
    import {
      to = snowflake_iceberg_table_from_aws_glue.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:
    AutoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    CatalogNamespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    CatalogTableName string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    Comment string
    Specifies a comment for the Iceberg table.
    Database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs List<IcebergTableFromAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    ExternalVolume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Parameters List<IcebergTableFromAwsGlueParameter>
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    ReplaceInvalidCharacters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    Schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs List<IcebergTableFromAwsGlueShowOutput>
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    AutoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    Catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    CatalogNamespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    CatalogTableName string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    Comment string
    Specifies a comment for the Iceberg table.
    Database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs []IcebergTableFromAwsGlueDescribeOutputArgs
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    ExternalVolume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Parameters []IcebergTableFromAwsGlueParameterArgs
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    ReplaceInvalidCharacters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    Schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ShowOutputs []IcebergTableFromAwsGlueShowOutputArgs
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    auto_refresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalog_namespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    catalog_table_name string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    comment string
    Specifies a comment for the Iceberg table.
    database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs list(object)
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    external_volume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    fully_qualified_name string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters list(object)
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    replace_invalid_characters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs list(object)
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    autoRefresh String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog String
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalogNamespace String
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    catalogTableName String
    Specifies the name of the table as it appears in the AWS Glue catalog.
    comment String
    Specifies a comment for the Iceberg table.
    database String
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<IcebergTableFromAwsGlueDescribeOutput>
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    externalVolume String
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters List<IcebergTableFromAwsGlueParameter>
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    replaceInvalidCharacters Boolean
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    schema String
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<IcebergTableFromAwsGlueShowOutput>
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    autoRefresh string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog string
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalogNamespace string
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    catalogTableName string
    Specifies the name of the table as it appears in the AWS Glue catalog.
    comment string
    Specifies a comment for the Iceberg table.
    database string
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs IcebergTableFromAwsGlueDescribeOutput[]
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    externalVolume string
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    name string
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters IcebergTableFromAwsGlueParameter[]
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    replaceInvalidCharacters boolean
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    schema string
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs IcebergTableFromAwsGlueShowOutput[]
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    auto_refresh str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog str
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalog_namespace str
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    catalog_table_name str
    Specifies the name of the table as it appears in the AWS Glue catalog.
    comment str
    Specifies a comment for the Iceberg table.
    database str
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs Sequence[IcebergTableFromAwsGlueDescribeOutputArgs]
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    external_volume str
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    name str
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters Sequence[IcebergTableFromAwsGlueParameterArgs]
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    replace_invalid_characters bool
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    schema str
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    show_outputs Sequence[IcebergTableFromAwsGlueShowOutputArgs]
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.
    autoRefresh String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether Snowflake should periodically refresh the Iceberg table metadata from the AWS Glue catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    catalog String
    Specifies the identifier for the catalog integration to use for the Iceberg table. If not specified, the account-level default is used.
    catalogNamespace String
    Specifies the namespace (or database) in the AWS Glue catalog that the table belongs to. If not specified, the catalog integration's default namespace is used.
    catalogTableName String
    Specifies the name of the table as it appears in the AWS Glue catalog.
    comment String
    Specifies a comment for the Iceberg table.
    database String
    The database in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE ICEBERG TABLE for the given Iceberg table.
    externalVolume String
    Specifies the identifier for the external volume where the Iceberg table stores its metadata files and data in Parquet format. If not specified, the account-level default is used.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    name String
    Specifies the identifier for the Iceberg table; must be unique for the schema in which the Iceberg table is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    parameters List<Property Map>
    Outputs the result of SHOW PARAMETERS IN ICEBERG TABLE for the given Iceberg table.
    replaceInvalidCharacters Boolean
    Specifies whether to replace invalid UTF-8 characters with the Unicode replacement character () in query results for an Iceberg table. For more information, check REPLACEINVALIDCHARACTERS docs.
    schema String
    The schema in which to create the Iceberg table. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    showOutputs List<Property Map>
    Outputs the result of SHOW ICEBERG TABLES for the given Iceberg table. Note that this value will be only recomputed whenever values of fields affecting the output change.

    Supporting Types

    IcebergTableFromAwsGlueDescribeOutput, IcebergTableFromAwsGlueDescribeOutputArgs

    Check string
    Comment string
    Default string
    Expression string
    IsNullable bool
    Kind string
    Name string
    NameMapping string
    PolicyName string
    PrimaryKey bool
    PrivacyDomain string
    SourceIcebergType string
    Type string
    UniqueKey bool
    WriteDefault string
    Check string
    Comment string
    Default string
    Expression string
    IsNullable bool
    Kind string
    Name string
    NameMapping string
    PolicyName string
    PrimaryKey bool
    PrivacyDomain string
    SourceIcebergType string
    Type string
    UniqueKey bool
    WriteDefault string
    check string
    comment string
    default string
    expression string
    is_nullable bool
    kind string
    name string
    name_mapping string
    policy_name string
    primary_key bool
    privacy_domain string
    source_iceberg_type string
    type string
    unique_key bool
    write_default string
    check String
    comment String
    default_ String
    expression String
    isNullable Boolean
    kind String
    name String
    nameMapping String
    policyName String
    primaryKey Boolean
    privacyDomain String
    sourceIcebergType String
    type String
    uniqueKey Boolean
    writeDefault String
    check string
    comment string
    default string
    expression string
    isNullable boolean
    kind string
    name string
    nameMapping string
    policyName string
    primaryKey boolean
    privacyDomain string
    sourceIcebergType string
    type string
    uniqueKey boolean
    writeDefault string
    check String
    comment String
    default String
    expression String
    isNullable Boolean
    kind String
    name String
    nameMapping String
    policyName String
    primaryKey Boolean
    privacyDomain String
    sourceIcebergType String
    type String
    uniqueKey Boolean
    writeDefault String

    IcebergTableFromAwsGlueParameter, IcebergTableFromAwsGlueParameterArgs

    IcebergTableFromAwsGlueParameterCatalog, IcebergTableFromAwsGlueParameterCatalogArgs

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    IcebergTableFromAwsGlueParameterExternalVolume, IcebergTableFromAwsGlueParameterExternalVolumeArgs

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    IcebergTableFromAwsGlueParameterReplaceInvalidCharacter, IcebergTableFromAwsGlueParameterReplaceInvalidCharacterArgs

    Default string
    Description string
    Key string
    Level string
    Value string
    Default string
    Description string
    Key string
    Level string
    Value string
    default string
    description string
    key string
    level string
    value string
    default_ String
    description String
    key String
    level String
    value String
    default string
    description string
    key string
    level string
    value string
    default String
    description String
    key String
    level String
    value String

    IcebergTableFromAwsGlueShowOutput, IcebergTableFromAwsGlueShowOutputArgs

    IcebergTableFromAwsGlueShowOutputAutoRefreshStatus, IcebergTableFromAwsGlueShowOutputAutoRefreshStatusArgs

    IcebergTableFromAwsGlueShowOutputPartitionSpec, IcebergTableFromAwsGlueShowOutputPartitionSpecArgs

    IcebergTableFromAwsGlueShowOutputPartitionSpecField, IcebergTableFromAwsGlueShowOutputPartitionSpecFieldArgs

    FieldId int
    Name string
    SourceId int
    Transform string
    FieldId int
    Name string
    SourceId int
    Transform string
    field_id number
    name string
    source_id number
    transform string
    fieldId Integer
    name String
    sourceId Integer
    transform String
    fieldId number
    name string
    sourceId number
    transform string
    fieldId Number
    name String
    sourceId Number
    transform String

    Import

    $ pulumi import snowflake:index/icebergTableFromAwsGlue:IcebergTableFromAwsGlue example '"<database_name>"."<schema_name>"."<table_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.19.0
    published on Friday, Jul 31, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial