aws-sdk-sqs 1.101.0 → 1.102.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: 96041809b80db1bba93b2935722ece4f03c572f7af0764c93c1a526c2b80ce6d
4
- data.tar.gz: 90c07a17095e9a3488deb49cb99f2a208a1a609c52e2401a72b16a4d1141ee1d
3
+ metadata.gz: 36df0e2b56d149f11ccfd1772c51b6c037989d7f98046fb975cdccd4e21a4c03
4
+ data.tar.gz: f417683b743bcb13a829e49012252a357ea7b67b574193fa24a02100860f7b59
5
5
  SHA512:
6
- metadata.gz: 598ba71c7d7201a945cfbc34ad97e1004c724851e12bbb0afefd8467bf1e2fc9ce95f158c16a1a14d8d11820ee185e7dc2a8568c90bca44486f3cfb585968a6b
7
- data.tar.gz: 553e7d4fc1662a86eb19e25cae3d00e050a0c20718385d181ec17288a7b2a96a8c5e98a3f70ac14416c70718b7fb4d4b5eab054f8ae887072bcee5d0d53acc4f
6
+ metadata.gz: 8b2f1939dba5b9563192021ba4bfe6acea6c155442cf98847af08530ddc7d7d44990fdec13aa34eb08cf3c3cefcff959af1d4080e09c471fa1e83ba2b259b0e5
7
+ data.tar.gz: 40e5f51ded0ca676d8efe35c4bd879c7f2a30794c468cd14ecaea6dd8d62d6d9cbe6ed3bf8b7f368b9f76210610de259c6cb4530a03666f947d9ef951b63a220
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.102.0 (2025-08-25)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for Amazon SQS Supports Large Payload Message feature
8
+
4
9
  1.101.0 (2025-08-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.101.0
1
+ 1.102.0
@@ -878,8 +878,8 @@ module Aws::SQS
878
878
  #
879
879
  # * `MaximumMessageSize` – The limit of how many bytes a message can
880
880
  # contain before Amazon SQS rejects it. Valid values: An integer from
881
- # 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). Default: 262,144
882
- # (256 KiB).
881
+ # 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576
882
+ # bytes (1 MiB).
883
883
  #
884
884
  # * `MessageRetentionPeriod` – The length of time, in seconds, for which
885
885
  # Amazon SQS retains a message. Valid values: An integer from 60
@@ -2239,7 +2239,7 @@ module Aws::SQS
2239
2239
  #
2240
2240
  # @option params [required, String] :message_body
2241
2241
  # The message to send. The minimum size is one character. The maximum
2242
- # size is 256 KiB.
2242
+ # size is 1 MiB or 1,048,576 bytes
2243
2243
  #
2244
2244
  # A message can include only XML, JSON, and unformatted text. The
2245
2245
  # following Unicode characters are allowed. For more information, see
@@ -2470,7 +2470,7 @@ module Aws::SQS
2470
2470
  #
2471
2471
  # The maximum allowed individual message size and the maximum total
2472
2472
  # payload size (the sum of the individual lengths of all of the batched
2473
- # messages) are both 256 KiB (262,144 bytes).
2473
+ # messages) are both 1 MiB 1,048,576 bytes.
2474
2474
  #
2475
2475
  # A message can include only XML, JSON, and unformatted text. The
2476
2476
  # following Unicode characters are allowed. For more information, see
@@ -2606,8 +2606,8 @@ module Aws::SQS
2606
2606
  #
2607
2607
  # * `MaximumMessageSize` – The limit of how many bytes a message can
2608
2608
  # contain before Amazon SQS rejects it. Valid values: An integer from
2609
- # 1,024 bytes (1 KiB) up to 262,144 bytes (256 KiB). Default: 262,144
2610
- # (256 KiB).
2609
+ # 1,024 bytes (1 KiB) up to 1,048,576 bytes (1 MiB). Default:
2610
+ # 1,048,576 bytes (1 MiB).
2611
2611
  #
2612
2612
  # * `MessageRetentionPeriod` – The length of time, in seconds, for which
2613
2613
  # Amazon SQS retains a message. Valid values: An integer representing
@@ -2983,7 +2983,7 @@ module Aws::SQS
2983
2983
  tracer: tracer
2984
2984
  )
2985
2985
  context[:gem_name] = 'aws-sdk-sqs'
2986
- context[:gem_version] = '1.101.0'
2986
+ context[:gem_version] = '1.102.0'
2987
2987
  Seahorse::Client::Request.new(handlers, context)
2988
2988
  end
2989
2989
 
@@ -506,7 +506,7 @@ module Aws::SQS
506
506
  # @param [Hash] options ({})
507
507
  # @option options [required, String] :message_body
508
508
  # The message to send. The minimum size is one character. The maximum
509
- # size is 256 KiB.
509
+ # size is 1 MiB or 1,048,576 bytes
510
510
  #
511
511
  # A message can include only XML, JSON, and unformatted text. The
512
512
  # following Unicode characters are allowed. For more information, see
@@ -737,8 +737,8 @@ module Aws::SQS
737
737
  #
738
738
  # * `MaximumMessageSize` – The limit of how many bytes a message can
739
739
  # contain before Amazon SQS rejects it. Valid values: An integer from
740
- # 1,024 bytes (1 KiB) up to 262,144 bytes (256 KiB). Default: 262,144
741
- # (256 KiB).
740
+ # 1,024 bytes (1 KiB) up to 1,048,576 bytes (1 MiB). Default:
741
+ # 1,048,576 bytes (1 MiB).
742
742
  #
743
743
  # * `MessageRetentionPeriod` – The length of time, in seconds, for which
744
744
  # Amazon SQS retains a message. Valid values: An integer representing
@@ -70,8 +70,8 @@ module Aws::SQS
70
70
  #
71
71
  # * `MaximumMessageSize` – The limit of how many bytes a message can
72
72
  # contain before Amazon SQS rejects it. Valid values: An integer from
73
- # 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). Default: 262,144
74
- # (256 KiB).
73
+ # 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576
74
+ # bytes (1 MiB).
75
75
  #
76
76
  # * `MessageRetentionPeriod` – The length of time, in seconds, for which
77
77
  # Amazon SQS retains a message. Valid values: An integer from 60
@@ -291,8 +291,8 @@ module Aws::SQS
291
291
  #
292
292
  # * `MaximumMessageSize` – The limit of how many bytes a message can
293
293
  # contain before Amazon SQS rejects it. Valid values: An integer
294
- # from 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). Default:
295
- # 262,144 (256 KiB).
294
+ # from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default:
295
+ # 1,048,576 bytes (1 MiB).
296
296
  #
297
297
  # * `MessageRetentionPeriod` – The length of time, in seconds, for
298
298
  # which Amazon SQS retains a message. Valid values: An integer from
@@ -1438,8 +1438,8 @@ module Aws::SQS
1438
1438
  #
1439
1439
  # `Name`, `type`, `value` and the message body must not be empty or
1440
1440
  # null. All parts of the message attribute, including `Name`, `Type`,
1441
- # and `Value`, are part of the message size restriction (256 KiB or
1442
- # 262,144 bytes).
1441
+ # and `Value`, are part of the message size restriction (1 MiB or
1442
+ # 1,048,576 bytes).
1443
1443
  #
1444
1444
  # @!attribute [rw] string_value
1445
1445
  # Strings are Unicode with UTF-8 binary encoding. For a list of code
@@ -2297,7 +2297,7 @@ module Aws::SQS
2297
2297
  #
2298
2298
  # @!attribute [rw] message_body
2299
2299
  # The message to send. The minimum size is one character. The maximum
2300
- # size is 256 KiB.
2300
+ # size is 1 MiB or 1,048,576 bytes
2301
2301
  #
2302
2302
  # A message can include only XML, JSON, and unformatted text. The
2303
2303
  # following Unicode characters are allowed. For more information, see
@@ -2568,8 +2568,8 @@ module Aws::SQS
2568
2568
  #
2569
2569
  # * `MaximumMessageSize` – The limit of how many bytes a message can
2570
2570
  # contain before Amazon SQS rejects it. Valid values: An integer
2571
- # from 1,024 bytes (1 KiB) up to 262,144 bytes (256 KiB). Default:
2572
- # 262,144 (256 KiB).
2571
+ # from 1,024 bytes (1 KiB) up to 1,048,576 bytes (1 MiB). Default:
2572
+ # 1,048,576 bytes (1 MiB).
2573
2573
  #
2574
2574
  # * `MessageRetentionPeriod` – The length of time, in seconds, for
2575
2575
  # which Amazon SQS retains a message. Valid values: An integer
data/lib/aws-sdk-sqs.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SQS
56
56
  autoload :Message, 'aws-sdk-sqs/message'
57
57
  autoload :Queue, 'aws-sdk-sqs/queue'
58
58
 
59
- GEM_VERSION = '1.101.0'
59
+ GEM_VERSION = '1.102.0'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.101.0
4
+ version: 1.102.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services