aws-sdk-dynamodb 1.139.0 → 1.140.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-dynamodb/client.rb +6 -1
- data/lib/aws-sdk-dynamodb/types.rb +13 -9
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4120df8214be6302a8f7a4f0f106f1a01c26182d23d2c04efb2a5bc5218f8d2a
|
4
|
+
data.tar.gz: 06ef7d9a24cb98c7f2804c3cd1ea26c01a3a065e88a541832d29f940c61a4d3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05fc831e4b8838ff53cfc5c49be7c172f30b5e2e9ff1cfd0e26fd8f8a65f3c1e6f7998d5681bb2d87b343a824f740ee84d54b1bb37c2a85bf98c341522884ef5
|
7
|
+
data.tar.gz: de7eb9f70d692ac04b57a702a5dfb3a9345c966342dc4298a523f607564c0e8c12ab28aa99a3cf6c00e5d51e77ecf5724c4e0a6b3c50c248e4066f96488ad6c2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.140.0
|
@@ -663,6 +663,11 @@ module Aws::DynamoDB
|
|
663
663
|
# according to the type of read. For more information, see [Working with
|
664
664
|
# Tables][2] in the *Amazon DynamoDB Developer Guide*.
|
665
665
|
#
|
666
|
+
# <note markdown="1"> `BatchGetItem` will result in a `ValidationException` if the same key
|
667
|
+
# is specified multiple times.
|
668
|
+
#
|
669
|
+
# </note>
|
670
|
+
#
|
666
671
|
#
|
667
672
|
#
|
668
673
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#BatchOperations
|
@@ -8636,7 +8641,7 @@ module Aws::DynamoDB
|
|
8636
8641
|
tracer: tracer
|
8637
8642
|
)
|
8638
8643
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8639
|
-
context[:gem_version] = '1.
|
8644
|
+
context[:gem_version] = '1.140.0'
|
8640
8645
|
Seahorse::Client::Request.new(handlers, context)
|
8641
8646
|
end
|
8642
8647
|
|
@@ -1722,7 +1722,9 @@ module Aws::DynamoDB
|
|
1722
1722
|
# @!attribute [rw] on_demand_throughput
|
1723
1723
|
# The maximum number of read and write units for the global secondary
|
1724
1724
|
# index being created. If you use this parameter, you must specify
|
1725
|
-
# `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both.
|
1725
|
+
# `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both. You must use
|
1726
|
+
# either `OnDemand Throughput` or `ProvisionedThroughput` based on
|
1727
|
+
# your table's capacity mode.
|
1726
1728
|
# @return [Types::OnDemandThroughput]
|
1727
1729
|
#
|
1728
1730
|
# @!attribute [rw] warm_throughput
|
@@ -5987,9 +5989,9 @@ module Aws::DynamoDB
|
|
5987
5989
|
include Aws::Structure
|
5988
5990
|
end
|
5989
5991
|
|
5990
|
-
# Represents the provisioned throughput settings for
|
5991
|
-
#
|
5992
|
-
#
|
5992
|
+
# Represents the provisioned throughput settings for the specified
|
5993
|
+
# global secondary index. You must use `ProvisionedThroughput` or
|
5994
|
+
# `OnDemandThroughput` based on your table’s capacity mode.
|
5993
5995
|
#
|
5994
5996
|
# For current minimum and maximum provisioned throughput values, see
|
5995
5997
|
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
@@ -8675,9 +8677,9 @@ module Aws::DynamoDB
|
|
8675
8677
|
# @return [String]
|
8676
8678
|
#
|
8677
8679
|
# @!attribute [rw] provisioned_throughput
|
8678
|
-
# Represents the provisioned throughput settings for
|
8679
|
-
#
|
8680
|
-
#
|
8680
|
+
# Represents the provisioned throughput settings for the specified
|
8681
|
+
# global secondary index. You must use `ProvisionedThroughput` or
|
8682
|
+
# `OnDemandThroughput` based on your table’s capacity mode.
|
8681
8683
|
#
|
8682
8684
|
# For current minimum and maximum provisioned throughput values, see
|
8683
8685
|
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
@@ -9116,7 +9118,9 @@ module Aws::DynamoDB
|
|
9116
9118
|
end
|
9117
9119
|
|
9118
9120
|
# Represents the warm throughput value (in read units per second and
|
9119
|
-
# write units per second) of the
|
9121
|
+
# write units per second) of the table. Warm throughput is applicable
|
9122
|
+
# for DynamoDB Standard-IA tables and specifies the minimum provisioned
|
9123
|
+
# capacity maintained for immediate data access.
|
9120
9124
|
#
|
9121
9125
|
# @!attribute [rw] read_units_per_second
|
9122
9126
|
# Represents the base table's warm throughput value in read units per
|
@@ -9129,7 +9133,7 @@ module Aws::DynamoDB
|
|
9129
9133
|
# @return [Integer]
|
9130
9134
|
#
|
9131
9135
|
# @!attribute [rw] status
|
9132
|
-
# Represents warm throughput value of the base table
|
9136
|
+
# Represents warm throughput value of the base table.
|
9133
9137
|
# @return [String]
|
9134
9138
|
#
|
9135
9139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableWarmThroughputDescription AWS API Documentation
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.140.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: 2025-04-
|
11
|
+
date: 2025-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|