aws-sdk-dynamodb 1.138.0 → 1.144.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 +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +38 -24
- data/lib/aws-sdk-dynamodb/client_api.rb +48 -48
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-dynamodb/endpoints.rb +11 -0
- data/lib/aws-sdk-dynamodb/resource.rb +19 -10
- data/lib/aws-sdk-dynamodb/table.rb +20 -11
- data/lib/aws-sdk-dynamodb/types.rb +64 -36
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba5aca242b047b53709e1bf9a5db2953613ddd1ea28da539dc3547835513e41b
|
4
|
+
data.tar.gz: e26aa8e912a84eca188d574b82ffba370a150ea1bb3234d7e56585568ba09b3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51c0fbeebef6b3bfcbdb2593b3d356813b9f3078d5ae0574cea85c5fff836e15442ef19a7e6013eb44d670b2ec98bbce04c5822c6351ba71180e2930c1efebc7
|
7
|
+
data.tar.gz: 499be8fcfd02ccd78c9f22662c84c7470cde6e3344dca25f3ad1b0aa90db4124301a6c83d21f81e0e9aae9914ae3a6c2d557972399bfbb4e4a852e11853add85
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,36 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.144.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.143.0 (2025-05-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.142.0 (2025-04-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Doc only update for GSI descriptions.
|
18
|
+
|
19
|
+
1.141.0 (2025-04-24)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add support for ARN-sourced account endpoint generation for TransactWriteItems. This will generate account endpoints for DynamoDB TransactWriteItems requests using ARN-sourced account ID when available.
|
23
|
+
|
24
|
+
1.140.0 (2025-04-11)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Doc only update for API descriptions.
|
28
|
+
|
29
|
+
1.139.0 (2025-04-09)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Documentation update for secondary indexes and Create_Table.
|
33
|
+
|
4
34
|
1.138.0 (2025-03-13)
|
5
35
|
------------------
|
6
36
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.144.0
|
@@ -212,8 +212,7 @@ module Aws::DynamoDB
|
|
212
212
|
# accepted modes and the configuration defaults that are included.
|
213
213
|
#
|
214
214
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
215
|
-
#
|
216
|
-
# to default service endpoint when available.
|
215
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
217
216
|
#
|
218
217
|
# @option options [Boolean] :disable_request_compression (false)
|
219
218
|
# When set to 'true' the request body will not be compressed
|
@@ -663,6 +662,11 @@ module Aws::DynamoDB
|
|
663
662
|
# according to the type of read. For more information, see [Working with
|
664
663
|
# Tables][2] in the *Amazon DynamoDB Developer Guide*.
|
665
664
|
#
|
665
|
+
# <note markdown="1"> `BatchGetItem` will result in a `ValidationException` if the same key
|
666
|
+
# is specified multiple times.
|
667
|
+
#
|
668
|
+
# </note>
|
669
|
+
#
|
666
670
|
#
|
667
671
|
#
|
668
672
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#BatchOperations
|
@@ -1447,7 +1451,11 @@ module Aws::DynamoDB
|
|
1447
1451
|
# attributes provided in `NonKeyAttributes`, summed across all of
|
1448
1452
|
# the secondary indexes, must not exceed 100. If you project the
|
1449
1453
|
# same attribute into two different indexes, this counts as two
|
1450
|
-
# distinct attributes when determining the total.
|
1454
|
+
# distinct attributes when determining the total. This limit only
|
1455
|
+
# applies when you specify the ProjectionType of `INCLUDE`. You
|
1456
|
+
# still can specify the ProjectionType of `ALL` to project all
|
1457
|
+
# attributes from the source table, even if the table has more than
|
1458
|
+
# 100 attributes.
|
1451
1459
|
#
|
1452
1460
|
# @option params [Array<Types::GlobalSecondaryIndex>] :global_secondary_indexes
|
1453
1461
|
# One or more global secondary indexes (the maximum is 20) to be created
|
@@ -1483,7 +1491,11 @@ module Aws::DynamoDB
|
|
1483
1491
|
# attributes provided in `NonKeyAttributes`, summed across all of
|
1484
1492
|
# the secondary indexes, must not exceed 100. If you project the
|
1485
1493
|
# same attribute into two different indexes, this counts as two
|
1486
|
-
# distinct attributes when determining the total.
|
1494
|
+
# distinct attributes when determining the total. This limit only
|
1495
|
+
# applies when you specify the ProjectionType of `INCLUDE`. You
|
1496
|
+
# still can specify the ProjectionType of `ALL` to project all
|
1497
|
+
# attributes from the source table, even if the table has more than
|
1498
|
+
# 100 attributes.
|
1487
1499
|
# * `ProvisionedThroughput` - The provisioned throughput settings for
|
1488
1500
|
# the global secondary index, consisting of read and write capacity
|
1489
1501
|
# units.
|
@@ -1492,18 +1504,19 @@ module Aws::DynamoDB
|
|
1492
1504
|
# Controls how you are charged for read and write throughput and how you
|
1493
1505
|
# manage capacity. This setting can be changed later.
|
1494
1506
|
#
|
1495
|
-
# * `
|
1496
|
-
# workloads. `
|
1497
|
-
# capacity mode][1].
|
1507
|
+
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
|
1508
|
+
# DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
|
1509
|
+
# [On-demand capacity mode][1].
|
1498
1510
|
#
|
1499
|
-
# * `
|
1500
|
-
#
|
1501
|
-
#
|
1511
|
+
# * `PROVISIONED` - We recommend using `PROVISIONED` for steady
|
1512
|
+
# workloads with predictable growth where capacity requirements can be
|
1513
|
+
# reliably forecasted. `PROVISIONED` sets the billing mode to
|
1514
|
+
# [Provisioned capacity mode][2].
|
1502
1515
|
#
|
1503
1516
|
#
|
1504
1517
|
#
|
1505
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1506
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1518
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
1519
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1507
1520
|
#
|
1508
1521
|
# @option params [Types::ProvisionedThroughput] :provisioned_throughput
|
1509
1522
|
# Represents the provisioned throughput settings for a specified table
|
@@ -7065,8 +7078,8 @@ module Aws::DynamoDB
|
|
7065
7078
|
#
|
7066
7079
|
# `LatestRestorableDateTime` is typically 5 minutes before the current
|
7067
7080
|
# time. You can restore your table to any point in time in the last 35
|
7068
|
-
# days. You can set the
|
7069
|
-
# days.
|
7081
|
+
# days. You can set the `RecoveryPeriodInDays` to any value between 1
|
7082
|
+
# and 35 days.
|
7070
7083
|
#
|
7071
7084
|
# @option params [required, String] :table_name
|
7072
7085
|
# The name of the table. You can also provide the Amazon Resource Name
|
@@ -7964,18 +7977,19 @@ module Aws::DynamoDB
|
|
7964
7977
|
# and write capacity of your table and global secondary indexes over the
|
7965
7978
|
# past 30 minutes.
|
7966
7979
|
#
|
7967
|
-
# * `
|
7968
|
-
# workloads. `
|
7969
|
-
# capacity mode][1].
|
7980
|
+
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
|
7981
|
+
# DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
|
7982
|
+
# [On-demand capacity mode][1].
|
7970
7983
|
#
|
7971
|
-
# * `
|
7972
|
-
#
|
7973
|
-
#
|
7984
|
+
# * `PROVISIONED` - We recommend using `PROVISIONED` for steady
|
7985
|
+
# workloads with predictable growth where capacity requirements can be
|
7986
|
+
# reliably forecasted. `PROVISIONED` sets the billing mode to
|
7987
|
+
# [Provisioned capacity mode][2].
|
7974
7988
|
#
|
7975
7989
|
#
|
7976
7990
|
#
|
7977
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7978
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
7991
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
7992
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
7979
7993
|
#
|
7980
7994
|
# @option params [Types::ProvisionedThroughput] :provisioned_throughput
|
7981
7995
|
# The new provisioned throughput settings for the specified table or
|
@@ -8056,7 +8070,7 @@ module Aws::DynamoDB
|
|
8056
8070
|
#
|
8057
8071
|
#
|
8058
8072
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ReplicationGroupUpdate.html#DDB-Type-ReplicationGroupUpdate-Create
|
8059
|
-
# [2]: https://docs.aws.amazon.com/
|
8073
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#DDB-UpdateTable-request-ReplicaUpdates
|
8060
8074
|
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/PreviewFeatures.html#multi-region-strong-consistency-gt
|
8061
8075
|
#
|
8062
8076
|
# @option params [Types::OnDemandThroughput] :on_demand_throughput
|
@@ -8626,7 +8640,7 @@ module Aws::DynamoDB
|
|
8626
8640
|
tracer: tracer
|
8627
8641
|
)
|
8628
8642
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8629
|
-
context[:gem_version] = '1.
|
8643
|
+
context[:gem_version] = '1.144.0'
|
8630
8644
|
Seahorse::Client::Request.new(handlers, context)
|
8631
8645
|
end
|
8632
8646
|
|
@@ -709,7 +709,7 @@ module Aws::DynamoDB
|
|
709
709
|
ContributorInsightsSummary.add_member(:contributor_insights_status, Shapes::ShapeRef.new(shape: ContributorInsightsStatus, location_name: "ContributorInsightsStatus"))
|
710
710
|
ContributorInsightsSummary.struct_class = Types::ContributorInsightsSummary
|
711
711
|
|
712
|
-
CreateBackupInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
712
|
+
CreateBackupInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
713
713
|
CreateBackupInput.add_member(:backup_name, Shapes::ShapeRef.new(shape: BackupName, required: true, location_name: "BackupName"))
|
714
714
|
CreateBackupInput.struct_class = Types::CreateBackupInput
|
715
715
|
|
@@ -724,7 +724,7 @@ module Aws::DynamoDB
|
|
724
724
|
CreateGlobalSecondaryIndexAction.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
|
725
725
|
CreateGlobalSecondaryIndexAction.struct_class = Types::CreateGlobalSecondaryIndexAction
|
726
726
|
|
727
|
-
CreateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
727
|
+
CreateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
728
728
|
CreateGlobalTableInput.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicaList, required: true, location_name: "ReplicationGroup"))
|
729
729
|
CreateGlobalTableInput.struct_class = Types::CreateGlobalTableInput
|
730
730
|
|
@@ -743,7 +743,7 @@ module Aws::DynamoDB
|
|
743
743
|
CreateReplicationGroupMemberAction.struct_class = Types::CreateReplicationGroupMemberAction
|
744
744
|
|
745
745
|
CreateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, required: true, location_name: "AttributeDefinitions"))
|
746
|
-
CreateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
746
|
+
CreateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
747
747
|
CreateTableInput.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
|
748
748
|
CreateTableInput.add_member(:local_secondary_indexes, Shapes::ShapeRef.new(shape: LocalSecondaryIndexList, location_name: "LocalSecondaryIndexes"))
|
749
749
|
CreateTableInput.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
|
@@ -776,7 +776,7 @@ module Aws::DynamoDB
|
|
776
776
|
Delete.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
|
777
777
|
Delete.struct_class = Types::Delete
|
778
778
|
|
779
|
-
DeleteBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
779
|
+
DeleteBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
780
780
|
DeleteBackupInput.struct_class = Types::DeleteBackupInput
|
781
781
|
|
782
782
|
DeleteBackupOutput.add_member(:backup_description, Shapes::ShapeRef.new(shape: BackupDescription, location_name: "BackupDescription"))
|
@@ -785,7 +785,7 @@ module Aws::DynamoDB
|
|
785
785
|
DeleteGlobalSecondaryIndexAction.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, required: true, location_name: "IndexName"))
|
786
786
|
DeleteGlobalSecondaryIndexAction.struct_class = Types::DeleteGlobalSecondaryIndexAction
|
787
787
|
|
788
|
-
DeleteItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
788
|
+
DeleteItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
789
789
|
DeleteItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
|
790
790
|
DeleteItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
|
791
791
|
DeleteItemInput.add_member(:conditional_operator, Shapes::ShapeRef.new(shape: ConditionalOperator, location_name: "ConditionalOperator"))
|
@@ -812,32 +812,32 @@ module Aws::DynamoDB
|
|
812
812
|
DeleteRequest.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
|
813
813
|
DeleteRequest.struct_class = Types::DeleteRequest
|
814
814
|
|
815
|
-
DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
815
|
+
DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
816
816
|
DeleteResourcePolicyInput.add_member(:expected_revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "ExpectedRevisionId"))
|
817
817
|
DeleteResourcePolicyInput.struct_class = Types::DeleteResourcePolicyInput
|
818
818
|
|
819
819
|
DeleteResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
|
820
820
|
DeleteResourcePolicyOutput.struct_class = Types::DeleteResourcePolicyOutput
|
821
821
|
|
822
|
-
DeleteTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
822
|
+
DeleteTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
823
823
|
DeleteTableInput.struct_class = Types::DeleteTableInput
|
824
824
|
|
825
825
|
DeleteTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
|
826
826
|
DeleteTableOutput.struct_class = Types::DeleteTableOutput
|
827
827
|
|
828
|
-
DescribeBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
828
|
+
DescribeBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
829
829
|
DescribeBackupInput.struct_class = Types::DescribeBackupInput
|
830
830
|
|
831
831
|
DescribeBackupOutput.add_member(:backup_description, Shapes::ShapeRef.new(shape: BackupDescription, location_name: "BackupDescription"))
|
832
832
|
DescribeBackupOutput.struct_class = Types::DescribeBackupOutput
|
833
833
|
|
834
|
-
DescribeContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
834
|
+
DescribeContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
835
835
|
DescribeContinuousBackupsInput.struct_class = Types::DescribeContinuousBackupsInput
|
836
836
|
|
837
837
|
DescribeContinuousBackupsOutput.add_member(:continuous_backups_description, Shapes::ShapeRef.new(shape: ContinuousBackupsDescription, location_name: "ContinuousBackupsDescription"))
|
838
838
|
DescribeContinuousBackupsOutput.struct_class = Types::DescribeContinuousBackupsOutput
|
839
839
|
|
840
|
-
DescribeContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
840
|
+
DescribeContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
841
841
|
DescribeContributorInsightsInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
|
842
842
|
DescribeContributorInsightsInput.struct_class = Types::DescribeContributorInsightsInput
|
843
843
|
|
@@ -854,32 +854,32 @@ module Aws::DynamoDB
|
|
854
854
|
DescribeEndpointsResponse.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, required: true, location_name: "Endpoints"))
|
855
855
|
DescribeEndpointsResponse.struct_class = Types::DescribeEndpointsResponse
|
856
856
|
|
857
|
-
DescribeExportInput.add_member(:export_arn, Shapes::ShapeRef.new(shape: ExportArn, required: true, location_name: "ExportArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
857
|
+
DescribeExportInput.add_member(:export_arn, Shapes::ShapeRef.new(shape: ExportArn, required: true, location_name: "ExportArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
858
858
|
DescribeExportInput.struct_class = Types::DescribeExportInput
|
859
859
|
|
860
860
|
DescribeExportOutput.add_member(:export_description, Shapes::ShapeRef.new(shape: ExportDescription, location_name: "ExportDescription"))
|
861
861
|
DescribeExportOutput.struct_class = Types::DescribeExportOutput
|
862
862
|
|
863
|
-
DescribeGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
863
|
+
DescribeGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
864
864
|
DescribeGlobalTableInput.struct_class = Types::DescribeGlobalTableInput
|
865
865
|
|
866
866
|
DescribeGlobalTableOutput.add_member(:global_table_description, Shapes::ShapeRef.new(shape: GlobalTableDescription, location_name: "GlobalTableDescription"))
|
867
867
|
DescribeGlobalTableOutput.struct_class = Types::DescribeGlobalTableOutput
|
868
868
|
|
869
|
-
DescribeGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
869
|
+
DescribeGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
870
870
|
DescribeGlobalTableSettingsInput.struct_class = Types::DescribeGlobalTableSettingsInput
|
871
871
|
|
872
872
|
DescribeGlobalTableSettingsOutput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "GlobalTableName"))
|
873
873
|
DescribeGlobalTableSettingsOutput.add_member(:replica_settings, Shapes::ShapeRef.new(shape: ReplicaSettingsDescriptionList, location_name: "ReplicaSettings"))
|
874
874
|
DescribeGlobalTableSettingsOutput.struct_class = Types::DescribeGlobalTableSettingsOutput
|
875
875
|
|
876
|
-
DescribeImportInput.add_member(:import_arn, Shapes::ShapeRef.new(shape: ImportArn, required: true, location_name: "ImportArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
876
|
+
DescribeImportInput.add_member(:import_arn, Shapes::ShapeRef.new(shape: ImportArn, required: true, location_name: "ImportArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
877
877
|
DescribeImportInput.struct_class = Types::DescribeImportInput
|
878
878
|
|
879
879
|
DescribeImportOutput.add_member(:import_table_description, Shapes::ShapeRef.new(shape: ImportTableDescription, required: true, location_name: "ImportTableDescription"))
|
880
880
|
DescribeImportOutput.struct_class = Types::DescribeImportOutput
|
881
881
|
|
882
|
-
DescribeKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
882
|
+
DescribeKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
883
883
|
DescribeKinesisStreamingDestinationInput.struct_class = Types::DescribeKinesisStreamingDestinationInput
|
884
884
|
|
885
885
|
DescribeKinesisStreamingDestinationOutput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
|
@@ -894,19 +894,19 @@ module Aws::DynamoDB
|
|
894
894
|
DescribeLimitsOutput.add_member(:table_max_write_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "TableMaxWriteCapacityUnits"))
|
895
895
|
DescribeLimitsOutput.struct_class = Types::DescribeLimitsOutput
|
896
896
|
|
897
|
-
DescribeTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
897
|
+
DescribeTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
898
898
|
DescribeTableInput.struct_class = Types::DescribeTableInput
|
899
899
|
|
900
900
|
DescribeTableOutput.add_member(:table, Shapes::ShapeRef.new(shape: TableDescription, location_name: "Table"))
|
901
901
|
DescribeTableOutput.struct_class = Types::DescribeTableOutput
|
902
902
|
|
903
|
-
DescribeTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
903
|
+
DescribeTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
904
904
|
DescribeTableReplicaAutoScalingInput.struct_class = Types::DescribeTableReplicaAutoScalingInput
|
905
905
|
|
906
906
|
DescribeTableReplicaAutoScalingOutput.add_member(:table_auto_scaling_description, Shapes::ShapeRef.new(shape: TableAutoScalingDescription, location_name: "TableAutoScalingDescription"))
|
907
907
|
DescribeTableReplicaAutoScalingOutput.struct_class = Types::DescribeTableReplicaAutoScalingOutput
|
908
908
|
|
909
|
-
DescribeTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
909
|
+
DescribeTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
910
910
|
DescribeTimeToLiveInput.struct_class = Types::DescribeTimeToLiveInput
|
911
911
|
|
912
912
|
DescribeTimeToLiveOutput.add_member(:time_to_live_description, Shapes::ShapeRef.new(shape: TimeToLiveDescription, location_name: "TimeToLiveDescription"))
|
@@ -940,7 +940,7 @@ module Aws::DynamoDB
|
|
940
940
|
ExecuteStatementOutput.struct_class = Types::ExecuteStatementOutput
|
941
941
|
|
942
942
|
ExecuteTransactionInput.add_member(:transact_statements, Shapes::ShapeRef.new(shape: ParameterizedStatements, required: true, location_name: "TransactStatements"))
|
943
|
-
ExecuteTransactionInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
943
|
+
ExecuteTransactionInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken" => true}))
|
944
944
|
ExecuteTransactionInput.add_member(:return_consumed_capacity, Shapes::ShapeRef.new(shape: ReturnConsumedCapacity, location_name: "ReturnConsumedCapacity"))
|
945
945
|
ExecuteTransactionInput.struct_class = Types::ExecuteTransactionInput
|
946
946
|
|
@@ -993,9 +993,9 @@ module Aws::DynamoDB
|
|
993
993
|
ExportSummary.add_member(:export_type, Shapes::ShapeRef.new(shape: ExportType, location_name: "ExportType"))
|
994
994
|
ExportSummary.struct_class = Types::ExportSummary
|
995
995
|
|
996
|
-
ExportTableToPointInTimeInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
996
|
+
ExportTableToPointInTimeInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
997
997
|
ExportTableToPointInTimeInput.add_member(:export_time, Shapes::ShapeRef.new(shape: ExportTime, location_name: "ExportTime"))
|
998
|
-
ExportTableToPointInTimeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
998
|
+
ExportTableToPointInTimeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
999
999
|
ExportTableToPointInTimeInput.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "S3Bucket"))
|
1000
1000
|
ExportTableToPointInTimeInput.add_member(:s3_bucket_owner, Shapes::ShapeRef.new(shape: S3BucketOwner, location_name: "S3BucketOwner"))
|
1001
1001
|
ExportTableToPointInTimeInput.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: S3Prefix, location_name: "S3Prefix"))
|
@@ -1028,7 +1028,7 @@ module Aws::DynamoDB
|
|
1028
1028
|
Get.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
|
1029
1029
|
Get.struct_class = Types::Get
|
1030
1030
|
|
1031
|
-
GetItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1031
|
+
GetItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1032
1032
|
GetItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
|
1033
1033
|
GetItemInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
|
1034
1034
|
GetItemInput.add_member(:consistent_read, Shapes::ShapeRef.new(shape: ConsistentRead, location_name: "ConsistentRead"))
|
@@ -1041,7 +1041,7 @@ module Aws::DynamoDB
|
|
1041
1041
|
GetItemOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacity, location_name: "ConsumedCapacity"))
|
1042
1042
|
GetItemOutput.struct_class = Types::GetItemOutput
|
1043
1043
|
|
1044
|
-
GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1044
|
+
GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1045
1045
|
GetResourcePolicyInput.struct_class = Types::GetResourcePolicyInput
|
1046
1046
|
|
1047
1047
|
GetResourcePolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicy, location_name: "Policy"))
|
@@ -1168,7 +1168,7 @@ module Aws::DynamoDB
|
|
1168
1168
|
ImportTableDescription.add_member(:failure_message, Shapes::ShapeRef.new(shape: FailureMessage, location_name: "FailureMessage"))
|
1169
1169
|
ImportTableDescription.struct_class = Types::ImportTableDescription
|
1170
1170
|
|
1171
|
-
ImportTableInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1171
|
+
ImportTableInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
1172
1172
|
ImportTableInput.add_member(:s3_bucket_source, Shapes::ShapeRef.new(shape: S3BucketSource, required: true, location_name: "S3BucketSource"))
|
1173
1173
|
ImportTableInput.add_member(:input_format, Shapes::ShapeRef.new(shape: InputFormat, required: true, location_name: "InputFormat"))
|
1174
1174
|
ImportTableInput.add_member(:input_format_options, Shapes::ShapeRef.new(shape: InputFormatOptions, location_name: "InputFormatOptions"))
|
@@ -1252,7 +1252,7 @@ module Aws::DynamoDB
|
|
1252
1252
|
|
1253
1253
|
KinesisDataStreamDestinations.member = Shapes::ShapeRef.new(shape: KinesisDataStreamDestination)
|
1254
1254
|
|
1255
|
-
KinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1255
|
+
KinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1256
1256
|
KinesisStreamingDestinationInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, required: true, location_name: "StreamArn"))
|
1257
1257
|
KinesisStreamingDestinationInput.add_member(:enable_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: EnableKinesisStreamingConfiguration, location_name: "EnableKinesisStreamingConfiguration"))
|
1258
1258
|
KinesisStreamingDestinationInput.struct_class = Types::KinesisStreamingDestinationInput
|
@@ -1268,7 +1268,7 @@ module Aws::DynamoDB
|
|
1268
1268
|
|
1269
1269
|
ListAttributeValue.member = Shapes::ShapeRef.new(shape: AttributeValue)
|
1270
1270
|
|
1271
|
-
ListBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1271
|
+
ListBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1272
1272
|
ListBackupsInput.add_member(:limit, Shapes::ShapeRef.new(shape: BackupsInputLimit, location_name: "Limit"))
|
1273
1273
|
ListBackupsInput.add_member(:time_range_lower_bound, Shapes::ShapeRef.new(shape: TimeRangeLowerBound, location_name: "TimeRangeLowerBound"))
|
1274
1274
|
ListBackupsInput.add_member(:time_range_upper_bound, Shapes::ShapeRef.new(shape: TimeRangeUpperBound, location_name: "TimeRangeUpperBound"))
|
@@ -1280,7 +1280,7 @@ module Aws::DynamoDB
|
|
1280
1280
|
ListBackupsOutput.add_member(:last_evaluated_backup_arn, Shapes::ShapeRef.new(shape: BackupArn, location_name: "LastEvaluatedBackupArn"))
|
1281
1281
|
ListBackupsOutput.struct_class = Types::ListBackupsOutput
|
1282
1282
|
|
1283
|
-
ListContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1283
|
+
ListContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1284
1284
|
ListContributorInsightsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
|
1285
1285
|
ListContributorInsightsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListContributorInsightsLimit, location_name: "MaxResults"))
|
1286
1286
|
ListContributorInsightsInput.struct_class = Types::ListContributorInsightsInput
|
@@ -1289,7 +1289,7 @@ module Aws::DynamoDB
|
|
1289
1289
|
ListContributorInsightsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
|
1290
1290
|
ListContributorInsightsOutput.struct_class = Types::ListContributorInsightsOutput
|
1291
1291
|
|
1292
|
-
ListExportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1292
|
+
ListExportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1293
1293
|
ListExportsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListExportsMaxLimit, location_name: "MaxResults"))
|
1294
1294
|
ListExportsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ExportNextToken, location_name: "NextToken"))
|
1295
1295
|
ListExportsInput.struct_class = Types::ListExportsInput
|
@@ -1307,7 +1307,7 @@ module Aws::DynamoDB
|
|
1307
1307
|
ListGlobalTablesOutput.add_member(:last_evaluated_global_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "LastEvaluatedGlobalTableName"))
|
1308
1308
|
ListGlobalTablesOutput.struct_class = Types::ListGlobalTablesOutput
|
1309
1309
|
|
1310
|
-
ListImportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1310
|
+
ListImportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1311
1311
|
ListImportsInput.add_member(:page_size, Shapes::ShapeRef.new(shape: ListImportsMaxLimit, location_name: "PageSize"))
|
1312
1312
|
ListImportsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ImportNextToken, location_name: "NextToken"))
|
1313
1313
|
ListImportsInput.struct_class = Types::ListImportsInput
|
@@ -1324,7 +1324,7 @@ module Aws::DynamoDB
|
|
1324
1324
|
ListTablesOutput.add_member(:last_evaluated_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "LastEvaluatedTableName"))
|
1325
1325
|
ListTablesOutput.struct_class = Types::ListTablesOutput
|
1326
1326
|
|
1327
|
-
ListTagsOfResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1327
|
+
ListTagsOfResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1328
1328
|
ListTagsOfResourceInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
|
1329
1329
|
ListTagsOfResourceInput.struct_class = Types::ListTagsOfResourceInput
|
1330
1330
|
|
@@ -1428,7 +1428,7 @@ module Aws::DynamoDB
|
|
1428
1428
|
Put.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
|
1429
1429
|
Put.struct_class = Types::Put
|
1430
1430
|
|
1431
|
-
PutItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1431
|
+
PutItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1432
1432
|
PutItemInput.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
|
1433
1433
|
PutItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
|
1434
1434
|
PutItemInput.add_member(:return_values, Shapes::ShapeRef.new(shape: ReturnValue, location_name: "ReturnValues"))
|
@@ -1452,7 +1452,7 @@ module Aws::DynamoDB
|
|
1452
1452
|
PutRequest.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
|
1453
1453
|
PutRequest.struct_class = Types::PutRequest
|
1454
1454
|
|
1455
|
-
PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1455
|
+
PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1456
1456
|
PutResourcePolicyInput.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicy, required: true, location_name: "Policy"))
|
1457
1457
|
PutResourcePolicyInput.add_member(:expected_revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "ExpectedRevisionId"))
|
1458
1458
|
PutResourcePolicyInput.add_member(:confirm_remove_self_resource_access, Shapes::ShapeRef.new(shape: ConfirmRemoveSelfResourceAccess, location_name: "ConfirmRemoveSelfResourceAccess"))
|
@@ -1461,7 +1461,7 @@ module Aws::DynamoDB
|
|
1461
1461
|
PutResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
|
1462
1462
|
PutResourcePolicyOutput.struct_class = Types::PutResourcePolicyOutput
|
1463
1463
|
|
1464
|
-
QueryInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1464
|
+
QueryInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1465
1465
|
QueryInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
|
1466
1466
|
QueryInput.add_member(:select, Shapes::ShapeRef.new(shape: Select, location_name: "Select"))
|
1467
1467
|
QueryInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
|
@@ -1628,7 +1628,7 @@ module Aws::DynamoDB
|
|
1628
1628
|
RestoreSummary.add_member(:restore_in_progress, Shapes::ShapeRef.new(shape: RestoreInProgress, required: true, location_name: "RestoreInProgress"))
|
1629
1629
|
RestoreSummary.struct_class = Types::RestoreSummary
|
1630
1630
|
|
1631
|
-
RestoreTableFromBackupInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1631
|
+
RestoreTableFromBackupInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1632
1632
|
RestoreTableFromBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn"))
|
1633
1633
|
RestoreTableFromBackupInput.add_member(:billing_mode_override, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingModeOverride"))
|
1634
1634
|
RestoreTableFromBackupInput.add_member(:global_secondary_index_override, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexOverride"))
|
@@ -1643,7 +1643,7 @@ module Aws::DynamoDB
|
|
1643
1643
|
|
1644
1644
|
RestoreTableToPointInTimeInput.add_member(:source_table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "SourceTableArn"))
|
1645
1645
|
RestoreTableToPointInTimeInput.add_member(:source_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "SourceTableName"))
|
1646
|
-
RestoreTableToPointInTimeInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1646
|
+
RestoreTableToPointInTimeInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1647
1647
|
RestoreTableToPointInTimeInput.add_member(:use_latest_restorable_time, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "UseLatestRestorableTime"))
|
1648
1648
|
RestoreTableToPointInTimeInput.add_member(:restore_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "RestoreDateTime"))
|
1649
1649
|
RestoreTableToPointInTimeInput.add_member(:billing_mode_override, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingModeOverride"))
|
@@ -1673,7 +1673,7 @@ module Aws::DynamoDB
|
|
1673
1673
|
SSESpecification.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
|
1674
1674
|
SSESpecification.struct_class = Types::SSESpecification
|
1675
1675
|
|
1676
|
-
ScanInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1676
|
+
ScanInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1677
1677
|
ScanInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
|
1678
1678
|
ScanInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
|
1679
1679
|
ScanInput.add_member(:limit, Shapes::ShapeRef.new(shape: PositiveIntegerObject, location_name: "Limit"))
|
@@ -1797,7 +1797,7 @@ module Aws::DynamoDB
|
|
1797
1797
|
|
1798
1798
|
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
1799
1799
|
|
1800
|
-
TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1800
|
+
TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1801
1801
|
TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
1802
1802
|
TagResourceInput.struct_class = Types::TagResourceInput
|
1803
1803
|
|
@@ -1833,7 +1833,7 @@ module Aws::DynamoDB
|
|
1833
1833
|
TransactWriteItemsInput.add_member(:transact_items, Shapes::ShapeRef.new(shape: TransactWriteItemList, required: true, location_name: "TransactItems"))
|
1834
1834
|
TransactWriteItemsInput.add_member(:return_consumed_capacity, Shapes::ShapeRef.new(shape: ReturnConsumedCapacity, location_name: "ReturnConsumedCapacity"))
|
1835
1835
|
TransactWriteItemsInput.add_member(:return_item_collection_metrics, Shapes::ShapeRef.new(shape: ReturnItemCollectionMetrics, location_name: "ReturnItemCollectionMetrics"))
|
1836
|
-
TransactWriteItemsInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
1836
|
+
TransactWriteItemsInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken" => true}))
|
1837
1837
|
TransactWriteItemsInput.struct_class = Types::TransactWriteItemsInput
|
1838
1838
|
|
1839
1839
|
TransactWriteItemsOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacityMultiple, location_name: "ConsumedCapacity"))
|
@@ -1850,7 +1850,7 @@ module Aws::DynamoDB
|
|
1850
1850
|
TransactionInProgressException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1851
1851
|
TransactionInProgressException.struct_class = Types::TransactionInProgressException
|
1852
1852
|
|
1853
|
-
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1853
|
+
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1854
1854
|
UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
1855
1855
|
UntagResourceInput.struct_class = Types::UntagResourceInput
|
1856
1856
|
|
@@ -1863,14 +1863,14 @@ module Aws::DynamoDB
|
|
1863
1863
|
Update.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
|
1864
1864
|
Update.struct_class = Types::Update
|
1865
1865
|
|
1866
|
-
UpdateContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1866
|
+
UpdateContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1867
1867
|
UpdateContinuousBackupsInput.add_member(:point_in_time_recovery_specification, Shapes::ShapeRef.new(shape: PointInTimeRecoverySpecification, required: true, location_name: "PointInTimeRecoverySpecification"))
|
1868
1868
|
UpdateContinuousBackupsInput.struct_class = Types::UpdateContinuousBackupsInput
|
1869
1869
|
|
1870
1870
|
UpdateContinuousBackupsOutput.add_member(:continuous_backups_description, Shapes::ShapeRef.new(shape: ContinuousBackupsDescription, location_name: "ContinuousBackupsDescription"))
|
1871
1871
|
UpdateContinuousBackupsOutput.struct_class = Types::UpdateContinuousBackupsOutput
|
1872
1872
|
|
1873
|
-
UpdateContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1873
|
+
UpdateContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1874
1874
|
UpdateContributorInsightsInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
|
1875
1875
|
UpdateContributorInsightsInput.add_member(:contributor_insights_action, Shapes::ShapeRef.new(shape: ContributorInsightsAction, required: true, location_name: "ContributorInsightsAction"))
|
1876
1876
|
UpdateContributorInsightsInput.struct_class = Types::UpdateContributorInsightsInput
|
@@ -1886,14 +1886,14 @@ module Aws::DynamoDB
|
|
1886
1886
|
UpdateGlobalSecondaryIndexAction.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
|
1887
1887
|
UpdateGlobalSecondaryIndexAction.struct_class = Types::UpdateGlobalSecondaryIndexAction
|
1888
1888
|
|
1889
|
-
UpdateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1889
|
+
UpdateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1890
1890
|
UpdateGlobalTableInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicaUpdateList, required: true, location_name: "ReplicaUpdates"))
|
1891
1891
|
UpdateGlobalTableInput.struct_class = Types::UpdateGlobalTableInput
|
1892
1892
|
|
1893
1893
|
UpdateGlobalTableOutput.add_member(:global_table_description, Shapes::ShapeRef.new(shape: GlobalTableDescription, location_name: "GlobalTableDescription"))
|
1894
1894
|
UpdateGlobalTableOutput.struct_class = Types::UpdateGlobalTableOutput
|
1895
1895
|
|
1896
|
-
UpdateGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1896
|
+
UpdateGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1897
1897
|
UpdateGlobalTableSettingsInput.add_member(:global_table_billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "GlobalTableBillingMode"))
|
1898
1898
|
UpdateGlobalTableSettingsInput.add_member(:global_table_provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "GlobalTableProvisionedWriteCapacityUnits"))
|
1899
1899
|
UpdateGlobalTableSettingsInput.add_member(:global_table_provisioned_write_capacity_auto_scaling_settings_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate"))
|
@@ -1905,7 +1905,7 @@ module Aws::DynamoDB
|
|
1905
1905
|
UpdateGlobalTableSettingsOutput.add_member(:replica_settings, Shapes::ShapeRef.new(shape: ReplicaSettingsDescriptionList, location_name: "ReplicaSettings"))
|
1906
1906
|
UpdateGlobalTableSettingsOutput.struct_class = Types::UpdateGlobalTableSettingsOutput
|
1907
1907
|
|
1908
|
-
UpdateItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1908
|
+
UpdateItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1909
1909
|
UpdateItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
|
1910
1910
|
UpdateItemInput.add_member(:attribute_updates, Shapes::ShapeRef.new(shape: AttributeUpdates, location_name: "AttributeUpdates"))
|
1911
1911
|
UpdateItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
|
@@ -1928,7 +1928,7 @@ module Aws::DynamoDB
|
|
1928
1928
|
UpdateKinesisStreamingConfiguration.add_member(:approximate_creation_date_time_precision, Shapes::ShapeRef.new(shape: ApproximateCreationDateTimePrecision, location_name: "ApproximateCreationDateTimePrecision"))
|
1929
1929
|
UpdateKinesisStreamingConfiguration.struct_class = Types::UpdateKinesisStreamingConfiguration
|
1930
1930
|
|
1931
|
-
UpdateKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1931
|
+
UpdateKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1932
1932
|
UpdateKinesisStreamingDestinationInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, required: true, location_name: "StreamArn"))
|
1933
1933
|
UpdateKinesisStreamingDestinationInput.add_member(:update_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: UpdateKinesisStreamingConfiguration, location_name: "UpdateKinesisStreamingConfiguration"))
|
1934
1934
|
UpdateKinesisStreamingDestinationInput.struct_class = Types::UpdateKinesisStreamingDestinationInput
|
@@ -1948,7 +1948,7 @@ module Aws::DynamoDB
|
|
1948
1948
|
UpdateReplicationGroupMemberAction.struct_class = Types::UpdateReplicationGroupMemberAction
|
1949
1949
|
|
1950
1950
|
UpdateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
|
1951
|
-
UpdateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1951
|
+
UpdateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1952
1952
|
UpdateTableInput.add_member(:billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingMode"))
|
1953
1953
|
UpdateTableInput.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
|
1954
1954
|
UpdateTableInput.add_member(:global_secondary_index_updates, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexUpdateList, location_name: "GlobalSecondaryIndexUpdates"))
|
@@ -1966,7 +1966,7 @@ module Aws::DynamoDB
|
|
1966
1966
|
UpdateTableOutput.struct_class = Types::UpdateTableOutput
|
1967
1967
|
|
1968
1968
|
UpdateTableReplicaAutoScalingInput.add_member(:global_secondary_index_updates, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexAutoScalingUpdateList, location_name: "GlobalSecondaryIndexUpdates"))
|
1969
|
-
UpdateTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1969
|
+
UpdateTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1970
1970
|
UpdateTableReplicaAutoScalingInput.add_member(:provisioned_write_capacity_auto_scaling_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "ProvisionedWriteCapacityAutoScalingUpdate"))
|
1971
1971
|
UpdateTableReplicaAutoScalingInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicaAutoScalingUpdateList, location_name: "ReplicaUpdates"))
|
1972
1972
|
UpdateTableReplicaAutoScalingInput.struct_class = Types::UpdateTableReplicaAutoScalingInput
|
@@ -1974,7 +1974,7 @@ module Aws::DynamoDB
|
|
1974
1974
|
UpdateTableReplicaAutoScalingOutput.add_member(:table_auto_scaling_description, Shapes::ShapeRef.new(shape: TableAutoScalingDescription, location_name: "TableAutoScalingDescription"))
|
1975
1975
|
UpdateTableReplicaAutoScalingOutput.struct_class = Types::UpdateTableReplicaAutoScalingOutput
|
1976
1976
|
|
1977
|
-
UpdateTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
|
1977
|
+
UpdateTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam" => {"name" => "ResourceArn"}}))
|
1978
1978
|
UpdateTimeToLiveInput.add_member(:time_to_live_specification, Shapes::ShapeRef.new(shape: TimeToLiveSpecification, required: true, location_name: "TimeToLiveSpecification"))
|
1979
1979
|
UpdateTimeToLiveInput.struct_class = Types::UpdateTimeToLiveInput
|
1980
1980
|
|
@@ -28,7 +28,7 @@ module Aws::DynamoDB
|
|
28
28
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
29
29
|
raise ArgumentError, "Invalid Configuration: Dualstack and local endpoint are not supported"
|
30
30
|
end
|
31
|
-
return Aws::Endpoints::Endpoint.new(url: "http://localhost:8000", headers: {}, properties: {"authSchemes"=>[{"signingRegion"=>"us-east-1", "
|
31
|
+
return Aws::Endpoints::Endpoint.new(url: "http://localhost:8000", headers: {}, properties: {"authSchemes" => [{"signingRegion" => "us-east-1", "name" => "sigv4", "signingName" => "dynamodb"}]}, metadata: { account_id_endpoint: false })
|
32
32
|
end
|
33
33
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true) && Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"), true)
|
@@ -363,6 +363,15 @@ module Aws::DynamoDB
|
|
363
363
|
end
|
364
364
|
end
|
365
365
|
|
366
|
+
class TransactWriteItems
|
367
|
+
def self.build(context)
|
368
|
+
Aws::DynamoDB::EndpointParameters.create(
|
369
|
+
context.config,
|
370
|
+
resource_arn_list: JMESPath.search("transact_items[*].[condition_check.table_name, put.table_name, delete.table_name, update.table_name][]", context.params),
|
371
|
+
)
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
366
375
|
class UntagResource
|
367
376
|
def self.build(context)
|
368
377
|
Aws::DynamoDB::EndpointParameters.create(
|
@@ -534,6 +543,8 @@ module Aws::DynamoDB
|
|
534
543
|
TagResource.build(context)
|
535
544
|
when :transact_get_items
|
536
545
|
TransactGetItems.build(context)
|
546
|
+
when :transact_write_items
|
547
|
+
TransactWriteItems.build(context)
|
537
548
|
when :untag_resource
|
538
549
|
UntagResource.build(context)
|
539
550
|
when :update_continuous_backups
|
@@ -422,7 +422,11 @@ module Aws::DynamoDB
|
|
422
422
|
# attributes provided in `NonKeyAttributes`, summed across all of
|
423
423
|
# the secondary indexes, must not exceed 100. If you project the
|
424
424
|
# same attribute into two different indexes, this counts as two
|
425
|
-
# distinct attributes when determining the total.
|
425
|
+
# distinct attributes when determining the total. This limit only
|
426
|
+
# applies when you specify the ProjectionType of `INCLUDE`. You
|
427
|
+
# still can specify the ProjectionType of `ALL` to project all
|
428
|
+
# attributes from the source table, even if the table has more than
|
429
|
+
# 100 attributes.
|
426
430
|
# @option options [Array<Types::GlobalSecondaryIndex>] :global_secondary_indexes
|
427
431
|
# One or more global secondary indexes (the maximum is 20) to be created
|
428
432
|
# on the table. Each global secondary index in the array includes the
|
@@ -457,7 +461,11 @@ module Aws::DynamoDB
|
|
457
461
|
# attributes provided in `NonKeyAttributes`, summed across all of
|
458
462
|
# the secondary indexes, must not exceed 100. If you project the
|
459
463
|
# same attribute into two different indexes, this counts as two
|
460
|
-
# distinct attributes when determining the total.
|
464
|
+
# distinct attributes when determining the total. This limit only
|
465
|
+
# applies when you specify the ProjectionType of `INCLUDE`. You
|
466
|
+
# still can specify the ProjectionType of `ALL` to project all
|
467
|
+
# attributes from the source table, even if the table has more than
|
468
|
+
# 100 attributes.
|
461
469
|
# * `ProvisionedThroughput` - The provisioned throughput settings for
|
462
470
|
# the global secondary index, consisting of read and write capacity
|
463
471
|
# units.
|
@@ -465,18 +473,19 @@ module Aws::DynamoDB
|
|
465
473
|
# Controls how you are charged for read and write throughput and how you
|
466
474
|
# manage capacity. This setting can be changed later.
|
467
475
|
#
|
468
|
-
# * `
|
469
|
-
# workloads. `
|
470
|
-
# capacity mode][1].
|
476
|
+
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
|
477
|
+
# DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
|
478
|
+
# [On-demand capacity mode][1].
|
471
479
|
#
|
472
|
-
# * `
|
473
|
-
#
|
474
|
-
#
|
480
|
+
# * `PROVISIONED` - We recommend using `PROVISIONED` for steady
|
481
|
+
# workloads with predictable growth where capacity requirements can be
|
482
|
+
# reliably forecasted. `PROVISIONED` sets the billing mode to
|
483
|
+
# [Provisioned capacity mode][2].
|
475
484
|
#
|
476
485
|
#
|
477
486
|
#
|
478
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
479
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
487
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
488
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
480
489
|
# @option options [Types::ProvisionedThroughput] :provisioned_throughput
|
481
490
|
# Represents the provisioned throughput settings for a specified table
|
482
491
|
# or index. The settings can be modified using the `UpdateTable`
|
@@ -195,7 +195,11 @@ module Aws::DynamoDB
|
|
195
195
|
# attributes provided in `NonKeyAttributes`, summed across all of
|
196
196
|
# the secondary indexes, must not exceed 100. If you project the
|
197
197
|
# same attribute into two different indexes, this counts as two
|
198
|
-
# distinct attributes when determining the total.
|
198
|
+
# distinct attributes when determining the total. This limit only
|
199
|
+
# applies when you specify the ProjectionType of `INCLUDE`. You
|
200
|
+
# still can specify the ProjectionType of `ALL` to project all
|
201
|
+
# attributes from the source table, even if the table has more than
|
202
|
+
# 100 attributes.
|
199
203
|
# * `IndexSizeBytes` - Represents the total size of the index, in bytes.
|
200
204
|
# DynamoDB updates this value approximately every six hours. Recent
|
201
205
|
# changes might not be reflected in this value.
|
@@ -273,7 +277,11 @@ module Aws::DynamoDB
|
|
273
277
|
# attributes provided in `NonKeyAttributes`, summed across all of
|
274
278
|
# the secondary indexes, must not exceed 100. If you project the
|
275
279
|
# same attribute into two different indexes, this counts as two
|
276
|
-
# distinct attributes when determining the total.
|
280
|
+
# distinct attributes when determining the total. This limit only
|
281
|
+
# applies when you specify the ProjectionType of `INCLUDE`. You
|
282
|
+
# still can specify the ProjectionType of `ALL` to project all
|
283
|
+
# attributes from the source table, even if the table has more than
|
284
|
+
# 100 attributes.
|
277
285
|
# * `ProvisionedThroughput` - The provisioned throughput settings for
|
278
286
|
# the global secondary index, consisting of read and write capacity
|
279
287
|
# units, along with data about increases and decreases.
|
@@ -1962,18 +1970,19 @@ module Aws::DynamoDB
|
|
1962
1970
|
# and write capacity of your table and global secondary indexes over the
|
1963
1971
|
# past 30 minutes.
|
1964
1972
|
#
|
1965
|
-
# * `
|
1966
|
-
# workloads. `
|
1967
|
-
# capacity mode][1].
|
1973
|
+
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
|
1974
|
+
# DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
|
1975
|
+
# [On-demand capacity mode][1].
|
1968
1976
|
#
|
1969
|
-
# * `
|
1970
|
-
#
|
1971
|
-
#
|
1977
|
+
# * `PROVISIONED` - We recommend using `PROVISIONED` for steady
|
1978
|
+
# workloads with predictable growth where capacity requirements can be
|
1979
|
+
# reliably forecasted. `PROVISIONED` sets the billing mode to
|
1980
|
+
# [Provisioned capacity mode][2].
|
1972
1981
|
#
|
1973
1982
|
#
|
1974
1983
|
#
|
1975
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1976
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1984
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
1985
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1977
1986
|
# @option options [Types::ProvisionedThroughput] :provisioned_throughput
|
1978
1987
|
# The new provisioned throughput settings for the specified table or
|
1979
1988
|
# index.
|
@@ -2046,7 +2055,7 @@ module Aws::DynamoDB
|
|
2046
2055
|
#
|
2047
2056
|
#
|
2048
2057
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ReplicationGroupUpdate.html#DDB-Type-ReplicationGroupUpdate-Create
|
2049
|
-
# [2]: https://docs.aws.amazon.com/
|
2058
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#DDB-UpdateTable-request-ReplicaUpdates
|
2050
2059
|
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/PreviewFeatures.html#multi-region-strong-consistency-gt
|
2051
2060
|
# @option options [Types::OnDemandThroughput] :on_demand_throughput
|
2052
2061
|
# Updates the maximum number of read and write units for the specified
|
@@ -1522,7 +1522,7 @@ module Aws::DynamoDB
|
|
1522
1522
|
include Aws::Structure
|
1523
1523
|
end
|
1524
1524
|
|
1525
|
-
# A condition specified in the operation
|
1525
|
+
# A condition specified in the operation failed to be evaluated.
|
1526
1526
|
#
|
1527
1527
|
# @!attribute [rw] message
|
1528
1528
|
# The conditional request failed.
|
@@ -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
|
@@ -1931,6 +1933,10 @@ module Aws::DynamoDB
|
|
1931
1933
|
# across all of the secondary indexes, must not exceed 100. If you
|
1932
1934
|
# project the same attribute into two different indexes, this
|
1933
1935
|
# counts as two distinct attributes when determining the total.
|
1936
|
+
# This limit only applies when you specify the ProjectionType of
|
1937
|
+
# `INCLUDE`. You still can specify the ProjectionType of `ALL` to
|
1938
|
+
# project all attributes from the source table, even if the table
|
1939
|
+
# has more than 100 attributes.
|
1934
1940
|
# @return [Array<Types::LocalSecondaryIndex>]
|
1935
1941
|
#
|
1936
1942
|
# @!attribute [rw] global_secondary_indexes
|
@@ -1969,6 +1975,10 @@ module Aws::DynamoDB
|
|
1969
1975
|
# across all of the secondary indexes, must not exceed 100. If you
|
1970
1976
|
# project the same attribute into two different indexes, this
|
1971
1977
|
# counts as two distinct attributes when determining the total.
|
1978
|
+
# This limit only applies when you specify the ProjectionType of
|
1979
|
+
# `INCLUDE`. You still can specify the ProjectionType of `ALL` to
|
1980
|
+
# project all attributes from the source table, even if the table
|
1981
|
+
# has more than 100 attributes.
|
1972
1982
|
# * `ProvisionedThroughput` - The provisioned throughput settings for
|
1973
1983
|
# the global secondary index, consisting of read and write capacity
|
1974
1984
|
# units.
|
@@ -1978,18 +1988,19 @@ module Aws::DynamoDB
|
|
1978
1988
|
# Controls how you are charged for read and write throughput and how
|
1979
1989
|
# you manage capacity. This setting can be changed later.
|
1980
1990
|
#
|
1981
|
-
# * `
|
1982
|
-
# workloads. `
|
1983
|
-
# capacity mode][1].
|
1991
|
+
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
|
1992
|
+
# DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
|
1993
|
+
# [On-demand capacity mode][1].
|
1984
1994
|
#
|
1985
|
-
# * `
|
1986
|
-
#
|
1987
|
-
#
|
1995
|
+
# * `PROVISIONED` - We recommend using `PROVISIONED` for steady
|
1996
|
+
# workloads with predictable growth where capacity requirements can
|
1997
|
+
# be reliably forecasted. `PROVISIONED` sets the billing mode to
|
1998
|
+
# [Provisioned capacity mode][2].
|
1988
1999
|
#
|
1989
2000
|
#
|
1990
2001
|
#
|
1991
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
1992
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
2002
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
2003
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
1993
2004
|
# @return [String]
|
1994
2005
|
#
|
1995
2006
|
# @!attribute [rw] provisioned_throughput
|
@@ -4110,7 +4121,8 @@ module Aws::DynamoDB
|
|
4110
4121
|
#
|
4111
4122
|
# @!attribute [rw] provisioned_throughput
|
4112
4123
|
# Represents the provisioned throughput settings for the specified
|
4113
|
-
# global secondary index.
|
4124
|
+
# global secondary index. You must use either `OnDemandThroughput` or
|
4125
|
+
# `ProvisionedThroughput` based on your table's capacity mode.
|
4114
4126
|
#
|
4115
4127
|
# For current minimum and maximum provisioned throughput values, see
|
4116
4128
|
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
@@ -4124,7 +4136,9 @@ module Aws::DynamoDB
|
|
4124
4136
|
# @!attribute [rw] on_demand_throughput
|
4125
4137
|
# The maximum number of read and write units for the specified global
|
4126
4138
|
# secondary index. If you use this parameter, you must specify
|
4127
|
-
# `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both.
|
4139
|
+
# `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both. You must use
|
4140
|
+
# either `OnDemandThroughput` or `ProvisionedThroughput` based on your
|
4141
|
+
# table's capacity mode.
|
4128
4142
|
# @return [Types::OnDemandThroughput]
|
4129
4143
|
#
|
4130
4144
|
# @!attribute [rw] warm_throughput
|
@@ -5857,8 +5871,7 @@ module Aws::DynamoDB
|
|
5857
5871
|
# The number of preceding days for which continuous backups are taken
|
5858
5872
|
# and maintained. Your table data is only recoverable to any
|
5859
5873
|
# point-in-time from within the configured recovery period. This
|
5860
|
-
# parameter is optional.
|
5861
|
-
# default to 35.
|
5874
|
+
# parameter is optional.
|
5862
5875
|
# @return [Integer]
|
5863
5876
|
#
|
5864
5877
|
# @!attribute [rw] earliest_restorable_date_time
|
@@ -5960,10 +5973,14 @@ module Aws::DynamoDB
|
|
5960
5973
|
# Represents the non-key attribute names which will be projected into
|
5961
5974
|
# the index.
|
5962
5975
|
#
|
5963
|
-
# For local secondary indexes, the total count of
|
5964
|
-
# summed across all of the
|
5965
|
-
# 100. If you project the same attribute into two different
|
5966
|
-
# this counts as two distinct attributes when determining the
|
5976
|
+
# For global and local secondary indexes, the total count of
|
5977
|
+
# `NonKeyAttributes` summed across all of the secondary indexes, must
|
5978
|
+
# not exceed 100. If you project the same attribute into two different
|
5979
|
+
# indexes, this counts as two distinct attributes when determining the
|
5980
|
+
# total. This limit only applies when you specify the ProjectionType
|
5981
|
+
# of `INCLUDE`. You still can specify the ProjectionType of `ALL` to
|
5982
|
+
# project all attributes from the source table, even if the table has
|
5983
|
+
# more than 100 attributes.
|
5967
5984
|
# @return [Array<String>]
|
5968
5985
|
#
|
5969
5986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/Projection AWS API Documentation
|
@@ -5975,9 +5992,9 @@ module Aws::DynamoDB
|
|
5975
5992
|
include Aws::Structure
|
5976
5993
|
end
|
5977
5994
|
|
5978
|
-
# Represents the provisioned throughput settings for
|
5979
|
-
#
|
5980
|
-
#
|
5995
|
+
# Represents the provisioned throughput settings for the specified
|
5996
|
+
# global secondary index. You must use `ProvisionedThroughput` or
|
5997
|
+
# `OnDemandThroughput` based on your table’s capacity mode.
|
5981
5998
|
#
|
5982
5999
|
# For current minimum and maximum provisioned throughput values, see
|
5983
6000
|
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
@@ -7665,7 +7682,7 @@ module Aws::DynamoDB
|
|
7665
7682
|
end
|
7666
7683
|
|
7667
7684
|
# Throughput exceeds the current throughput quota for your account.
|
7668
|
-
# Please contact [Amazon Web
|
7685
|
+
# Please contact [Amazon Web ServicesSupport][1] to request a quota
|
7669
7686
|
# increase.
|
7670
7687
|
#
|
7671
7688
|
#
|
@@ -8663,9 +8680,9 @@ module Aws::DynamoDB
|
|
8663
8680
|
# @return [String]
|
8664
8681
|
#
|
8665
8682
|
# @!attribute [rw] provisioned_throughput
|
8666
|
-
# Represents the provisioned throughput settings for
|
8667
|
-
#
|
8668
|
-
#
|
8683
|
+
# Represents the provisioned throughput settings for the specified
|
8684
|
+
# global secondary index. You must use `ProvisionedThroughput` or
|
8685
|
+
# `OnDemandThroughput` based on your table’s capacity mode.
|
8669
8686
|
#
|
8670
8687
|
# For current minimum and maximum provisioned throughput values, see
|
8671
8688
|
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
@@ -8855,6 +8872,10 @@ module Aws::DynamoDB
|
|
8855
8872
|
# across all of the secondary indexes, must not exceed 100. If you
|
8856
8873
|
# project the same attribute into two different indexes, this
|
8857
8874
|
# counts as two distinct attributes when determining the total.
|
8875
|
+
# This limit only applies when you specify the ProjectionType of
|
8876
|
+
# `INCLUDE`. You still can specify the ProjectionType of `ALL` to
|
8877
|
+
# project all attributes from the source table, even if the table
|
8878
|
+
# has more than 100 attributes.
|
8858
8879
|
# * `IndexSizeBytes` - Represents the total size of the index, in
|
8859
8880
|
# bytes. DynamoDB updates this value approximately every six hours.
|
8860
8881
|
# Recent changes might not be reflected in this value.
|
@@ -8932,6 +8953,10 @@ module Aws::DynamoDB
|
|
8932
8953
|
# across all of the secondary indexes, must not exceed 100. If you
|
8933
8954
|
# project the same attribute into two different indexes, this
|
8934
8955
|
# counts as two distinct attributes when determining the total.
|
8956
|
+
# This limit only applies when you specify the ProjectionType of
|
8957
|
+
# `INCLUDE`. You still can specify the ProjectionType of `ALL` to
|
8958
|
+
# project all attributes from the source table, even if the table
|
8959
|
+
# has more than 100 attributes.
|
8935
8960
|
# * `ProvisionedThroughput` - The provisioned throughput settings for
|
8936
8961
|
# the global secondary index, consisting of read and write capacity
|
8937
8962
|
# units, along with data about increases and decreases.
|
@@ -9096,7 +9121,9 @@ module Aws::DynamoDB
|
|
9096
9121
|
end
|
9097
9122
|
|
9098
9123
|
# Represents the warm throughput value (in read units per second and
|
9099
|
-
# write units per second) of the
|
9124
|
+
# write units per second) of the table. Warm throughput is applicable
|
9125
|
+
# for DynamoDB Standard-IA tables and specifies the minimum provisioned
|
9126
|
+
# capacity maintained for immediate data access.
|
9100
9127
|
#
|
9101
9128
|
# @!attribute [rw] read_units_per_second
|
9102
9129
|
# Represents the base table's warm throughput value in read units per
|
@@ -9109,7 +9136,7 @@ module Aws::DynamoDB
|
|
9109
9136
|
# @return [Integer]
|
9110
9137
|
#
|
9111
9138
|
# @!attribute [rw] status
|
9112
|
-
# Represents warm throughput value of the base table
|
9139
|
+
# Represents warm throughput value of the base table.
|
9113
9140
|
# @return [String]
|
9114
9141
|
#
|
9115
9142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableWarmThroughputDescription AWS API Documentation
|
@@ -10471,18 +10498,19 @@ module Aws::DynamoDB
|
|
10471
10498
|
# the consumed read and write capacity of your table and global
|
10472
10499
|
# secondary indexes over the past 30 minutes.
|
10473
10500
|
#
|
10474
|
-
# * `
|
10475
|
-
# workloads. `
|
10476
|
-
# capacity mode][1].
|
10501
|
+
# * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
|
10502
|
+
# DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
|
10503
|
+
# [On-demand capacity mode][1].
|
10477
10504
|
#
|
10478
|
-
# * `
|
10479
|
-
#
|
10480
|
-
#
|
10505
|
+
# * `PROVISIONED` - We recommend using `PROVISIONED` for steady
|
10506
|
+
# workloads with predictable growth where capacity requirements can
|
10507
|
+
# be reliably forecasted. `PROVISIONED` sets the billing mode to
|
10508
|
+
# [Provisioned capacity mode][2].
|
10481
10509
|
#
|
10482
10510
|
#
|
10483
10511
|
#
|
10484
|
-
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
10485
|
-
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/
|
10512
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
|
10513
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
|
10486
10514
|
# @return [String]
|
10487
10515
|
#
|
10488
10516
|
# @!attribute [rw] provisioned_throughput
|
@@ -10574,7 +10602,7 @@ module Aws::DynamoDB
|
|
10574
10602
|
#
|
10575
10603
|
#
|
10576
10604
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ReplicationGroupUpdate.html#DDB-Type-ReplicationGroupUpdate-Create
|
10577
|
-
# [2]: https://docs.aws.amazon.com/
|
10605
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#DDB-UpdateTable-request-ReplicaUpdates
|
10578
10606
|
# [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/PreviewFeatures.html#multi-region-strong-consistency-gt
|
10579
10607
|
# @return [String]
|
10580
10608
|
#
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.144.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -85,7 +84,6 @@ licenses:
|
|
85
84
|
metadata:
|
86
85
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dynamodb
|
87
86
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dynamodb/CHANGELOG.md
|
88
|
-
post_install_message:
|
89
87
|
rdoc_options: []
|
90
88
|
require_paths:
|
91
89
|
- lib
|
@@ -100,8 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
98
|
- !ruby/object:Gem::Version
|
101
99
|
version: '0'
|
102
100
|
requirements: []
|
103
|
-
rubygems_version: 3.
|
104
|
-
signing_key:
|
101
|
+
rubygems_version: 3.6.7
|
105
102
|
specification_version: 4
|
106
103
|
summary: AWS SDK for Ruby - DynamoDB
|
107
104
|
test_files: []
|