aws-sdk-dynamodb 1.29.0 → 1.30.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33abee419a8a73137d1877d52a551e451a24f72d
4
- data.tar.gz: 540b965c956fed4fec7ad42786d27b9f6c83507e
3
+ metadata.gz: b3207999c71fd53f282dbf0c36a44b71fba8effb
4
+ data.tar.gz: fc3f148a737e22420b57c9cefa363ba50c3534aa
5
5
  SHA512:
6
- metadata.gz: 8a207683dc57bf8244ecb15c425d47c385292bc46d9ae198cddef63ecae91f82e7e23c49e8b683ab6e065f9779ce5d9853d4dfa5e8731d28f2371f1923a863c3
7
- data.tar.gz: b741b0cb0ce82939a92dbf8845829df6300d11b75df54ecfbb34cf2ba6024705a75eb6abfd6907b5f50fcc8087fb65d3cce0fb5a8f56fffbe859693393cd1af2
6
+ metadata.gz: 8156d06434b1d5f943321b249486cecfa1607fe76730543dc6354b483505afbe8ef6020c096ffbb813533258cd42759629dfbf225b5e901d230172a428d68fe6
7
+ data.tar.gz: 2692178c7935dbd3e7f349b6b03e6fbfd839b75def670f0d0ce2480c01f5df2a45ca4c978fe2c1a34c1362e065e26616032503cf34c56e5eecb973ff23f0e653
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
44
44
  # @service
45
45
  module Aws::DynamoDB
46
46
 
47
- GEM_VERSION = '1.29.0'
47
+ GEM_VERSION = '1.30.0'
48
48
 
49
49
  end
@@ -5812,7 +5812,7 @@ module Aws::DynamoDB
5812
5812
  params: params,
5813
5813
  config: config)
5814
5814
  context[:gem_name] = 'aws-sdk-dynamodb'
5815
- context[:gem_version] = '1.29.0'
5815
+ context[:gem_version] = '1.30.0'
5816
5816
  Seahorse::Client::Request.new(handlers, context)
5817
5817
  end
5818
5818
 
@@ -5939,7 +5939,7 @@ module Aws::DynamoDB
5939
5939
  #
5940
5940
  #
5941
5941
  #
5942
- # [1]: https://docs.aws.amazon.com/https:/aws.amazon.com/support
5942
+ # [1]: https://aws.amazon.com/support
5943
5943
  #
5944
5944
  # @!attribute [rw] message
5945
5945
  # @return [String]
@@ -6097,32 +6097,26 @@ module Aws::DynamoDB
6097
6097
  # table.
6098
6098
  #
6099
6099
  # @!attribute [rw] status
6100
- # The current state of server-side encryption:
6101
- #
6102
- # * `ENABLING` - Server-side encryption is being enabled.
6100
+ # Represents the current state of server-side encryption. The only
6101
+ # supported values are:
6103
6102
  #
6104
6103
  # * `ENABLED` - Server-side encryption is enabled.
6105
6104
  #
6106
- # * `DISABLING` - Server-side encryption is being disabled.
6107
- #
6108
- # * `DISABLED` - Server-side encryption is disabled.
6109
- #
6110
6105
  # * `UPDATING` - Server-side encryption is being updated.
6111
6106
  # @return [String]
6112
6107
  #
6113
6108
  # @!attribute [rw] sse_type
6114
- # Server-side encryption type:
6115
- #
6116
- # * `AES256` - Server-side encryption which uses the AES256 algorithm
6117
- # (not applicable).
6109
+ # Server-side encryption type. The only supported value is:
6118
6110
  #
6119
6111
  # * `KMS` - Server-side encryption which uses AWS Key Management
6120
6112
  # Service. Key is stored in your account and is managed by AWS KMS
6121
6113
  # (KMS charges apply).
6114
+ #
6115
+ # ^
6122
6116
  # @return [String]
6123
6117
  #
6124
6118
  # @!attribute [rw] kms_master_key_arn
6125
- # The KMS master key ARN used for the KMS encryption.
6119
+ # The KMS customer master key (CMK) ARN used for the KMS encryption.
6126
6120
  # @return [String]
6127
6121
  #
6128
6122
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/SSEDescription AWS API Documentation
@@ -6146,29 +6140,29 @@ module Aws::DynamoDB
6146
6140
  # }
6147
6141
  #
6148
6142
  # @!attribute [rw] enabled
6149
- # Indicates whether server-side encryption is enabled (true) or
6150
- # disabled (false) on the table. If enabled (true), server-side
6151
- # encryption type is set to `KMS`. If disabled (false) or not
6152
- # specified, server-side encryption is set to AWS owned CMK.
6143
+ # Indicates whether server-side encryption is done using an AWS
6144
+ # managed CMK or an AWS owned CMK. If enabled (true), server-side
6145
+ # encryption type is set to `KMS` and an AWS managed CMK is used (AWS
6146
+ # KMS charges apply). If disabled (false) or not specified,
6147
+ # server-side encryption is set to AWS owned CMK.
6153
6148
  # @return [Boolean]
6154
6149
  #
6155
6150
  # @!attribute [rw] sse_type
6156
- # Server-side encryption type:
6157
- #
6158
- # * `AES256` - Server-side encryption which uses the AES256 algorithm
6159
- # (not applicable).
6151
+ # Server-side encryption type. The only supported value is:
6160
6152
  #
6161
6153
  # * `KMS` - Server-side encryption which uses AWS Key Management
6162
6154
  # Service. Key is stored in your account and is managed by AWS KMS
6163
6155
  # (KMS charges apply).
6156
+ #
6157
+ # ^
6164
6158
  # @return [String]
6165
6159
  #
6166
6160
  # @!attribute [rw] kms_master_key_id
6167
- # The KMS Master Key (CMK) which should be used for the KMS
6161
+ # The KMS Customer Master Key (CMK) which should be used for the KMS
6168
6162
  # encryption. To specify a CMK, use its key ID, Amazon Resource Name
6169
6163
  # (ARN), alias name, or alias ARN. Note that you should only provide
6170
- # this parameter if the key is different from the default DynamoDB KMS
6171
- # Master Key alias/aws/dynamodb.
6164
+ # this parameter if the key is different from the default DynamoDB
6165
+ # Customer Master Key alias/aws/dynamodb.
6172
6166
  # @return [String]
6173
6167
  #
6174
6168
  # @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/SSESpecification AWS API Documentation
@@ -7565,9 +7559,9 @@ module Aws::DynamoDB
7565
7559
  include Aws::Structure
7566
7560
  end
7567
7561
 
7568
- # The entire transaction request was rejected.
7562
+ # The entire transaction request was canceled.
7569
7563
  #
7570
- # DynamoDB rejects a `TransactWriteItems` request under the following
7564
+ # DynamoDB cancels a `TransactWriteItems` request under the following
7571
7565
  # circumstances:
7572
7566
  #
7573
7567
  # * A condition in one of the condition expressions is not met.
@@ -7587,7 +7581,7 @@ module Aws::DynamoDB
7587
7581
  #
7588
7582
  # * There is a user error, such as an invalid data format.
7589
7583
  #
7590
- # DynamoDB rejects a `TransactGetItems` request under the following
7584
+ # DynamoDB cancels a `TransactGetItems` request under the following
7591
7585
  # circumstances:
7592
7586
  #
7593
7587
  # * There is an ongoing `TransactGetItems` operation that conflicts with
@@ -7603,6 +7597,122 @@ module Aws::DynamoDB
7603
7597
  #
7604
7598
  # * There is a user error, such as an invalid data format.
7605
7599
  #
7600
+ # <note markdown="1"> If using Java, DynamoDB lists the cancellation reasons on the
7601
+ # `CancellationReasons` property. This property is not set for other
7602
+ # languages. Transaction cancellation reasons are ordered in the order
7603
+ # of requested items, if an item has no error it will have `NONE` code
7604
+ # and `Null` message.
7605
+ #
7606
+ # </note>
7607
+ #
7608
+ # Cancellation reason codes and possible error messages:
7609
+ #
7610
+ # * No Errors:
7611
+ #
7612
+ # * Code: `NONE`
7613
+ #
7614
+ # * Message: `null`
7615
+ #
7616
+ # * Conditional Check Failed:
7617
+ #
7618
+ # * Code: `ConditionalCheckFailed`
7619
+ #
7620
+ # * Message: The conditional request failed.
7621
+ #
7622
+ # * Item Collection Size Limit Exceeded:
7623
+ #
7624
+ # * Code: `ItemCollectionSizeLimitExceeded`
7625
+ #
7626
+ # * Message: Collection size exceeded.
7627
+ #
7628
+ # * Transaction Conflict:
7629
+ #
7630
+ # * Code: `TransactionConflict`
7631
+ #
7632
+ # * Message: Transaction is ongoing for the item.
7633
+ #
7634
+ # * Provisioned Throughput Exceeded:
7635
+ #
7636
+ # * Code: `ProvisionedThroughputExceeded`
7637
+ #
7638
+ # * Messages:
7639
+ #
7640
+ # * The level of configured provisioned throughput for the table was
7641
+ # exceeded. Consider increasing your provisioning level with the
7642
+ # UpdateTable API.
7643
+ #
7644
+ # <note markdown="1"> This Message is received when provisioned throughput is exceeded
7645
+ # is on a provisioned DynamoDB table.
7646
+ #
7647
+ # </note>
7648
+ #
7649
+ # * The level of configured provisioned throughput for one or more
7650
+ # global secondary indexes of the table was exceeded. Consider
7651
+ # increasing your provisioning level for the under-provisioned
7652
+ # global secondary indexes with the UpdateTable API.
7653
+ #
7654
+ # <note markdown="1"> This message is returned when provisioned throughput is exceeded
7655
+ # is on a provisioned GSI.
7656
+ #
7657
+ # </note>
7658
+ #
7659
+ # * Throttling Error:
7660
+ #
7661
+ # * Code: `ThrottlingError`
7662
+ #
7663
+ # * Messages:
7664
+ #
7665
+ # * Throughput exceeds the current capacity of your table or index.
7666
+ # DynamoDB is automatically scaling your table or index so please
7667
+ # try again shortly. If exceptions persist, check if you have a
7668
+ # hot key:
7669
+ # https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-partition-key-design.html.
7670
+ #
7671
+ # <note markdown="1"> This message is returned when writes get throttled on an
7672
+ # On-Demand table as DynamoDB is automatically scaling the table.
7673
+ #
7674
+ # </note>
7675
+ #
7676
+ # * Throughput exceeds the current capacity for one or more global
7677
+ # secondary indexes. DynamoDB is automatically scaling your index
7678
+ # so please try again shortly.
7679
+ #
7680
+ # <note markdown="1"> This message is returned when when writes get throttled on an
7681
+ # On-Demand GSI as DynamoDB is automatically scaling the GSI.
7682
+ #
7683
+ # </note>
7684
+ #
7685
+ # * Validation Error:
7686
+ #
7687
+ # * Code: `ValidationError`
7688
+ #
7689
+ # * Messages:
7690
+ #
7691
+ # * One or more parameter values were invalid.
7692
+ #
7693
+ # * The update expression attempted to update the secondary index
7694
+ # key beyond allowed size limits.
7695
+ #
7696
+ # * The update expression attempted to update the secondary index
7697
+ # key to unsupported type.
7698
+ #
7699
+ # * An operand in the update expression has an incorrect data type.
7700
+ #
7701
+ # * Item size to update has exceeded the maximum allowed size.
7702
+ #
7703
+ # * Number overflow. Attempting to store a number with magnitude
7704
+ # larger than supported range.
7705
+ #
7706
+ # * Type mismatch for attribute to update.
7707
+ #
7708
+ # * Nesting Levels have exceeded supported limits.
7709
+ #
7710
+ # * The document path provided in the update expression is invalid
7711
+ # for update.
7712
+ #
7713
+ # * The provided expression refers to an attribute that does not
7714
+ # exist in the item.
7715
+ #
7606
7716
  # @!attribute [rw] message
7607
7717
  # @return [String]
7608
7718
  #
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.29.0
4
+ version: 1.30.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: 2019-05-21 00:00:00.000000000 Z
11
+ date: 2019-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core