aws-sdk-sns 1.91.0 → 1.93.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0545b35eedb652ad93f497b71fffb62c7de549fd6e8e9fee86982f990e41d4a1
4
- data.tar.gz: a16679f3c13a3dddbf4a3dfae423b1f86343c8401e8e075ba610c0ffdb415f4b
3
+ metadata.gz: 1ced88b2411812a2266c0780ffe31a28418fce51fb1058e9c5e720924af6488b
4
+ data.tar.gz: c3feb8458a2afd48a36ea13366320efa495f138f3c86226c5d10028d5e8e3f8d
5
5
  SHA512:
6
- metadata.gz: 5e2a08ee7ce25cc4e942df60ec4701ea5768c93336b716ae1b3abaf5bb8b4a9a9e5591610f1b5b26757f2f9fcba657f5f33f82e24de23cbdc42f98e2a026bae8
7
- data.tar.gz: 4d2a3ee05d9c9bf585299b659951b58911c6c35b5ca10dbf1b44df15dc58b050b81bd7f65e1d446e4f4d8caa2fd0e705dac3f73acd1d1e59abce3fc84c980f2f
6
+ metadata.gz: 60e3d00cdd0252c357d892c1f88758da38ae731c13d8c0c7d25dceb8eceaa65c81f2c67d30f1e36c13dbaff6a72d3f162550a264b363730c1c138c1a35effca3
7
+ data.tar.gz: 48605ac571656d1bfcf4b17b97fa8b1f1141a13dade8218c42c5084b5e3f4b031e7b9016e97b75c231dd7bcb9ac186cebe3988101c785133ee27ae71516045ab
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.92.0 (2024-11-22)
10
+ ------------------
11
+
12
+ * Feature - ArchivePolicy attribute added to Archive and Replay feature
13
+
4
14
  1.91.0 (2024-11-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -257,11 +257,34 @@ module Aws::SNS
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -837,13 +860,8 @@ module Aws::SNS
837
860
  #
838
861
  # The following attributes apply only to [FIFO topics][4]:
839
862
  #
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.
863
+ # * `ArchivePolicy` – The policy that sets the retention period for
864
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
847
865
  #
848
866
  # * `ContentBasedDeduplication` – Enables content-based deduplication
849
867
  # for FIFO topics.
@@ -2579,6 +2597,9 @@ module Aws::SNS
2579
2597
  #
2580
2598
  # The following attribute applies only to [FIFO topics][5]:
2581
2599
  #
2600
+ # * `ArchivePolicy` – The policy that sets the retention period for
2601
+ # messages stored in the message archive of an Amazon SNS FIFO topic.
2602
+ #
2582
2603
  # * `ContentBasedDeduplication` – Enables content-based deduplication
2583
2604
  # for FIFO topics.
2584
2605
  #
@@ -2987,7 +3008,7 @@ module Aws::SNS
2987
3008
  tracer: tracer
2988
3009
  )
2989
3010
  context[:gem_name] = 'aws-sdk-sns'
2990
- context[:gem_version] = '1.91.0'
3011
+ context[:gem_version] = '1.93.0'
2991
3012
  Seahorse::Client::Request.new(handlers, context)
2992
3013
  end
2993
3014
 
@@ -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.93.0'
62
62
 
63
63
  end
64
64
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.93.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: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement