Properties
| Name | Type | Description |
|---|---|---|
| glue_aws_role_arn | string | ARN for AWS role to assume |
| glue_catalog_id | string | Glue catalog id |
| glue_region | string | AWS region of the Glue catalog. Must be specified if the Snowflake account is not hosted on AWS. |
| catalog_namespace | string | default AWS Glue catalog namespace for all Iceberg table that use this catalog integration |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Glue",
"title": "Glue",
"type": "object",
"allOf": [
{
"$ref": "#/components/schemas/Catalog"
}
],
"properties": {
"glue_aws_role_arn": {
"type": "string",
"description": "ARN for AWS role to assume",
"example": "example_value"
},
"glue_catalog_id": {
"type": "string",
"description": "Glue catalog id",
"example": "500123"
},
"glue_region": {
"type": "string",
"description": "AWS region of the Glue catalog. Must be specified if the Snowflake account is not hosted on AWS.",
"example": "example_value"
},
"catalog_namespace": {
"type": "string",
"description": "default AWS Glue catalog namespace for all Iceberg table that use this catalog integration",
"example": "example_value"
}
},
"required": [
"glue_aws_role_arn",
"glue_catalog_id",
"catalog_namespace"
]
}