aws-sdk-dynamodb 1.65.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3a290497cbf69f567335dc0098525301d3e3b51657b2c54009333c060ce229a
4
- data.tar.gz: e45d36cb0c6fa34f74890f18fc71e0467d236a294a8b8f651690d5fb7dbbde71
3
+ metadata.gz: 691a78a57a50477c14a4e692f5ac79ebc2af49710493a7ad7535cdd9a60f059d
4
+ data.tar.gz: 7ac5c853ce976ac1b8f53515c3cbcd77b80049aa1a0405468758a5af471690f7
5
5
  SHA512:
6
- metadata.gz: 8e58b9707104c7cf1638fc71b12f96dbfe1fe2040d833d0f78c7f476f3c8c3b570351d22388f8db2192d574faed782282e31a39ef3a112c0cd08ef518853f66c
7
- data.tar.gz: d62c7d1ea9f543155ce4d5d2eaaf7ce11ccda7aac1853e028016abdfafdc9d6a97a8a5c78ddea57ab467840ed1e9ab7dacc5a29891ec71fefb07a74d6fdab580
6
+ metadata.gz: 0abab3520f5d91c2965c93da17aa0151c12204058383d0fbcbe4f3e19eeba6fd5d8c8ddcc204b134ce63c5d7bccd2a03b5df88e893da0a90953e8d9525d684c3
7
+ data.tar.gz: c725411979bc819464fcae787da7d21808ccb55d329b167cad17a6ef528b69100edc0b31b4d4e1d2fa447df14d7e2c1594f06de3ccff33f5b6f7c7807907751a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2021-11-11)
5
+ ------------------
6
+
7
+ * Feature - Updated Help section for "dynamodb update-contributor-insights" API
8
+
4
9
  1.65.0 (2021-11-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -365,9 +365,14 @@ module Aws::DynamoDB
365
365
 
366
366
  # @!group API Operations
367
367
 
368
- # This operation allows you to perform batch reads and writes on data
368
+ # This operation allows you to perform batch reads or writes on data
369
369
  # stored in DynamoDB, using PartiQL.
370
370
  #
371
+ # <note markdown="1"> The entire batch must consist of either read statements or write
372
+ # statements, you cannot mix both in one batch.
373
+ #
374
+ # </note>
375
+ #
371
376
  # @option params [required, Array<Types::BatchStatementRequest>] :statements
372
377
  # The list of PartiQL statements representing the batch to run.
373
378
  #
@@ -1109,9 +1114,9 @@ module Aws::DynamoDB
1109
1114
  end
1110
1115
 
1111
1116
  # The `CreateTable` operation adds a new table to your account. In an
1112
- # AWS account, table names must be unique within each Region. That is,
1113
- # you can have two tables with same name if you create the tables in
1114
- # different Regions.
1117
+ # Amazon Web Services account, table names must be unique within each
1118
+ # Region. That is, you can have two tables with same name if you create
1119
+ # the tables in different Regions.
1115
1120
  #
1116
1121
  # `CreateTable` is an asynchronous operation. Upon receiving a
1117
1122
  # `CreateTable` request, DynamoDB immediately returns a response with a
@@ -2465,25 +2470,26 @@ module Aws::DynamoDB
2465
2470
  req.send_request(options)
2466
2471
  end
2467
2472
 
2468
- # Returns the current provisioned-capacity quotas for your AWS account
2469
- # in a Region, both for the Region as a whole and for any one DynamoDB
2470
- # table that you create there.
2471
- #
2472
- # When you establish an AWS account, the account has initial quotas on
2473
- # the maximum read capacity units and write capacity units that you can
2474
- # provision across all of your DynamoDB tables in a given Region. Also,
2475
- # there are per-table quotas that apply when you create a table there.
2476
- # For more information, see [Service, Account, and Table Quotas][1] page
2477
- # in the *Amazon DynamoDB Developer Guide*.
2478
- #
2479
- # Although you can increase these quotas by filing a case at [AWS
2480
- # Support Center][2], obtaining the increase is not instantaneous. The
2481
- # `DescribeLimits` action lets you write code to compare the capacity
2482
- # you are currently using to those quotas imposed by your account so
2483
- # that you have enough time to apply for an increase before you hit a
2484
- # quota.
2485
- #
2486
- # For example, you could use one of the AWS SDKs to do the following:
2473
+ # Returns the current provisioned-capacity quotas for your Amazon Web
2474
+ # Services account in a Region, both for the Region as a whole and for
2475
+ # any one DynamoDB table that you create there.
2476
+ #
2477
+ # When you establish an Amazon Web Services account, the account has
2478
+ # initial quotas on the maximum read capacity units and write capacity
2479
+ # units that you can provision across all of your DynamoDB tables in a
2480
+ # given Region. Also, there are per-table quotas that apply when you
2481
+ # create a table there. For more information, see [Service, Account, and
2482
+ # Table Quotas][1] page in the *Amazon DynamoDB Developer Guide*.
2483
+ #
2484
+ # Although you can increase these quotas by filing a case at [Amazon Web
2485
+ # Services Support Center][2], obtaining the increase is not
2486
+ # instantaneous. The `DescribeLimits` action lets you write code to
2487
+ # compare the capacity you are currently using to those quotas imposed
2488
+ # by your account so that you have enough time to apply for an increase
2489
+ # before you hit a quota.
2490
+ #
2491
+ # For example, you could use one of the Amazon Web Services SDKs to do
2492
+ # the following:
2487
2493
  #
2488
2494
  # 1. Call `DescribeLimits` for a particular Region to obtain your
2489
2495
  # current account quotas on provisioned capacity there.
@@ -2982,6 +2988,18 @@ module Aws::DynamoDB
2982
2988
  # This operation allows you to perform transactional reads or writes on
2983
2989
  # data stored in DynamoDB, using PartiQL.
2984
2990
  #
2991
+ # <note markdown="1"> The entire transaction must consist of either read statements or write
2992
+ # statements, you cannot mix both in one transaction. The EXISTS
2993
+ # function is an exception and can be used to check the condition of
2994
+ # specific attributes of the item in a similar manner to
2995
+ # `ConditionCheck` in the [TransactWriteItems][1] API.
2996
+ #
2997
+ # </note>
2998
+ #
2999
+ #
3000
+ #
3001
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/transaction-apis.html#transaction-apis-txwriteitems
3002
+ #
2985
3003
  # @option params [required, Array<Types::ParameterizedStatement>] :transact_statements
2986
3004
  # The list of PartiQL statements representing the transaction to run.
2987
3005
  #
@@ -3056,8 +3074,8 @@ module Aws::DynamoDB
3056
3074
  # The name of the Amazon S3 bucket to export the snapshot to.
3057
3075
  #
3058
3076
  # @option params [String] :s3_bucket_owner
3059
- # The ID of the AWS account that owns the bucket the export will be
3060
- # stored in.
3077
+ # The ID of the Amazon Web Services account that owns the bucket the
3078
+ # export will be stored in.
3061
3079
  #
3062
3080
  # @option params [String] :s3_prefix
3063
3081
  # The Amazon S3 bucket prefix to use as the file name and path of the
@@ -3069,10 +3087,10 @@ module Aws::DynamoDB
3069
3087
  #
3070
3088
  # * `AES256` - server-side encryption with Amazon S3 managed keys
3071
3089
  #
3072
- # * `KMS` - server-side encryption with AWS KMS managed keys
3090
+ # * `KMS` - server-side encryption with KMS managed keys
3073
3091
  #
3074
3092
  # @option params [String] :s3_sse_kms_key_id
3075
- # The ID of the AWS KMS managed key used to encrypt the S3 bucket where
3093
+ # The ID of the KMS managed key used to encrypt the S3 bucket where
3076
3094
  # export data will be stored (if applicable).
3077
3095
  #
3078
3096
  # @option params [String] :export_format
@@ -3323,10 +3341,11 @@ module Aws::DynamoDB
3323
3341
  req.send_request(options)
3324
3342
  end
3325
3343
 
3326
- # List backups associated with an AWS account. To list backups for a
3327
- # given table, specify `TableName`. `ListBackups` returns a paginated
3328
- # list of results with at most 1 MB worth of items in a page. You can
3329
- # also specify a maximum number of entries to be returned in a page.
3344
+ # List backups associated with an Amazon Web Services account. To list
3345
+ # backups for a given table, specify `TableName`. `ListBackups` returns
3346
+ # a paginated list of results with at most 1 MB worth of items in a
3347
+ # page. You can also specify a maximum number of entries to be returned
3348
+ # in a page.
3330
3349
  #
3331
3350
  # In the request, start time is inclusive, but end time is exclusive.
3332
3351
  # Note that these boundaries are for the time at which the original
@@ -3669,26 +3688,26 @@ module Aws::DynamoDB
3669
3688
  #
3670
3689
  # This topic provides general information about the `PutItem` API.
3671
3690
  #
3672
- # For information on how to call the `PutItem` API using the AWS SDK in
3673
- # specific languages, see the following:
3691
+ # For information on how to call the `PutItem` API using the Amazon Web
3692
+ # Services SDK in specific languages, see the following:
3674
3693
  #
3675
- # * [ PutItem in the AWS Command Line Interface][1]
3694
+ # * [ PutItem in the Command Line Interface][1]
3676
3695
  #
3677
- # * [ PutItem in the AWS SDK for .NET][2]
3696
+ # * [ PutItem in the SDK for .NET][2]
3678
3697
  #
3679
- # * [ PutItem in the AWS SDK for C++][3]
3698
+ # * [ PutItem in the SDK for C++][3]
3680
3699
  #
3681
- # * [ PutItem in the AWS SDK for Go][4]
3700
+ # * [ PutItem in the SDK for Go][4]
3682
3701
  #
3683
- # * [ PutItem in the AWS SDK for Java][5]
3702
+ # * [ PutItem in the SDK for Java][5]
3684
3703
  #
3685
- # * [ PutItem in the AWS SDK for JavaScript][6]
3704
+ # * [ PutItem in the SDK for JavaScript][6]
3686
3705
  #
3687
- # * [ PutItem in the AWS SDK for PHP V3][7]
3706
+ # * [ PutItem in the SDK for PHP V3][7]
3688
3707
  #
3689
- # * [ PutItem in the AWS SDK for Python][8]
3708
+ # * [ PutItem in the SDK for Python (Boto)][8]
3690
3709
  #
3691
- # * [ PutItem in the AWS SDK for Ruby V2][9]
3710
+ # * [ PutItem in the SDK for Ruby V2][9]
3692
3711
  #
3693
3712
  # When you add an item, the primary key attributes are the only required
3694
3713
  # attributes. Attribute values cannot be null.
@@ -3777,6 +3796,8 @@ module Aws::DynamoDB
3777
3796
  # * `ALL_OLD` - If `PutItem` overwrote an attribute name-value pair,
3778
3797
  # then the content of the old item is returned.
3779
3798
  #
3799
+ # The values returned are strongly consistent.
3800
+ #
3780
3801
  # <note markdown="1"> The `ReturnValues` parameter is used by several DynamoDB operations;
3781
3802
  # however, `PutItem` does not recognize any values other than `NONE` or
3782
3803
  # `ALL_OLD`.
@@ -4004,9 +4025,10 @@ module Aws::DynamoDB
4004
4025
  req.send_request(options)
4005
4026
  end
4006
4027
 
4007
- # The `Query` operation finds items based on primary key values. You can
4008
- # query any table or secondary index that has a composite primary key (a
4009
- # partition key and a sort key).
4028
+ # You must provide the name of the partition key attribute and a single
4029
+ # value for that attribute. `Query` returns all items with that
4030
+ # partition key value. Optionally, you can provide a sort key attribute
4031
+ # and use a comparison operator to refine the search results.
4010
4032
  #
4011
4033
  # Use the `KeyConditionExpression` parameter to provide a specific value
4012
4034
  # for the partition key. The `Query` operation will return all of the
@@ -5440,8 +5462,8 @@ module Aws::DynamoDB
5440
5462
  # contain up to 25 `TransactGetItem` objects, each of which contains a
5441
5463
  # `Get` structure that specifies an item to retrieve from a table in the
5442
5464
  # account and Region. A call to `TransactGetItems` cannot retrieve items
5443
- # from tables in more than one AWS account or Region. The aggregate size
5444
- # of the items in the transaction cannot exceed 4 MB.
5465
+ # from tables in more than one Amazon Web Services account or Region.
5466
+ # The aggregate size of the items in the transaction cannot exceed 4 MB.
5445
5467
  #
5446
5468
  # DynamoDB rejects the entire `TransactGetItems` request if any of the
5447
5469
  # following is true:
@@ -5524,10 +5546,10 @@ module Aws::DynamoDB
5524
5546
 
5525
5547
  # `TransactWriteItems` is a synchronous write operation that groups up
5526
5548
  # to 25 action requests. These actions can target items in different
5527
- # tables, but not in different AWS accounts or Regions, and no two
5528
- # actions can target the same item. For example, you cannot both
5529
- # `ConditionCheck` and `Update` the same item. The aggregate size of the
5530
- # items in the transaction cannot exceed 4 MB.
5549
+ # tables, but not in different Amazon Web Services accounts or Regions,
5550
+ # and no two actions can target the same item. For example, you cannot
5551
+ # both `ConditionCheck` and `Update` the same item. The aggregate size
5552
+ # of the items in the transaction cannot exceed 4 MB.
5531
5553
  #
5532
5554
  # The actions are completed atomically so that either all of them
5533
5555
  # succeed, or all of them fail. They are defined by the following
@@ -5584,8 +5606,8 @@ module Aws::DynamoDB
5584
5606
  # An ordered array of up to 25 `TransactWriteItem` objects, each of
5585
5607
  # which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
5586
5608
  # object. These can operate on items in different tables, but the tables
5587
- # must reside in the same AWS account and Region, and no two of them can
5588
- # operate on the same item.
5609
+ # must reside in the same Amazon Web Services account and Region, and no
5610
+ # two of them can operate on the same item.
5589
5611
  #
5590
5612
  # @option params [String] :return_consumed_capacity
5591
5613
  # Determines the level of detail about provisioned throughput
@@ -5831,7 +5853,13 @@ module Aws::DynamoDB
5831
5853
  end
5832
5854
 
5833
5855
  # Updates the status for contributor insights for a specific table or
5834
- # index.
5856
+ # index. CloudWatch Contributor Insights for DynamoDB graphs display the
5857
+ # partition key and (if applicable) sort key of frequently accessed
5858
+ # items and frequently throttled items in plaintext. If you require the
5859
+ # use of AWS Key Management Service (KMS) to encrypt this table’s
5860
+ # partition key and sort key data with an AWS managed key or customer
5861
+ # managed key, you should not enable CloudWatch Contributor Insights for
5862
+ # DynamoDB for this table.
5835
5863
  #
5836
5864
  # @option params [required, String] :table_name
5837
5865
  # The name of the table.
@@ -7130,7 +7158,7 @@ module Aws::DynamoDB
7130
7158
  params: params,
7131
7159
  config: config)
7132
7160
  context[:gem_name] = 'aws-sdk-dynamodb'
7133
- context[:gem_version] = '1.65.0'
7161
+ context[:gem_version] = '1.66.0'
7134
7162
  Seahorse::Client::Request.new(handlers, context)
7135
7163
  end
7136
7164
 
@@ -92,11 +92,11 @@ module Aws::DynamoDB
92
92
  #
93
93
  # * `ACTIVE` - The table is ready for use.
94
94
  #
95
- # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The AWS KMS key used to
96
- # encrypt the table in inaccessible. Table operations may fail due to
97
- # failure to use the AWS KMS key. DynamoDB will initiate the table
98
- # archival process when a table's AWS KMS key remains inaccessible
99
- # for more than seven days.
95
+ # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The KMS key used to encrypt
96
+ # the table in inaccessible. Table operations may fail due to failure
97
+ # to use the KMS key. DynamoDB will initiate the table archival
98
+ # process when a table's KMS key remains inaccessible for more than
99
+ # seven days.
100
100
  #
101
101
  # * `ARCHIVING` - The table is being archived. Operations are not
102
102
  # allowed until archival is complete.
@@ -303,7 +303,7 @@ module Aws::DynamoDB
303
303
  # have the same timestamp. However, the combination of the following
304
304
  # three elements is guaranteed to be unique:
305
305
  #
306
- # * AWS customer ID
306
+ # * Amazon Web Services customer ID
307
307
  #
308
308
  # * Table name
309
309
  #
@@ -321,7 +321,7 @@ module Aws::DynamoDB
321
321
  end
322
322
 
323
323
  # Represents the version of [global tables][1] in use, if the table is
324
- # replicated across AWS Regions.
324
+ # replicated across Amazon Web Services Regions.
325
325
  #
326
326
  #
327
327
  #
@@ -889,6 +889,8 @@ module Aws::DynamoDB
889
889
  # * `ALL_OLD` - If `PutItem` overwrote an attribute name-value pair,
890
890
  # then the content of the old item is returned.
891
891
  #
892
+ # The values returned are strongly consistent.
893
+ #
892
894
  # <note markdown="1"> The `ReturnValues` parameter is used by several DynamoDB operations;
893
895
  # however, `PutItem` does not recognize any values other than `NONE` or
894
896
  # `ALL_OLD`.
@@ -22,7 +22,7 @@ module Aws::DynamoDB
22
22
  # value is:
23
23
  #
24
24
  # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The table was archived due
25
- # to the table's AWS KMS key being inaccessible for more than seven
25
+ # to the table's KMS key being inaccessible for more than seven
26
26
  # days. An On-Demand backup was created at the archival time.
27
27
  #
28
28
  # ^
@@ -625,7 +625,7 @@ module Aws::DynamoDB
625
625
  # you to restore the deleted table to the state it was in just
626
626
  # before the point of deletion.
627
627
  #
628
- # * `AWS_BACKUP` - On-demand backup created by you from AWS Backup
628
+ # * `AWS_BACKUP` - On-demand backup created by you from Backup
629
629
  # service.
630
630
  # @return [String]
631
631
  #
@@ -731,7 +731,7 @@ module Aws::DynamoDB
731
731
  # you to restore the deleted table to the state it was in just
732
732
  # before the point of deletion.
733
733
  #
734
- # * `AWS_BACKUP` - On-demand backup created by you from AWS Backup
734
+ # * `AWS_BACKUP` - On-demand backup created by you from Backup
735
735
  # service.
736
736
  # @return [String]
737
737
  #
@@ -1942,11 +1942,11 @@ module Aws::DynamoDB
1942
1942
  # @return [String]
1943
1943
  #
1944
1944
  # @!attribute [rw] kms_master_key_id
1945
- # The AWS KMS customer master key (CMK) that should be used for AWS
1946
- # KMS encryption in the new replica. To specify a CMK, use its key ID,
1947
- # Amazon Resource Name (ARN), alias name, or alias ARN. Note that you
1948
- # should only provide this parameter if the key is different from the
1949
- # default DynamoDB KMS master key alias/aws/dynamodb.
1945
+ # The KMS key that should be used for KMS encryption in the new
1946
+ # replica. To specify a key, use its key ID, Amazon Resource Name
1947
+ # (ARN), alias name, or alias ARN. Note that you should only provide
1948
+ # this parameter if the key is different from the default DynamoDB KMS
1949
+ # key `alias/aws/dynamodb`.
1950
1950
  # @return [String]
1951
1951
  #
1952
1952
  # @!attribute [rw] provisioned_throughput_override
@@ -2895,11 +2895,11 @@ module Aws::DynamoDB
2895
2895
  # @return [String]
2896
2896
  #
2897
2897
  # @!attribute [rw] contributor_insights_rule_list
2898
- # List of names of the associated Alpine rules.
2898
+ # List of names of the associated contributor insights rules.
2899
2899
  # @return [Array<String>]
2900
2900
  #
2901
2901
  # @!attribute [rw] contributor_insights_status
2902
- # Current Status contributor insights.
2902
+ # Current status of contributor insights.
2903
2903
  # @return [String]
2904
2904
  #
2905
2905
  # @!attribute [rw] last_update_date_time
@@ -2907,7 +2907,7 @@ module Aws::DynamoDB
2907
2907
  # @return [Time]
2908
2908
  #
2909
2909
  # @!attribute [rw] failure_exception
2910
- # Returns information about the last failure that encountered.
2910
+ # Returns information about the last failure that was encountered.
2911
2911
  #
2912
2912
  # The most common exceptions for a FAILED status are:
2913
2913
  #
@@ -3307,7 +3307,7 @@ module Aws::DynamoDB
3307
3307
 
3308
3308
  # @!attribute [rw] items
3309
3309
  # If a read operation was used, this property will contain the result
3310
- # of the reade operation; a map of attribute names and their values.
3310
+ # of the read operation; a map of attribute names and their values.
3311
3311
  # For the write operations this value will be empty.
3312
3312
  # @return [Array<Hash<String,Types::AttributeValue>>]
3313
3313
  #
@@ -3711,8 +3711,8 @@ module Aws::DynamoDB
3711
3711
  # @return [String]
3712
3712
  #
3713
3713
  # @!attribute [rw] s3_bucket_owner
3714
- # The ID of the AWS account that owns the bucket containing the
3715
- # export.
3714
+ # The ID of the Amazon Web Services account that owns the bucket
3715
+ # containing the export.
3716
3716
  # @return [String]
3717
3717
  #
3718
3718
  # @!attribute [rw] s3_prefix
@@ -3726,12 +3726,12 @@ module Aws::DynamoDB
3726
3726
  #
3727
3727
  # * `AES256` - server-side encryption with Amazon S3 managed keys
3728
3728
  #
3729
- # * `KMS` - server-side encryption with AWS KMS managed keys
3729
+ # * `KMS` - server-side encryption with KMS managed keys
3730
3730
  # @return [String]
3731
3731
  #
3732
3732
  # @!attribute [rw] s3_sse_kms_key_id
3733
- # The ID of the AWS KMS managed key used to encrypt the S3 bucket
3734
- # where export data is stored (if applicable).
3733
+ # The ID of the KMS managed key used to encrypt the S3 bucket where
3734
+ # export data is stored (if applicable).
3735
3735
  # @return [String]
3736
3736
  #
3737
3737
  # @!attribute [rw] failure_code
@@ -3862,8 +3862,8 @@ module Aws::DynamoDB
3862
3862
  # @return [String]
3863
3863
  #
3864
3864
  # @!attribute [rw] s3_bucket_owner
3865
- # The ID of the AWS account that owns the bucket the export will be
3866
- # stored in.
3865
+ # The ID of the Amazon Web Services account that owns the bucket the
3866
+ # export will be stored in.
3867
3867
  # @return [String]
3868
3868
  #
3869
3869
  # @!attribute [rw] s3_prefix
@@ -3877,12 +3877,12 @@ module Aws::DynamoDB
3877
3877
  #
3878
3878
  # * `AES256` - server-side encryption with Amazon S3 managed keys
3879
3879
  #
3880
- # * `KMS` - server-side encryption with AWS KMS managed keys
3880
+ # * `KMS` - server-side encryption with KMS managed keys
3881
3881
  # @return [String]
3882
3882
  #
3883
3883
  # @!attribute [rw] s3_sse_kms_key_id
3884
- # The ID of the AWS KMS managed key used to encrypt the S3 bucket
3885
- # where export data will be stored (if applicable).
3884
+ # The ID of the KMS managed key used to encrypt the S3 bucket where
3885
+ # export data will be stored (if applicable).
3886
3886
  # @return [String]
3887
3887
  #
3888
3888
  # @!attribute [rw] export_format
@@ -5857,12 +5857,12 @@ module Aws::DynamoDB
5857
5857
  include Aws::Structure
5858
5858
  end
5859
5859
 
5860
- # Your request rate is too high. The AWS SDKs for DynamoDB automatically
5861
- # retry requests that receive this exception. Your request is eventually
5862
- # successful, unless your retry queue is too large to finish. Reduce the
5863
- # frequency of requests and use exponential backoff. For more
5864
- # information, go to [Error Retries and Exponential Backoff][1] in the
5865
- # *Amazon DynamoDB Developer Guide*.
5860
+ # Your request rate is too high. The Amazon Web Services SDKs for
5861
+ # DynamoDB automatically retry requests that receive this exception.
5862
+ # Your request is eventually successful, unless your retry queue is too
5863
+ # large to finish. Reduce the frequency of requests and use exponential
5864
+ # backoff. For more information, go to [Error Retries and Exponential
5865
+ # Backoff][1] in the *Amazon DynamoDB Developer Guide*.
5866
5866
  #
5867
5867
  #
5868
5868
  #
@@ -6056,6 +6056,8 @@ module Aws::DynamoDB
6056
6056
  # * `ALL_OLD` - If `PutItem` overwrote an attribute name-value pair,
6057
6057
  # then the content of the old item is returned.
6058
6058
  #
6059
+ # The values returned are strongly consistent.
6060
+ #
6059
6061
  # <note markdown="1"> The `ReturnValues` parameter is used by several DynamoDB operations;
6060
6062
  # however, `PutItem` does not recognize any values other than `NONE`
6061
6063
  # or `ALL_OLD`.
@@ -6997,20 +6999,20 @@ module Aws::DynamoDB
6997
6999
  #
6998
7000
  # * `ACTIVE` - The replica is ready for use.
6999
7001
  #
7000
- # * `REGION_DISABLED` - The replica is inaccessible because the AWS
7001
- # Region has been disabled.
7002
+ # * `REGION_DISABLED` - The replica is inaccessible because the Amazon
7003
+ # Web Services Region has been disabled.
7002
7004
  #
7003
- # <note markdown="1"> If the AWS Region remains inaccessible for more than 20 hours,
7004
- # DynamoDB will remove this replica from the replication group. The
7005
- # replica will not be deleted and replication will stop from and to
7006
- # this region.
7005
+ # <note markdown="1"> If the Amazon Web Services Region remains inaccessible for more
7006
+ # than 20 hours, DynamoDB will remove this replica from the
7007
+ # replication group. The replica will not be deleted and replication
7008
+ # will stop from and to this region.
7007
7009
  #
7008
7010
  # </note>
7009
7011
  #
7010
- # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS ` - The AWS KMS key used to
7012
+ # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS ` - The KMS key used to
7011
7013
  # encrypt the table is inaccessible.
7012
7014
  #
7013
- # <note markdown="1"> If the AWS KMS key remains inaccessible for more than 20 hours,
7015
+ # <note markdown="1"> If the KMS key remains inaccessible for more than 20 hours,
7014
7016
  # DynamoDB will remove this replica from the replication group. The
7015
7017
  # replica will not be deleted and replication will stop from and to
7016
7018
  # this region.
@@ -7028,8 +7030,7 @@ module Aws::DynamoDB
7028
7030
  # @return [String]
7029
7031
  #
7030
7032
  # @!attribute [rw] kms_master_key_id
7031
- # The AWS KMS customer master key (CMK) of the replica that will be
7032
- # used for AWS KMS encryption.
7033
+ # The KMS key of the replica that will be used for KMS encryption.
7033
7034
  # @return [String]
7034
7035
  #
7035
7036
  # @!attribute [rw] provisioned_throughput_override
@@ -7580,7 +7581,7 @@ module Aws::DynamoDB
7580
7581
  end
7581
7582
 
7582
7583
  # Throughput exceeds the current throughput quota for your account.
7583
- # Please contact AWS Support at [AWS Support][1] to request a quota
7584
+ # Please contact [Amazon Web Services Support][1] to request a quota
7584
7585
  # increase.
7585
7586
  #
7586
7587
  #
@@ -7916,25 +7917,24 @@ module Aws::DynamoDB
7916
7917
  # @!attribute [rw] sse_type
7917
7918
  # Server-side encryption type. The only supported value is:
7918
7919
  #
7919
- # * `KMS` - Server-side encryption that uses AWS Key Management
7920
- # Service. The key is stored in your account and is managed by AWS
7921
- # KMS (AWS KMS charges apply).
7920
+ # * `KMS` - Server-side encryption that uses Key Management Service.
7921
+ # The key is stored in your account and is managed by KMS (KMS
7922
+ # charges apply).
7922
7923
  #
7923
7924
  # ^
7924
7925
  # @return [String]
7925
7926
  #
7926
7927
  # @!attribute [rw] kms_master_key_arn
7927
- # The AWS KMS customer master key (CMK) ARN used for the AWS KMS
7928
- # encryption.
7928
+ # The KMS key ARN used for the KMS encryption.
7929
7929
  # @return [String]
7930
7930
  #
7931
7931
  # @!attribute [rw] inaccessible_encryption_date_time
7932
7932
  # Indicates the time, in UNIX epoch date format, when DynamoDB
7933
- # detected that the table's AWS KMS key was inaccessible. This
7934
- # attribute will automatically be cleared when DynamoDB detects that
7935
- # the table's AWS KMS key is accessible again. DynamoDB will initiate
7936
- # the table archival process when table's AWS KMS key remains
7937
- # inaccessible for more than seven days from this date.
7933
+ # detected that the table's KMS key was inaccessible. This attribute
7934
+ # will automatically be cleared when DynamoDB detects that the
7935
+ # table's KMS key is accessible again. DynamoDB will initiate the
7936
+ # table archival process when table's KMS key remains inaccessible
7937
+ # for more than seven days from this date.
7938
7938
  # @return [Time]
7939
7939
  #
7940
7940
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/SSEDescription AWS API Documentation
@@ -7960,29 +7960,29 @@ module Aws::DynamoDB
7960
7960
  # }
7961
7961
  #
7962
7962
  # @!attribute [rw] enabled
7963
- # Indicates whether server-side encryption is done using an AWS
7964
- # managed CMK or an AWS owned CMK. If enabled (true), server-side
7965
- # encryption type is set to `KMS` and an AWS managed CMK is used (AWS
7966
- # KMS charges apply). If disabled (false) or not specified,
7967
- # server-side encryption is set to AWS owned CMK.
7963
+ # Indicates whether server-side encryption is done using an Amazon Web
7964
+ # Services managed key or an Amazon Web Services owned key. If enabled
7965
+ # (true), server-side encryption type is set to `KMS` and an Amazon
7966
+ # Web Services managed key is used (KMS charges apply). If disabled
7967
+ # (false) or not specified, server-side encryption is set to Amazon
7968
+ # Web Services owned key.
7968
7969
  # @return [Boolean]
7969
7970
  #
7970
7971
  # @!attribute [rw] sse_type
7971
7972
  # Server-side encryption type. The only supported value is:
7972
7973
  #
7973
- # * `KMS` - Server-side encryption that uses AWS Key Management
7974
- # Service. The key is stored in your account and is managed by AWS
7975
- # KMS (AWS KMS charges apply).
7974
+ # * `KMS` - Server-side encryption that uses Key Management Service.
7975
+ # The key is stored in your account and is managed by KMS (KMS
7976
+ # charges apply).
7976
7977
  #
7977
7978
  # ^
7978
7979
  # @return [String]
7979
7980
  #
7980
7981
  # @!attribute [rw] kms_master_key_id
7981
- # The AWS KMS customer master key (CMK) that should be used for the
7982
- # AWS KMS encryption. To specify a CMK, use its key ID, Amazon
7983
- # Resource Name (ARN), alias name, or alias ARN. Note that you should
7984
- # only provide this parameter if the key is different from the default
7985
- # DynamoDB customer master key alias/aws/dynamodb.
7982
+ # The KMS key that should be used for the KMS encryption. To specify a
7983
+ # key, use its key ID, Amazon Resource Name (ARN), alias name, or
7984
+ # alias ARN. Note that you should only provide this parameter if the
7985
+ # key is different from the default DynamoDB key `alias/aws/dynamodb`.
7986
7986
  # @return [String]
7987
7987
  #
7988
7988
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/SSESpecification AWS API Documentation
@@ -8695,11 +8695,11 @@ module Aws::DynamoDB
8695
8695
  #
8696
8696
  # * `ACTIVE` - The table is ready for use.
8697
8697
  #
8698
- # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The AWS KMS key used to
8698
+ # * `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The KMS key used to
8699
8699
  # encrypt the table in inaccessible. Table operations may fail due
8700
- # to failure to use the AWS KMS key. DynamoDB will initiate the
8701
- # table archival process when a table's AWS KMS key remains
8702
- # inaccessible for more than seven days.
8700
+ # to failure to use the KMS key. DynamoDB will initiate the table
8701
+ # archival process when a table's KMS key remains inaccessible for
8702
+ # more than seven days.
8703
8703
  #
8704
8704
  # * `ARCHIVING` - The table is being archived. Operations are not
8705
8705
  # allowed until archival is complete.
@@ -8886,7 +8886,7 @@ module Aws::DynamoDB
8886
8886
  # might have the same timestamp. However, the combination of the
8887
8887
  # following three elements is guaranteed to be unique:
8888
8888
  #
8889
- # * AWS customer ID
8889
+ # * Amazon Web Services customer ID
8890
8890
  #
8891
8891
  # * Table name
8892
8892
  #
@@ -8900,7 +8900,7 @@ module Aws::DynamoDB
8900
8900
  #
8901
8901
  # @!attribute [rw] global_table_version
8902
8902
  # Represents the version of [global tables][1] in use, if the table is
8903
- # replicated across AWS Regions.
8903
+ # replicated across Amazon Web Services Regions.
8904
8904
  #
8905
8905
  #
8906
8906
  #
@@ -8983,11 +8983,11 @@ module Aws::DynamoDB
8983
8983
  # Describes a tag. A tag is a key-value pair. You can add up to 50 tags
8984
8984
  # to a single DynamoDB table.
8985
8985
  #
8986
- # AWS-assigned tag names and values are automatically assigned the
8987
- # `aws:` prefix, which the user cannot assign. AWS-assigned tag names do
8988
- # not count towards the tag limit of 50. User-assigned tag names have
8989
- # the prefix `user:` in the Cost Allocation Report. You cannot backdate
8990
- # the application of a tag.
8986
+ # Amazon Web Services-assigned tag names and values are automatically
8987
+ # assigned the `aws:` prefix, which the user cannot assign. Amazon Web
8988
+ # Services-assigned tag names do not count towards the tag limit of 50.
8989
+ # User-assigned tag names have the prefix `user:` in the Cost Allocation
8990
+ # Report. You cannot backdate the application of a tag.
8991
8991
  #
8992
8992
  # For an overview on tagging DynamoDB resources, see [Tagging for
8993
8993
  # DynamoDB][1] in the *Amazon DynamoDB Developer Guide*.
@@ -9375,8 +9375,8 @@ module Aws::DynamoDB
9375
9375
  # An ordered array of up to 25 `TransactWriteItem` objects, each of
9376
9376
  # which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
9377
9377
  # object. These can operate on items in different tables, but the
9378
- # tables must reside in the same AWS account and Region, and no two of
9379
- # them can operate on the same item.
9378
+ # tables must reside in the same Amazon Web Services account and
9379
+ # Region, and no two of them can operate on the same item.
9380
9380
  # @return [Array<Types::TransactWriteItem>]
9381
9381
  #
9382
9382
  # @!attribute [rw] return_consumed_capacity
@@ -10545,11 +10545,11 @@ module Aws::DynamoDB
10545
10545
  # @return [String]
10546
10546
  #
10547
10547
  # @!attribute [rw] kms_master_key_id
10548
- # The AWS KMS customer master key (CMK) of the replica that should be
10549
- # used for AWS KMS encryption. To specify a CMK, use its key ID,
10550
- # Amazon Resource Name (ARN), alias name, or alias ARN. Note that you
10551
- # should only provide this parameter if the key is different from the
10552
- # default DynamoDB KMS master key alias/aws/dynamodb.
10548
+ # The KMS key of the replica that should be used for KMS encryption.
10549
+ # To specify a key, use its key ID, Amazon Resource Name (ARN), alias
10550
+ # name, or alias ARN. Note that you should only provide this parameter
10551
+ # if the key is different from the default DynamoDB KMS key
10552
+ # `alias/aws/dynamodb`.
10553
10553
  # @return [String]
10554
10554
  #
10555
10555
  # @!attribute [rw] provisioned_throughput_override
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
50
50
  # @!group service
51
51
  module Aws::DynamoDB
52
52
 
53
- GEM_VERSION = '1.65.0'
53
+ GEM_VERSION = '1.66.0'
54
54
 
55
55
  end
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.65.0
4
+ version: 1.66.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: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2021-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core