From 6e6bbb377945287eeebb3328b745c170f2f371c3 Mon Sep 17 00:00:00 2001 From: ssemyonov Date: Tue, 8 Feb 2022 14:00:59 +0000 Subject: [PATCH 1/2] Introduce name property for SNS channel binding object --- sns/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sns/README.md b/sns/README.md index 7f078bbd..08813041 100644 --- a/sns/README.md +++ b/sns/README.md @@ -29,6 +29,7 @@ SNS supports many optional properties. To mark a channel as SNS, but use default |Field Name | Type | Description| |---|:---:|---| +| `name` | string | **Required.** The name of the topic. Can be different from the channel name to allow flexibility around AWS resource naming limitations. When an [SNS Operation Binding Object]() references an SNS topic by name, the identifier should be the one in this field.| | `type` | [ordering](#ordering)| **Optional.** By default, we assume an unordered SNS topic. This field allows configuration of a FIFO SNS Topic. | | `policy` |[policy](#policy) | **Optional.** The security policy for the SNS Topic | | `tags` |Object | **Optional.** Key-value pairs that represent AWS tags on the topic. | From af5fa867a0a5b500828336f16d3c0630ff283487 Mon Sep 17 00:00:00 2001 From: ssemyonov Date: Tue, 8 Feb 2022 17:58:12 +0000 Subject: [PATCH 2/2] Remove confusing unnecessary statement --- sns/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sns/README.md b/sns/README.md index 08813041..edd3df37 100644 --- a/sns/README.md +++ b/sns/README.md @@ -29,7 +29,7 @@ SNS supports many optional properties. To mark a channel as SNS, but use default |Field Name | Type | Description| |---|:---:|---| -| `name` | string | **Required.** The name of the topic. Can be different from the channel name to allow flexibility around AWS resource naming limitations. When an [SNS Operation Binding Object]() references an SNS topic by name, the identifier should be the one in this field.| +| `name` | string | **Required.** The name of the topic. Can be different from the channel name to allow flexibility around AWS resource naming limitations.| | `type` | [ordering](#ordering)| **Optional.** By default, we assume an unordered SNS topic. This field allows configuration of a FIFO SNS Topic. | | `policy` |[policy](#policy) | **Optional.** The security policy for the SNS Topic | | `tags` |Object | **Optional.** Key-value pairs that represent AWS tags on the topic. |