aws-sdk-sns 1.91.0 → 1.92.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0545b35eedb652ad93f497b71fffb62c7de549fd6e8e9fee86982f990e41d4a1
4
- data.tar.gz: a16679f3c13a3dddbf4a3dfae423b1f86343c8401e8e075ba610c0ffdb415f4b
3
+ metadata.gz: 4ccab4e37fe911945b19c4b8e7569dfb4634a5ca08bfdb46862d72a577fc3742
4
+ data.tar.gz: 798e83e8a8683c41e207fe8fb9664ddf8599a2e9d70d9ab5def959d9d7bb47d7
5
5
  SHA512:
6
- metadata.gz: 5e2a08ee7ce25cc4e942df60ec4701ea5768c93336b716ae1b3abaf5bb8b4a9a9e5591610f1b5b26757f2f9fcba657f5f33f82e24de23cbdc42f98e2a026bae8
7
- data.tar.gz: 4d2a3ee05d9c9bf585299b659951b58911c6c35b5ca10dbf1b44df15dc58b050b81bd7f65e1d446e4f4d8caa2fd0e705dac3f73acd1d1e59abce3fc84c980f2f
6
+ metadata.gz: 1004641d19b622a999209de7ff5c3a57b83b8468f2d24731c05f48a4bfa83223db03137399a2a2eca11f2f6cebd42df272ac98daf9ced3e1f400b7cf0b8ea17f
7
+ data.tar.gz: 9893931c635fbd128e68a8dfc8d9c2ed41ed36ef9e0b026cada995acde559d8d0ae846406e7b88ff350bdf3fd4e4a084668d9342d39d7c53bb80b93989263d2e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2024-11-22)
5
+ ------------------
6
+
7
+ * Feature - ArchivePolicy attribute added to Archive and Replay feature
8
+
4
9
  1.91.0 (2024-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -837,13 +837,8 @@ module Aws::SNS
837
837
  #
838
838
  # The following attributes apply only to [FIFO topics][4]:
839
839
  #
840
- # * `ArchivePolicy` – Adds or updates an inline policy document to
841
- # archive messages stored in the specified Amazon SNS topic.
842
- #
843
- # * `BeginningArchiveTime` – The earliest starting point at which a
844
- # message in the topic’s archive can be replayed from. This point in
845
- # time is based on the configured message retention period set by the
846
- # topic’s message archiving policy.
840
+ # * `ArchivePolicy` – The policy that sets the retention period for
841
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
847
842
  #
848
843
  # * `ContentBasedDeduplication` – Enables content-based deduplication
849
844
  # for FIFO topics.
@@ -2579,6 +2574,9 @@ module Aws::SNS
2579
2574
  #
2580
2575
  # The following attribute applies only to [FIFO topics][5]:
2581
2576
  #
2577
+ # * `ArchivePolicy` – The policy that sets the retention period for
2578
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
2579
+ #
2582
2580
  # * `ContentBasedDeduplication` – Enables content-based deduplication
2583
2581
  # for FIFO topics.
2584
2582
  #
@@ -2987,7 +2985,7 @@ module Aws::SNS
2987
2985
  tracer: tracer
2988
2986
  )
2989
2987
  context[:gem_name] = 'aws-sdk-sns'
2990
- context[:gem_version] = '1.91.0'
2988
+ context[:gem_version] = '1.92.0'
2991
2989
  Seahorse::Client::Request.new(handlers, context)
2992
2990
  end
2993
2991
 
@@ -137,13 +137,8 @@ module Aws::SNS
137
137
  #
138
138
  # The following attributes apply only to [FIFO topics][4]:
139
139
  #
140
- # * `ArchivePolicy` – Adds or updates an inline policy document to
141
- # archive messages stored in the specified Amazon SNS topic.
142
- #
143
- # * `BeginningArchiveTime` – The earliest starting point at which a
144
- # message in the topic’s archive can be replayed from. This point in
145
- # time is based on the configured message retention period set by the
146
- # topic’s message archiving policy.
140
+ # * `ArchivePolicy` – The policy that sets the retention period for
141
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
147
142
  #
148
143
  # * `ContentBasedDeduplication` – Enables content-based deduplication
149
144
  # for FIFO topics.
@@ -96,7 +96,13 @@ module Aws::SNS
96
96
  #
97
97
  # The following attributes apply only to [FIFO topics][4]:
98
98
  #
99
- # * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
99
+ # * `ArchivePolicy` – The policy that sets the retention period for
100
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
101
+ #
102
+ # * `BeginningArchiveTime` – The earliest starting point at which a
103
+ # message in the topic’s archive can be replayed from. This point in
104
+ # time is based on the configured message retention period set by the
105
+ # topic’s message archiving policy.
100
106
  #
101
107
  # * `ContentBasedDeduplication` – Enables content-based deduplication
102
108
  # for FIFO topics.
@@ -113,6 +119,7 @@ module Aws::SNS
113
119
  # (Optional) To override the generated value, you can specify a
114
120
  # value for the `MessageDeduplicationId` parameter for the `Publish`
115
121
  # action.
122
+ # * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
116
123
  #
117
124
  #
118
125
  #
@@ -528,6 +535,9 @@ module Aws::SNS
528
535
  #
529
536
  # The following attribute applies only to [FIFO topics][5]:
530
537
  #
538
+ # * `ArchivePolicy` – The policy that sets the retention period for
539
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
540
+ #
531
541
  # * `ContentBasedDeduplication` – Enables content-based deduplication
532
542
  # for FIFO topics.
533
543
  #
@@ -385,13 +385,9 @@ module Aws::SNS
385
385
  #
386
386
  # The following attributes apply only to [FIFO topics][4]:
387
387
  #
388
- # * `ArchivePolicy` – Adds or updates an inline policy document to
389
- # archive messages stored in the specified Amazon SNS topic.
390
- #
391
- # * `BeginningArchiveTime` – The earliest starting point at which a
392
- # message in the topic’s archive can be replayed from. This point in
393
- # time is based on the configured message retention period set by
394
- # the topic’s message archiving policy.
388
+ # * `ArchivePolicy` – The policy that sets the retention period for
389
+ # messages stored in the message archive of an Amazon SNS FIFO
390
+ # topic.
395
391
  #
396
392
  # * `ContentBasedDeduplication` – Enables content-based deduplication
397
393
  # for FIFO topics.
@@ -946,7 +942,14 @@ module Aws::SNS
946
942
  #
947
943
  # The following attributes apply only to [FIFO topics][4]:
948
944
  #
949
- # * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
945
+ # * `ArchivePolicy` – The policy that sets the retention period for
946
+ # messages stored in the message archive of an Amazon SNS FIFO
947
+ # topic.
948
+ #
949
+ # * `BeginningArchiveTime` – The earliest starting point at which a
950
+ # message in the topic’s archive can be replayed from. This point in
951
+ # time is based on the configured message retention period set by
952
+ # the topic’s message archiving policy.
950
953
  #
951
954
  # * `ContentBasedDeduplication` – Enables content-based deduplication
952
955
  # for FIFO topics.
@@ -964,6 +967,7 @@ module Aws::SNS
964
967
  # (Optional) To override the generated value, you can specify a
965
968
  # value for the `MessageDeduplicationId` parameter for the
966
969
  # `Publish` action.
970
+ # * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
967
971
  #
968
972
  #
969
973
  #
@@ -2599,6 +2603,10 @@ module Aws::SNS
2599
2603
  #
2600
2604
  # The following attribute applies only to [FIFO topics][5]:
2601
2605
  #
2606
+ # * `ArchivePolicy` – The policy that sets the retention period for
2607
+ # messages stored in the message archive of an Amazon SNS FIFO
2608
+ # topic.
2609
+ #
2602
2610
  # * `ContentBasedDeduplication` – Enables content-based deduplication
2603
2611
  # for FIFO topics.
2604
2612
  #
data/lib/aws-sdk-sns.rb CHANGED
@@ -58,7 +58,7 @@ module Aws::SNS
58
58
  autoload :Subscription, 'aws-sdk-sns/subscription'
59
59
  autoload :Topic, 'aws-sdk-sns/topic'
60
60
 
61
- GEM_VERSION = '1.91.0'
61
+ GEM_VERSION = '1.92.0'
62
62
 
63
63
  end
64
64
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sns
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-18 00:00:00.000000000 Z
11
+ date: 2024-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core