aws-sdk-dynamodb 1.95.0 → 1.96.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 +5 -5
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-dynamodb/table.rb +1 -1
- data/lib/aws-sdk-dynamodb/types.rb +16 -15
- 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: 01b730b93f636bbf4b50a16a85c5fed7c5b676c503ff311bc40b1434412c58e3
|
4
|
+
data.tar.gz: b52a347cd9988b67a55bf5316a4d87b714d4ca8bf5b334fc636199aeb238db35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 506f5cc8458023eec0eb728a6692e708d762789e7e4f80ec388fb553bf0f6088cbd04d4b6773591b6184f54c13c3f555ae43b02527d2625f983eff5428971475
|
7
|
+
data.tar.gz: 2e299d4d661064c02f7643246a2e591ee27779cc4814adbfad78bd1e06530fc2c8f9d0988927cd8d619c4f5b50db95a72e4ccf5adbcf1fdebd193565133a3362
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.96.0
|
@@ -3467,9 +3467,9 @@ module Aws::DynamoDB
|
|
3467
3467
|
#
|
3468
3468
|
# @option params [String] :export_type
|
3469
3469
|
# Choice of whether to execute as a full export or incremental export.
|
3470
|
-
# Valid values are
|
3471
|
-
#
|
3472
|
-
# must also be used.
|
3470
|
+
# Valid values are FULL\_EXPORT or INCREMENTAL\_EXPORT. The default
|
3471
|
+
# value is FULL\_EXPORT. If INCREMENTAL\_EXPORT is provided, the
|
3472
|
+
# IncrementalExportSpecification must also be used.
|
3473
3473
|
#
|
3474
3474
|
# @option params [Types::IncrementalExportSpecification] :incremental_export_specification
|
3475
3475
|
# Optional object containing the parameters specific to an incremental
|
@@ -5839,7 +5839,7 @@ module Aws::DynamoDB
|
|
5839
5839
|
#
|
5840
5840
|
#
|
5841
5841
|
#
|
5842
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
5842
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Scan.html#Scan.FilterExpression
|
5843
5843
|
#
|
5844
5844
|
# @option params [Hash<String,String>] :expression_attribute_names
|
5845
5845
|
# One or more substitution tokens for attribute names in an expression.
|
@@ -7861,7 +7861,7 @@ module Aws::DynamoDB
|
|
7861
7861
|
params: params,
|
7862
7862
|
config: config)
|
7863
7863
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
7864
|
-
context[:gem_version] = '1.
|
7864
|
+
context[:gem_version] = '1.96.0'
|
7865
7865
|
Seahorse::Client::Request.new(handlers, context)
|
7866
7866
|
end
|
7867
7867
|
|
@@ -32,8 +32,8 @@ module Aws::DynamoDB
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
36
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://dynamodb.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
38
|
end
|
39
39
|
return Aws::Endpoints::Endpoint.new(url: "https://dynamodb-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
@@ -1681,7 +1681,7 @@ module Aws::DynamoDB
|
|
1681
1681
|
#
|
1682
1682
|
#
|
1683
1683
|
#
|
1684
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1684
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Scan.html#Scan.FilterExpression
|
1685
1685
|
# @option options [Hash<String,String>] :expression_attribute_names
|
1686
1686
|
# One or more substitution tokens for attribute names in an expression.
|
1687
1687
|
# The following are some use cases for using `ExpressionAttributeNames`:
|
@@ -3501,10 +3501,8 @@ module Aws::DynamoDB
|
|
3501
3501
|
# @return [Integer]
|
3502
3502
|
#
|
3503
3503
|
# @!attribute [rw] export_type
|
3504
|
-
#
|
3505
|
-
#
|
3506
|
-
# `INCREMENTAL_EXPORT` is provided, the
|
3507
|
-
# `IncrementalExportSpecification` must also be used.
|
3504
|
+
# The type of export that was performed. Valid values are
|
3505
|
+
# `FULL_EXPORT` or `INCREMENTAL_EXPORT`.
|
3508
3506
|
# @return [String]
|
3509
3507
|
#
|
3510
3508
|
# @!attribute [rw] incremental_export_specification
|
@@ -3565,10 +3563,8 @@ module Aws::DynamoDB
|
|
3565
3563
|
# @return [String]
|
3566
3564
|
#
|
3567
3565
|
# @!attribute [rw] export_type
|
3568
|
-
#
|
3569
|
-
#
|
3570
|
-
# `INCREMENTAL_EXPORT` is provided, the
|
3571
|
-
# `IncrementalExportSpecification` must also be used.
|
3566
|
+
# The type of export that was performed. Valid values are
|
3567
|
+
# `FULL_EXPORT` or `INCREMENTAL_EXPORT`.
|
3572
3568
|
# @return [String]
|
3573
3569
|
#
|
3574
3570
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ExportSummary AWS API Documentation
|
@@ -3645,9 +3641,9 @@ module Aws::DynamoDB
|
|
3645
3641
|
#
|
3646
3642
|
# @!attribute [rw] export_type
|
3647
3643
|
# Choice of whether to execute as a full export or incremental export.
|
3648
|
-
# Valid values are
|
3649
|
-
#
|
3650
|
-
#
|
3644
|
+
# Valid values are FULL\_EXPORT or INCREMENTAL\_EXPORT. The default
|
3645
|
+
# value is FULL\_EXPORT. If INCREMENTAL\_EXPORT is provided, the
|
3646
|
+
# IncrementalExportSpecification must also be used.
|
3651
3647
|
# @return [String]
|
3652
3648
|
#
|
3653
3649
|
# @!attribute [rw] incremental_export_specification
|
@@ -4612,9 +4608,9 @@ module Aws::DynamoDB
|
|
4612
4608
|
# @return [Time]
|
4613
4609
|
#
|
4614
4610
|
# @!attribute [rw] export_view_type
|
4615
|
-
#
|
4616
|
-
#
|
4617
|
-
# `NEW_AND_OLD_IMAGES
|
4611
|
+
# The view type that was chosen for the export. Valid values are
|
4612
|
+
# `NEW_AND_OLD_IMAGES` and `NEW_IMAGES`. The default value is
|
4613
|
+
# `NEW_AND_OLD_IMAGES`.
|
4618
4614
|
# @return [String]
|
4619
4615
|
#
|
4620
4616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/IncrementalExportSpecification AWS API Documentation
|
@@ -7743,7 +7739,7 @@ module Aws::DynamoDB
|
|
7743
7739
|
#
|
7744
7740
|
#
|
7745
7741
|
#
|
7746
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7742
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Scan.html#Scan.FilterExpression
|
7747
7743
|
# @return [String]
|
7748
7744
|
#
|
7749
7745
|
# @!attribute [rw] expression_attribute_names
|
@@ -8872,6 +8868,11 @@ module Aws::DynamoDB
|
|
8872
8868
|
#
|
8873
8869
|
# * There is a user error, such as an invalid data format.
|
8874
8870
|
#
|
8871
|
+
# * There is an ongoing `TransactWriteItems` operation that conflicts
|
8872
|
+
# with a concurrent `TransactWriteItems` request. In this case the
|
8873
|
+
# `TransactWriteItems` operation fails with a
|
8874
|
+
# `TransactionCanceledException`.
|
8875
|
+
#
|
8875
8876
|
# DynamoDB cancels a `TransactGetItems` request under the following
|
8876
8877
|
# circumstances:
|
8877
8878
|
#
|
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.96.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: 2023-
|
11
|
+
date: 2023-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|