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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sqs/client.rb +7 -7
- data/lib/aws-sdk-sqs/queue.rb +3 -3
- data/lib/aws-sdk-sqs/resource.rb +2 -2
- data/lib/aws-sdk-sqs/types.rb +7 -7
- data/lib/aws-sdk-sqs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36df0e2b56d149f11ccfd1772c51b6c037989d7f98046fb975cdccd4e21a4c03
|
4
|
+
data.tar.gz: f417683b743bcb13a829e49012252a357ea7b67b574193fa24a02100860f7b59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b2f1939dba5b9563192021ba4bfe6acea6c155442cf98847af08530ddc7d7d44990fdec13aa34eb08cf3c3cefcff959af1d4080e09c471fa1e83ba2b259b0e5
|
7
|
+
data.tar.gz: 40e5f51ded0ca676d8efe35c4bd879c7f2a30794c468cd14ecaea6dd8d62d6d9cbe6ed3bf8b7f368b9f76210610de259c6cb4530a03666f947d9ef951b63a220
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.102.0
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -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
|
882
|
-
# (
|
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
|
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
|
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
|
2610
|
-
# (
|
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.
|
2986
|
+
context[:gem_version] = '1.102.0'
|
2987
2987
|
Seahorse::Client::Request.new(handlers, context)
|
2988
2988
|
end
|
2989
2989
|
|
data/lib/aws-sdk-sqs/queue.rb
CHANGED
@@ -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
|
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
|
741
|
-
# (
|
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
|
data/lib/aws-sdk-sqs/resource.rb
CHANGED
@@ -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
|
74
|
-
# (
|
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
|
data/lib/aws-sdk-sqs/types.rb
CHANGED
@@ -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
|
295
|
-
#
|
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 (
|
1442
|
-
#
|
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
|
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
|
2572
|
-
#
|
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