Snowflake · Schema
NotificationQueueAwsSnsOutbound
Data LakesData SharingData WarehousingDatabaseSQL
Properties
| Name | Type | Description |
|---|---|---|
| aws_sns_topic_arn | string | Amazon Resource Name (ARN) of the Amazon SNS (SNS) topic to which notifications are pushed. |
| aws_sns_role_arn | string | ARN of the IAM role that has permissions to publish messages to the SNS topic. |
| sf_aws_iam_user_arn | string | ARN for the Snowflake IAM user created for your account. |
| sf_aws_external_id | string | External ID for the Snowflake IAM user created for your account. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NotificationQueueAwsSnsOutbound",
"title": "NotificationQueueAwsSnsOutbound",
"allOf": [
{
"$ref": "#/components/schemas/NotificationHook"
}
],
"properties": {
"aws_sns_topic_arn": {
"type": "string",
"description": "Amazon Resource Name (ARN) of the Amazon SNS (SNS) topic to which notifications are pushed.",
"example": "example_value"
},
"aws_sns_role_arn": {
"type": "string",
"description": "ARN of the IAM role that has permissions to publish messages to the SNS topic.",
"example": "example_value"
},
"sf_aws_iam_user_arn": {
"type": "string",
"readOnly": true,
"description": "ARN for the Snowflake IAM user created for your account.",
"example": "example_value"
},
"sf_aws_external_id": {
"type": "string",
"readOnly": true,
"description": "External ID for the Snowflake IAM user created for your account.",
"example": "500123"
}
}
}