aws-sdk-dynamodb 1.78.0 → 1.80.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.
@@ -48,14 +48,6 @@ module Aws::DynamoDB
48
48
  # Represents an attribute for describing the key schema for the table
49
49
  # and indexes.
50
50
  #
51
- # @note When making an API call, you may pass AttributeDefinition
52
- # data as a hash:
53
- #
54
- # {
55
- # attribute_name: "KeySchemaAttributeName", # required
56
- # attribute_type: "S", # required, accepts S, N, B
57
- # }
58
- #
59
51
  # @!attribute [rw] attribute_name
60
52
  # A name for the attribute.
61
53
  # @return [String]
@@ -91,24 +83,6 @@ module Aws::DynamoDB
91
83
  #
92
84
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes
93
85
  #
94
- # @note When making an API call, you may pass AttributeValue
95
- # data as a hash:
96
- #
97
- # {
98
- # s: "StringAttributeValue",
99
- # n: "NumberAttributeValue",
100
- # b: "data",
101
- # ss: ["StringAttributeValue"],
102
- # ns: ["NumberAttributeValue"],
103
- # bs: ["data"],
104
- # m: {
105
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
106
- # },
107
- # l: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
108
- # null: false,
109
- # bool: false,
110
- # }
111
- #
112
86
  # @!attribute [rw] s
113
87
  # An attribute of type String. For example:
114
88
  #
@@ -210,14 +184,6 @@ module Aws::DynamoDB
210
184
  # be empty. Requests with empty values will be rejected with a
211
185
  # `ValidationException` exception.
212
186
  #
213
- # @note When making an API call, you may pass AttributeValueUpdate
214
- # data as a hash:
215
- #
216
- # {
217
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
218
- # action: "ADD", # accepts ADD, PUT, DELETE
219
- # }
220
- #
221
187
  # @!attribute [rw] value
222
188
  # Represents the data for an attribute.
223
189
  #
@@ -339,19 +305,6 @@ module Aws::DynamoDB
339
305
 
340
306
  # Represents the auto scaling policy to be modified.
341
307
  #
342
- # @note When making an API call, you may pass AutoScalingPolicyUpdate
343
- # data as a hash:
344
- #
345
- # {
346
- # policy_name: "AutoScalingPolicyName",
347
- # target_tracking_scaling_policy_configuration: { # required
348
- # disable_scale_in: false,
349
- # scale_in_cooldown: 1,
350
- # scale_out_cooldown: 1,
351
- # target_value: 1.0, # required
352
- # },
353
- # }
354
- #
355
308
  # @!attribute [rw] policy_name
356
309
  # The name of the scaling policy.
357
310
  # @return [String]
@@ -410,25 +363,6 @@ module Aws::DynamoDB
410
363
  # Represents the auto scaling settings to be modified for a global table
411
364
  # or global secondary index.
412
365
  #
413
- # @note When making an API call, you may pass AutoScalingSettingsUpdate
414
- # data as a hash:
415
- #
416
- # {
417
- # minimum_units: 1,
418
- # maximum_units: 1,
419
- # auto_scaling_disabled: false,
420
- # auto_scaling_role_arn: "AutoScalingRoleArn",
421
- # scaling_policy_update: {
422
- # policy_name: "AutoScalingPolicyName",
423
- # target_tracking_scaling_policy_configuration: { # required
424
- # disable_scale_in: false,
425
- # scale_in_cooldown: 1,
426
- # scale_out_cooldown: 1,
427
- # target_value: 1.0, # required
428
- # },
429
- # },
430
- # }
431
- #
432
366
  # @!attribute [rw] minimum_units
433
367
  # The minimum capacity units that a global table or global secondary
434
368
  # index should be scaled down to.
@@ -514,16 +448,6 @@ module Aws::DynamoDB
514
448
  # Represents the settings of a target tracking scaling policy that will
515
449
  # be modified.
516
450
  #
517
- # @note When making an API call, you may pass AutoScalingTargetTrackingScalingPolicyConfigurationUpdate
518
- # data as a hash:
519
- #
520
- # {
521
- # disable_scale_in: false,
522
- # scale_in_cooldown: 1,
523
- # scale_out_cooldown: 1,
524
- # target_value: 1.0, # required
525
- # }
526
- #
527
451
  # @!attribute [rw] disable_scale_in
528
452
  # Indicates whether scale in by the target tracking policy is
529
453
  # disabled. If the value is true, scale in is disabled and the target
@@ -757,20 +681,6 @@ module Aws::DynamoDB
757
681
  include Aws::Structure
758
682
  end
759
683
 
760
- # @note When making an API call, you may pass BatchExecuteStatementInput
761
- # data as a hash:
762
- #
763
- # {
764
- # statements: [ # required
765
- # {
766
- # statement: "PartiQLStatement", # required
767
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
768
- # consistent_read: false,
769
- # },
770
- # ],
771
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
772
- # }
773
- #
774
684
  # @!attribute [rw] statements
775
685
  # The list of PartiQL statements representing the batch to run.
776
686
  # @return [Array<Types::BatchStatementRequest>]
@@ -824,28 +734,6 @@ module Aws::DynamoDB
824
734
 
825
735
  # Represents the input of a `BatchGetItem` operation.
826
736
  #
827
- # @note When making an API call, you may pass BatchGetItemInput
828
- # data as a hash:
829
- #
830
- # {
831
- # request_items: { # required
832
- # "TableName" => {
833
- # keys: [ # required
834
- # {
835
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
836
- # },
837
- # ],
838
- # attributes_to_get: ["AttributeName"],
839
- # consistent_read: false,
840
- # projection_expression: "ProjectionExpression",
841
- # expression_attribute_names: {
842
- # "ExpressionAttributeNameVariable" => "AttributeName",
843
- # },
844
- # },
845
- # },
846
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
847
- # }
848
- #
849
737
  # @!attribute [rw] request_items
850
738
  # A map of one or more table names and, for each table, a map that
851
739
  # describes one or more items to retrieve from that table. Each table
@@ -1040,15 +928,6 @@ module Aws::DynamoDB
1040
928
 
1041
929
  # A PartiQL batch statement request.
1042
930
  #
1043
- # @note When making an API call, you may pass BatchStatementRequest
1044
- # data as a hash:
1045
- #
1046
- # {
1047
- # statement: "PartiQLStatement", # required
1048
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1049
- # consistent_read: false,
1050
- # }
1051
- #
1052
931
  # @!attribute [rw] statement
1053
932
  # A valid PartiQL statement.
1054
933
  # @return [String]
@@ -1098,30 +977,6 @@ module Aws::DynamoDB
1098
977
 
1099
978
  # Represents the input of a `BatchWriteItem` operation.
1100
979
  #
1101
- # @note When making an API call, you may pass BatchWriteItemInput
1102
- # data as a hash:
1103
- #
1104
- # {
1105
- # request_items: { # required
1106
- # "TableName" => [
1107
- # {
1108
- # put_request: {
1109
- # item: { # required
1110
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1111
- # },
1112
- # },
1113
- # delete_request: {
1114
- # key: { # required
1115
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1116
- # },
1117
- # },
1118
- # },
1119
- # ],
1120
- # },
1121
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
1122
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
1123
- # }
1124
- #
1125
980
  # @!attribute [rw] request_items
1126
981
  # A map of one or more table names and, for each table, a list of
1127
982
  # operations to be performed (`DeleteRequest` or `PutRequest`). Each
@@ -1200,7 +1055,7 @@ module Aws::DynamoDB
1200
1055
  # A map of tables and requests against those tables that were not
1201
1056
  # processed. The `UnprocessedItems` value is in the same form as
1202
1057
  # `RequestItems`, so you can provide this value directly to a
1203
- # subsequent `BatchGetItem` operation. For more information, see
1058
+ # subsequent `BatchWriteItem` operation. For more information, see
1204
1059
  # `RequestItems` in the Request Parameters section.
1205
1060
  #
1206
1061
  # Each `UnprocessedItems` entry consists of a table name and, for that
@@ -1279,7 +1134,18 @@ module Aws::DynamoDB
1279
1134
  include Aws::Structure
1280
1135
  end
1281
1136
 
1282
- # Contains the details for the read/write capacity mode.
1137
+ # Contains the details for the read/write capacity mode. This page talks
1138
+ # about `PROVISIONED` and `PAY_PER_REQUEST` billing modes. For more
1139
+ # information about these modes, see [Read/write capacity mode][1].
1140
+ #
1141
+ # <note markdown="1"> You may need to switch to on-demand mode at least once in order to
1142
+ # return a `BillingModeSummary` response.
1143
+ #
1144
+ # </note>
1145
+ #
1146
+ #
1147
+ #
1148
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html
1283
1149
  #
1284
1150
  # @!attribute [rw] billing_mode
1285
1151
  # Controls how you are charged for read and write throughput and how
@@ -1378,14 +1244,6 @@ module Aws::DynamoDB
1378
1244
  # * For a `Scan` operation, `Condition` is used in a `ScanFilter`, which
1379
1245
  # evaluates the scan results and returns only the desired values.
1380
1246
  #
1381
- # @note When making an API call, you may pass Condition
1382
- # data as a hash:
1383
- #
1384
- # {
1385
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1386
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
1387
- # }
1388
- #
1389
1247
  # @!attribute [rw] attribute_value_list
1390
1248
  # One or more values to evaluate against the supplied attribute. The
1391
1249
  # number of values in the list depends on the `ComparisonOperator`
@@ -1593,24 +1451,6 @@ module Aws::DynamoDB
1593
1451
  # Represents a request to perform a check that an item exists or to
1594
1452
  # check the condition of specific attributes of the item.
1595
1453
  #
1596
- # @note When making an API call, you may pass ConditionCheck
1597
- # data as a hash:
1598
- #
1599
- # {
1600
- # key: { # required
1601
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1602
- # },
1603
- # table_name: "TableName", # required
1604
- # condition_expression: "ConditionExpression", # required
1605
- # expression_attribute_names: {
1606
- # "ExpressionAttributeNameVariable" => "AttributeName",
1607
- # },
1608
- # expression_attribute_values: {
1609
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1610
- # },
1611
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
1612
- # }
1613
- #
1614
1454
  # @!attribute [rw] key
1615
1455
  # The primary key of the item to be checked. Each element consists of
1616
1456
  # an attribute name and a value for that attribute.
@@ -1784,14 +1624,6 @@ module Aws::DynamoDB
1784
1624
  include Aws::Structure
1785
1625
  end
1786
1626
 
1787
- # @note When making an API call, you may pass CreateBackupInput
1788
- # data as a hash:
1789
- #
1790
- # {
1791
- # table_name: "TableName", # required
1792
- # backup_name: "BackupName", # required
1793
- # }
1794
- #
1795
1627
  # @!attribute [rw] table_name
1796
1628
  # The name of the table.
1797
1629
  # @return [String]
@@ -1824,27 +1656,6 @@ module Aws::DynamoDB
1824
1656
  # Represents a new global secondary index to be added to an existing
1825
1657
  # table.
1826
1658
  #
1827
- # @note When making an API call, you may pass CreateGlobalSecondaryIndexAction
1828
- # data as a hash:
1829
- #
1830
- # {
1831
- # index_name: "IndexName", # required
1832
- # key_schema: [ # required
1833
- # {
1834
- # attribute_name: "KeySchemaAttributeName", # required
1835
- # key_type: "HASH", # required, accepts HASH, RANGE
1836
- # },
1837
- # ],
1838
- # projection: { # required
1839
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
1840
- # non_key_attributes: ["NonKeyAttributeName"],
1841
- # },
1842
- # provisioned_throughput: {
1843
- # read_capacity_units: 1, # required
1844
- # write_capacity_units: 1, # required
1845
- # },
1846
- # }
1847
- #
1848
1659
  # @!attribute [rw] index_name
1849
1660
  # The name of the global secondary index to be created.
1850
1661
  # @return [String]
@@ -1883,18 +1694,6 @@ module Aws::DynamoDB
1883
1694
  include Aws::Structure
1884
1695
  end
1885
1696
 
1886
- # @note When making an API call, you may pass CreateGlobalTableInput
1887
- # data as a hash:
1888
- #
1889
- # {
1890
- # global_table_name: "TableName", # required
1891
- # replication_group: [ # required
1892
- # {
1893
- # region_name: "RegionName",
1894
- # },
1895
- # ],
1896
- # }
1897
- #
1898
1697
  # @!attribute [rw] global_table_name
1899
1698
  # The global table name.
1900
1699
  # @return [String]
@@ -1926,13 +1725,6 @@ module Aws::DynamoDB
1926
1725
 
1927
1726
  # Represents a replica to be added.
1928
1727
  #
1929
- # @note When making an API call, you may pass CreateReplicaAction
1930
- # data as a hash:
1931
- #
1932
- # {
1933
- # region_name: "RegionName", # required
1934
- # }
1935
- #
1936
1728
  # @!attribute [rw] region_name
1937
1729
  # The Region of the replica to be added.
1938
1730
  # @return [String]
@@ -1947,26 +1739,6 @@ module Aws::DynamoDB
1947
1739
 
1948
1740
  # Represents a replica to be created.
1949
1741
  #
1950
- # @note When making an API call, you may pass CreateReplicationGroupMemberAction
1951
- # data as a hash:
1952
- #
1953
- # {
1954
- # region_name: "RegionName", # required
1955
- # kms_master_key_id: "KMSMasterKeyId",
1956
- # provisioned_throughput_override: {
1957
- # read_capacity_units: 1,
1958
- # },
1959
- # global_secondary_indexes: [
1960
- # {
1961
- # index_name: "IndexName", # required
1962
- # provisioned_throughput_override: {
1963
- # read_capacity_units: 1,
1964
- # },
1965
- # },
1966
- # ],
1967
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
1968
- # }
1969
- #
1970
1742
  # @!attribute [rw] region_name
1971
1743
  # The Region where the new replica will be created.
1972
1744
  # @return [String]
@@ -2007,80 +1779,6 @@ module Aws::DynamoDB
2007
1779
 
2008
1780
  # Represents the input of a `CreateTable` operation.
2009
1781
  #
2010
- # @note When making an API call, you may pass CreateTableInput
2011
- # data as a hash:
2012
- #
2013
- # {
2014
- # attribute_definitions: [ # required
2015
- # {
2016
- # attribute_name: "KeySchemaAttributeName", # required
2017
- # attribute_type: "S", # required, accepts S, N, B
2018
- # },
2019
- # ],
2020
- # table_name: "TableName", # required
2021
- # key_schema: [ # required
2022
- # {
2023
- # attribute_name: "KeySchemaAttributeName", # required
2024
- # key_type: "HASH", # required, accepts HASH, RANGE
2025
- # },
2026
- # ],
2027
- # local_secondary_indexes: [
2028
- # {
2029
- # index_name: "IndexName", # required
2030
- # key_schema: [ # required
2031
- # {
2032
- # attribute_name: "KeySchemaAttributeName", # required
2033
- # key_type: "HASH", # required, accepts HASH, RANGE
2034
- # },
2035
- # ],
2036
- # projection: { # required
2037
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
2038
- # non_key_attributes: ["NonKeyAttributeName"],
2039
- # },
2040
- # },
2041
- # ],
2042
- # global_secondary_indexes: [
2043
- # {
2044
- # index_name: "IndexName", # required
2045
- # key_schema: [ # required
2046
- # {
2047
- # attribute_name: "KeySchemaAttributeName", # required
2048
- # key_type: "HASH", # required, accepts HASH, RANGE
2049
- # },
2050
- # ],
2051
- # projection: { # required
2052
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
2053
- # non_key_attributes: ["NonKeyAttributeName"],
2054
- # },
2055
- # provisioned_throughput: {
2056
- # read_capacity_units: 1, # required
2057
- # write_capacity_units: 1, # required
2058
- # },
2059
- # },
2060
- # ],
2061
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
2062
- # provisioned_throughput: {
2063
- # read_capacity_units: 1, # required
2064
- # write_capacity_units: 1, # required
2065
- # },
2066
- # stream_specification: {
2067
- # stream_enabled: false, # required
2068
- # stream_view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES, KEYS_ONLY
2069
- # },
2070
- # sse_specification: {
2071
- # enabled: false,
2072
- # sse_type: "AES256", # accepts AES256, KMS
2073
- # kms_master_key_id: "KMSMasterKeyId",
2074
- # },
2075
- # tags: [
2076
- # {
2077
- # key: "TagKeyString", # required
2078
- # value: "TagValueString", # required
2079
- # },
2080
- # ],
2081
- # table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
2082
- # }
2083
- #
2084
1782
  # @!attribute [rw] attribute_definitions
2085
1783
  # An array of attributes that describe the key schema for the table
2086
1784
  # and indexes.
@@ -2333,14 +2031,6 @@ module Aws::DynamoDB
2333
2031
 
2334
2032
  # Processing options for the CSV file being imported.
2335
2033
  #
2336
- # @note When making an API call, you may pass CsvOptions
2337
- # data as a hash:
2338
- #
2339
- # {
2340
- # delimiter: "CsvDelimiter",
2341
- # header_list: ["CsvHeader"],
2342
- # }
2343
- #
2344
2034
  # @!attribute [rw] delimiter
2345
2035
  # The delimiter used for separating items in the CSV file being
2346
2036
  # imported.
@@ -2365,24 +2055,6 @@ module Aws::DynamoDB
2365
2055
 
2366
2056
  # Represents a request to perform a `DeleteItem` operation.
2367
2057
  #
2368
- # @note When making an API call, you may pass Delete
2369
- # data as a hash:
2370
- #
2371
- # {
2372
- # key: { # required
2373
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2374
- # },
2375
- # table_name: "TableName", # required
2376
- # condition_expression: "ConditionExpression",
2377
- # expression_attribute_names: {
2378
- # "ExpressionAttributeNameVariable" => "AttributeName",
2379
- # },
2380
- # expression_attribute_values: {
2381
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2382
- # },
2383
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
2384
- # }
2385
- #
2386
2058
  # @!attribute [rw] key
2387
2059
  # The primary key of the item to be deleted. Each element consists of
2388
2060
  # an attribute name and a value for that attribute.
@@ -2426,13 +2098,6 @@ module Aws::DynamoDB
2426
2098
  include Aws::Structure
2427
2099
  end
2428
2100
 
2429
- # @note When making an API call, you may pass DeleteBackupInput
2430
- # data as a hash:
2431
- #
2432
- # {
2433
- # backup_arn: "BackupArn", # required
2434
- # }
2435
- #
2436
2101
  # @!attribute [rw] backup_arn
2437
2102
  # The ARN associated with the backup.
2438
2103
  # @return [String]
@@ -2460,13 +2125,6 @@ module Aws::DynamoDB
2460
2125
  # Represents a global secondary index to be deleted from an existing
2461
2126
  # table.
2462
2127
  #
2463
- # @note When making an API call, you may pass DeleteGlobalSecondaryIndexAction
2464
- # data as a hash:
2465
- #
2466
- # {
2467
- # index_name: "IndexName", # required
2468
- # }
2469
- #
2470
2128
  # @!attribute [rw] index_name
2471
2129
  # The name of the global secondary index to be deleted.
2472
2130
  # @return [String]
@@ -2481,35 +2139,6 @@ module Aws::DynamoDB
2481
2139
 
2482
2140
  # Represents the input of a `DeleteItem` operation.
2483
2141
  #
2484
- # @note When making an API call, you may pass DeleteItemInput
2485
- # data as a hash:
2486
- #
2487
- # {
2488
- # table_name: "TableName", # required
2489
- # key: { # required
2490
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2491
- # },
2492
- # expected: {
2493
- # "AttributeName" => {
2494
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2495
- # exists: false,
2496
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
2497
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2498
- # },
2499
- # },
2500
- # conditional_operator: "AND", # accepts AND, OR
2501
- # return_values: "NONE", # accepts NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW
2502
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
2503
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
2504
- # condition_expression: "ConditionExpression",
2505
- # expression_attribute_names: {
2506
- # "ExpressionAttributeNameVariable" => "AttributeName",
2507
- # },
2508
- # expression_attribute_values: {
2509
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2510
- # },
2511
- # }
2512
- #
2513
2142
  # @!attribute [rw] table_name
2514
2143
  # The name of the table from which to delete the item.
2515
2144
  # @return [String]
@@ -2775,13 +2404,6 @@ module Aws::DynamoDB
2775
2404
 
2776
2405
  # Represents a replica to be removed.
2777
2406
  #
2778
- # @note When making an API call, you may pass DeleteReplicaAction
2779
- # data as a hash:
2780
- #
2781
- # {
2782
- # region_name: "RegionName", # required
2783
- # }
2784
- #
2785
2407
  # @!attribute [rw] region_name
2786
2408
  # The Region of the replica to be removed.
2787
2409
  # @return [String]
@@ -2796,13 +2418,6 @@ module Aws::DynamoDB
2796
2418
 
2797
2419
  # Represents a replica to be deleted.
2798
2420
  #
2799
- # @note When making an API call, you may pass DeleteReplicationGroupMemberAction
2800
- # data as a hash:
2801
- #
2802
- # {
2803
- # region_name: "RegionName", # required
2804
- # }
2805
- #
2806
2421
  # @!attribute [rw] region_name
2807
2422
  # The Region where the replica exists.
2808
2423
  # @return [String]
@@ -2817,15 +2432,6 @@ module Aws::DynamoDB
2817
2432
 
2818
2433
  # Represents a request to perform a `DeleteItem` operation on an item.
2819
2434
  #
2820
- # @note When making an API call, you may pass DeleteRequest
2821
- # data as a hash:
2822
- #
2823
- # {
2824
- # key: { # required
2825
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2826
- # },
2827
- # }
2828
- #
2829
2435
  # @!attribute [rw] key
2830
2436
  # A map of attribute name to attribute values, representing the
2831
2437
  # primary key of the item to delete. All of the table's primary key
@@ -2843,13 +2449,6 @@ module Aws::DynamoDB
2843
2449
 
2844
2450
  # Represents the input of a `DeleteTable` operation.
2845
2451
  #
2846
- # @note When making an API call, you may pass DeleteTableInput
2847
- # data as a hash:
2848
- #
2849
- # {
2850
- # table_name: "TableName", # required
2851
- # }
2852
- #
2853
2452
  # @!attribute [rw] table_name
2854
2453
  # The name of the table to delete.
2855
2454
  # @return [String]
@@ -2876,13 +2475,6 @@ module Aws::DynamoDB
2876
2475
  include Aws::Structure
2877
2476
  end
2878
2477
 
2879
- # @note When making an API call, you may pass DescribeBackupInput
2880
- # data as a hash:
2881
- #
2882
- # {
2883
- # backup_arn: "BackupArn", # required
2884
- # }
2885
- #
2886
2478
  # @!attribute [rw] backup_arn
2887
2479
  # The Amazon Resource Name (ARN) associated with the backup.
2888
2480
  # @return [String]
@@ -2907,13 +2499,6 @@ module Aws::DynamoDB
2907
2499
  include Aws::Structure
2908
2500
  end
2909
2501
 
2910
- # @note When making an API call, you may pass DescribeContinuousBackupsInput
2911
- # data as a hash:
2912
- #
2913
- # {
2914
- # table_name: "TableName", # required
2915
- # }
2916
- #
2917
2502
  # @!attribute [rw] table_name
2918
2503
  # Name of the table for which the customer wants to check the
2919
2504
  # continuous backups and point in time recovery settings.
@@ -2940,14 +2525,6 @@ module Aws::DynamoDB
2940
2525
  include Aws::Structure
2941
2526
  end
2942
2527
 
2943
- # @note When making an API call, you may pass DescribeContributorInsightsInput
2944
- # data as a hash:
2945
- #
2946
- # {
2947
- # table_name: "TableName", # required
2948
- # index_name: "IndexName",
2949
- # }
2950
- #
2951
2528
  # @!attribute [rw] table_name
2952
2529
  # The name of the table to describe.
2953
2530
  # @return [String]
@@ -3036,13 +2613,6 @@ module Aws::DynamoDB
3036
2613
  include Aws::Structure
3037
2614
  end
3038
2615
 
3039
- # @note When making an API call, you may pass DescribeExportInput
3040
- # data as a hash:
3041
- #
3042
- # {
3043
- # export_arn: "ExportArn", # required
3044
- # }
3045
- #
3046
2616
  # @!attribute [rw] export_arn
3047
2617
  # The Amazon Resource Name (ARN) associated with the export.
3048
2618
  # @return [String]
@@ -3067,13 +2637,6 @@ module Aws::DynamoDB
3067
2637
  include Aws::Structure
3068
2638
  end
3069
2639
 
3070
- # @note When making an API call, you may pass DescribeGlobalTableInput
3071
- # data as a hash:
3072
- #
3073
- # {
3074
- # global_table_name: "TableName", # required
3075
- # }
3076
- #
3077
2640
  # @!attribute [rw] global_table_name
3078
2641
  # The name of the global table.
3079
2642
  # @return [String]
@@ -3098,13 +2661,6 @@ module Aws::DynamoDB
3098
2661
  include Aws::Structure
3099
2662
  end
3100
2663
 
3101
- # @note When making an API call, you may pass DescribeGlobalTableSettingsInput
3102
- # data as a hash:
3103
- #
3104
- # {
3105
- # global_table_name: "TableName", # required
3106
- # }
3107
- #
3108
2664
  # @!attribute [rw] global_table_name
3109
2665
  # The name of the global table to describe.
3110
2666
  # @return [String]
@@ -3134,13 +2690,6 @@ module Aws::DynamoDB
3134
2690
  include Aws::Structure
3135
2691
  end
3136
2692
 
3137
- # @note When making an API call, you may pass DescribeImportInput
3138
- # data as a hash:
3139
- #
3140
- # {
3141
- # import_arn: "ImportArn", # required
3142
- # }
3143
- #
3144
2693
  # @!attribute [rw] import_arn
3145
2694
  # The Amazon Resource Name (ARN) associated with the table you're
3146
2695
  # importing to.
@@ -3169,13 +2718,6 @@ module Aws::DynamoDB
3169
2718
  include Aws::Structure
3170
2719
  end
3171
2720
 
3172
- # @note When making an API call, you may pass DescribeKinesisStreamingDestinationInput
3173
- # data as a hash:
3174
- #
3175
- # {
3176
- # table_name: "TableName", # required
3177
- # }
3178
- #
3179
2721
  # @!attribute [rw] table_name
3180
2722
  # The name of the table being described.
3181
2723
  # @return [String]
@@ -3252,13 +2794,6 @@ module Aws::DynamoDB
3252
2794
 
3253
2795
  # Represents the input of a `DescribeTable` operation.
3254
2796
  #
3255
- # @note When making an API call, you may pass DescribeTableInput
3256
- # data as a hash:
3257
- #
3258
- # {
3259
- # table_name: "TableName", # required
3260
- # }
3261
- #
3262
2797
  # @!attribute [rw] table_name
3263
2798
  # The name of the table to describe.
3264
2799
  # @return [String]
@@ -3285,13 +2820,6 @@ module Aws::DynamoDB
3285
2820
  include Aws::Structure
3286
2821
  end
3287
2822
 
3288
- # @note When making an API call, you may pass DescribeTableReplicaAutoScalingInput
3289
- # data as a hash:
3290
- #
3291
- # {
3292
- # table_name: "TableName", # required
3293
- # }
3294
- #
3295
2823
  # @!attribute [rw] table_name
3296
2824
  # The name of the table.
3297
2825
  # @return [String]
@@ -3316,13 +2844,6 @@ module Aws::DynamoDB
3316
2844
  include Aws::Structure
3317
2845
  end
3318
2846
 
3319
- # @note When making an API call, you may pass DescribeTimeToLiveInput
3320
- # data as a hash:
3321
- #
3322
- # {
3323
- # table_name: "TableName", # required
3324
- # }
3325
- #
3326
2847
  # @!attribute [rw] table_name
3327
2848
  # The name of the table to be described.
3328
2849
  # @return [String]
@@ -3379,18 +2900,6 @@ module Aws::DynamoDB
3379
2900
  include Aws::Structure
3380
2901
  end
3381
2902
 
3382
- # @note When making an API call, you may pass ExecuteStatementInput
3383
- # data as a hash:
3384
- #
3385
- # {
3386
- # statement: "PartiQLStatement", # required
3387
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3388
- # consistent_read: false,
3389
- # next_token: "PartiQLNextToken",
3390
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
3391
- # limit: 1,
3392
- # }
3393
- #
3394
2903
  # @!attribute [rw] statement
3395
2904
  # The PartiQL statement representing the operation to run.
3396
2905
  # @return [String]
@@ -3504,20 +3013,6 @@ module Aws::DynamoDB
3504
3013
  include Aws::Structure
3505
3014
  end
3506
3015
 
3507
- # @note When making an API call, you may pass ExecuteTransactionInput
3508
- # data as a hash:
3509
- #
3510
- # {
3511
- # transact_statements: [ # required
3512
- # {
3513
- # statement: "PartiQLStatement", # required
3514
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3515
- # },
3516
- # ],
3517
- # client_request_token: "ClientRequestToken",
3518
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
3519
- # }
3520
- #
3521
3016
  # @!attribute [rw] transact_statements
3522
3017
  # The list of PartiQL statements representing the transaction to run.
3523
3018
  # @return [Array<Types::ParameterizedStatement>]
@@ -3592,16 +3087,6 @@ module Aws::DynamoDB
3592
3087
  # `ComparisonOperator`. Note that if you use both sets of parameters at
3593
3088
  # once, DynamoDB will return a `ValidationException` exception.
3594
3089
  #
3595
- # @note When making an API call, you may pass ExpectedAttributeValue
3596
- # data as a hash:
3597
- #
3598
- # {
3599
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3600
- # exists: false,
3601
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
3602
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3603
- # }
3604
- #
3605
3090
  # @!attribute [rw] value
3606
3091
  # Represents the data for the expected attribute.
3607
3092
  #
@@ -4010,21 +3495,6 @@ module Aws::DynamoDB
4010
3495
  include Aws::Structure
4011
3496
  end
4012
3497
 
4013
- # @note When making an API call, you may pass ExportTableToPointInTimeInput
4014
- # data as a hash:
4015
- #
4016
- # {
4017
- # table_arn: "TableArn", # required
4018
- # export_time: Time.now,
4019
- # client_token: "ClientToken",
4020
- # s3_bucket: "S3Bucket", # required
4021
- # s3_bucket_owner: "S3BucketOwner",
4022
- # s3_prefix: "S3Prefix",
4023
- # s3_sse_algorithm: "AES256", # accepts AES256, KMS
4024
- # s3_sse_kms_key_id: "S3SseKmsKeyId",
4025
- # export_format: "DYNAMODB_JSON", # accepts DYNAMODB_JSON, ION
4026
- # }
4027
- #
4028
3498
  # @!attribute [rw] table_arn
4029
3499
  # The Amazon Resource Name (ARN) associated with the table to export.
4030
3500
  # @return [String]
@@ -4137,20 +3607,6 @@ module Aws::DynamoDB
4137
3607
  # Specifies an item and related attribute values to retrieve in a
4138
3608
  # `TransactGetItem` object.
4139
3609
  #
4140
- # @note When making an API call, you may pass Get
4141
- # data as a hash:
4142
- #
4143
- # {
4144
- # key: { # required
4145
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
4146
- # },
4147
- # table_name: "TableName", # required
4148
- # projection_expression: "ProjectionExpression",
4149
- # expression_attribute_names: {
4150
- # "ExpressionAttributeNameVariable" => "AttributeName",
4151
- # },
4152
- # }
4153
- #
4154
3610
  # @!attribute [rw] key
4155
3611
  # A map of attribute names to `AttributeValue` objects that specifies
4156
3612
  # the primary key of the item to retrieve.
@@ -4187,23 +3643,6 @@ module Aws::DynamoDB
4187
3643
 
4188
3644
  # Represents the input of a `GetItem` operation.
4189
3645
  #
4190
- # @note When making an API call, you may pass GetItemInput
4191
- # data as a hash:
4192
- #
4193
- # {
4194
- # table_name: "TableName", # required
4195
- # key: { # required
4196
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
4197
- # },
4198
- # attributes_to_get: ["AttributeName"],
4199
- # consistent_read: false,
4200
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
4201
- # projection_expression: "ProjectionExpression",
4202
- # expression_attribute_names: {
4203
- # "ExpressionAttributeNameVariable" => "AttributeName",
4204
- # },
4205
- # }
4206
- #
4207
3646
  # @!attribute [rw] table_name
4208
3647
  # The name of the table containing the requested item.
4209
3648
  # @return [String]
@@ -4371,27 +3810,6 @@ module Aws::DynamoDB
4371
3810
 
4372
3811
  # Represents the properties of a global secondary index.
4373
3812
  #
4374
- # @note When making an API call, you may pass GlobalSecondaryIndex
4375
- # data as a hash:
4376
- #
4377
- # {
4378
- # index_name: "IndexName", # required
4379
- # key_schema: [ # required
4380
- # {
4381
- # attribute_name: "KeySchemaAttributeName", # required
4382
- # key_type: "HASH", # required, accepts HASH, RANGE
4383
- # },
4384
- # ],
4385
- # projection: { # required
4386
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
4387
- # non_key_attributes: ["NonKeyAttributeName"],
4388
- # },
4389
- # provisioned_throughput: {
4390
- # read_capacity_units: 1, # required
4391
- # write_capacity_units: 1, # required
4392
- # },
4393
- # }
4394
- #
4395
3813
  # @!attribute [rw] index_name
4396
3814
  # The name of the global secondary index. The name must be unique
4397
3815
  # among all other indexes on this table.
@@ -4452,28 +3870,6 @@ module Aws::DynamoDB
4452
3870
  # Represents the auto scaling settings of a global secondary index for a
4453
3871
  # global table that will be modified.
4454
3872
  #
4455
- # @note When making an API call, you may pass GlobalSecondaryIndexAutoScalingUpdate
4456
- # data as a hash:
4457
- #
4458
- # {
4459
- # index_name: "IndexName",
4460
- # provisioned_write_capacity_auto_scaling_update: {
4461
- # minimum_units: 1,
4462
- # maximum_units: 1,
4463
- # auto_scaling_disabled: false,
4464
- # auto_scaling_role_arn: "AutoScalingRoleArn",
4465
- # scaling_policy_update: {
4466
- # policy_name: "AutoScalingPolicyName",
4467
- # target_tracking_scaling_policy_configuration: { # required
4468
- # disable_scale_in: false,
4469
- # scale_in_cooldown: 1,
4470
- # scale_out_cooldown: 1,
4471
- # target_value: 1.0, # required
4472
- # },
4473
- # },
4474
- # },
4475
- # }
4476
- #
4477
3873
  # @!attribute [rw] index_name
4478
3874
  # The name of the global secondary index.
4479
3875
  # @return [String]
@@ -4666,39 +4062,6 @@ module Aws::DynamoDB
4666
4062
  # * An existing global secondary index to be removed from an existing
4667
4063
  # table.
4668
4064
  #
4669
- # @note When making an API call, you may pass GlobalSecondaryIndexUpdate
4670
- # data as a hash:
4671
- #
4672
- # {
4673
- # update: {
4674
- # index_name: "IndexName", # required
4675
- # provisioned_throughput: { # required
4676
- # read_capacity_units: 1, # required
4677
- # write_capacity_units: 1, # required
4678
- # },
4679
- # },
4680
- # create: {
4681
- # index_name: "IndexName", # required
4682
- # key_schema: [ # required
4683
- # {
4684
- # attribute_name: "KeySchemaAttributeName", # required
4685
- # key_type: "HASH", # required, accepts HASH, RANGE
4686
- # },
4687
- # ],
4688
- # projection: { # required
4689
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
4690
- # non_key_attributes: ["NonKeyAttributeName"],
4691
- # },
4692
- # provisioned_throughput: {
4693
- # read_capacity_units: 1, # required
4694
- # write_capacity_units: 1, # required
4695
- # },
4696
- # },
4697
- # delete: {
4698
- # index_name: "IndexName", # required
4699
- # },
4700
- # }
4701
- #
4702
4065
  # @!attribute [rw] update
4703
4066
  # The name of an existing global secondary index, along with new
4704
4067
  # provisioned throughput settings to be applied to that index.
@@ -4810,29 +4173,6 @@ module Aws::DynamoDB
4810
4173
  # Represents the settings of a global secondary index for a global table
4811
4174
  # that will be modified.
4812
4175
  #
4813
- # @note When making an API call, you may pass GlobalTableGlobalSecondaryIndexSettingsUpdate
4814
- # data as a hash:
4815
- #
4816
- # {
4817
- # index_name: "IndexName", # required
4818
- # provisioned_write_capacity_units: 1,
4819
- # provisioned_write_capacity_auto_scaling_settings_update: {
4820
- # minimum_units: 1,
4821
- # maximum_units: 1,
4822
- # auto_scaling_disabled: false,
4823
- # auto_scaling_role_arn: "AutoScalingRoleArn",
4824
- # scaling_policy_update: {
4825
- # policy_name: "AutoScalingPolicyName",
4826
- # target_tracking_scaling_policy_configuration: { # required
4827
- # disable_scale_in: false,
4828
- # scale_in_cooldown: 1,
4829
- # scale_out_cooldown: 1,
4830
- # target_value: 1.0, # required
4831
- # },
4832
- # },
4833
- # },
4834
- # }
4835
- #
4836
4176
  # @!attribute [rw] index_name
4837
4177
  # The name of the global secondary index. The name must be unique
4838
4178
  # among all other indexes on this table.
@@ -5084,70 +4424,6 @@ module Aws::DynamoDB
5084
4424
  include Aws::Structure
5085
4425
  end
5086
4426
 
5087
- # @note When making an API call, you may pass ImportTableInput
5088
- # data as a hash:
5089
- #
5090
- # {
5091
- # client_token: "ClientToken",
5092
- # s3_bucket_source: { # required
5093
- # s3_bucket_owner: "S3BucketOwner",
5094
- # s3_bucket: "S3Bucket", # required
5095
- # s3_key_prefix: "S3Prefix",
5096
- # },
5097
- # input_format: "DYNAMODB_JSON", # required, accepts DYNAMODB_JSON, ION, CSV
5098
- # input_format_options: {
5099
- # csv: {
5100
- # delimiter: "CsvDelimiter",
5101
- # header_list: ["CsvHeader"],
5102
- # },
5103
- # },
5104
- # input_compression_type: "GZIP", # accepts GZIP, ZSTD, NONE
5105
- # table_creation_parameters: { # required
5106
- # table_name: "TableName", # required
5107
- # attribute_definitions: [ # required
5108
- # {
5109
- # attribute_name: "KeySchemaAttributeName", # required
5110
- # attribute_type: "S", # required, accepts S, N, B
5111
- # },
5112
- # ],
5113
- # key_schema: [ # required
5114
- # {
5115
- # attribute_name: "KeySchemaAttributeName", # required
5116
- # key_type: "HASH", # required, accepts HASH, RANGE
5117
- # },
5118
- # ],
5119
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
5120
- # provisioned_throughput: {
5121
- # read_capacity_units: 1, # required
5122
- # write_capacity_units: 1, # required
5123
- # },
5124
- # sse_specification: {
5125
- # enabled: false,
5126
- # sse_type: "AES256", # accepts AES256, KMS
5127
- # kms_master_key_id: "KMSMasterKeyId",
5128
- # },
5129
- # global_secondary_indexes: [
5130
- # {
5131
- # index_name: "IndexName", # required
5132
- # key_schema: [ # required
5133
- # {
5134
- # attribute_name: "KeySchemaAttributeName", # required
5135
- # key_type: "HASH", # required, accepts HASH, RANGE
5136
- # },
5137
- # ],
5138
- # projection: { # required
5139
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
5140
- # non_key_attributes: ["NonKeyAttributeName"],
5141
- # },
5142
- # provisioned_throughput: {
5143
- # read_capacity_units: 1, # required
5144
- # write_capacity_units: 1, # required
5145
- # },
5146
- # },
5147
- # ],
5148
- # },
5149
- # }
5150
- #
5151
4427
  # @!attribute [rw] client_token
5152
4428
  # Providing a `ClientToken` makes the call to `ImportTableInput`
5153
4429
  # idempotent, meaning that multiple identical calls have the same
@@ -5233,16 +4509,6 @@ module Aws::DynamoDB
5233
4509
  # The format options for the data that was imported into the target
5234
4510
  # table. There is one value, CsvOption.
5235
4511
  #
5236
- # @note When making an API call, you may pass InputFormatOptions
5237
- # data as a hash:
5238
- #
5239
- # {
5240
- # csv: {
5241
- # delimiter: "CsvDelimiter",
5242
- # header_list: ["CsvHeader"],
5243
- # },
5244
- # }
5245
- #
5246
4512
  # @!attribute [rw] csv
5247
4513
  # The options for imported source files in CSV format. The values are
5248
4514
  # Delimiter and HeaderList.
@@ -5375,14 +4641,6 @@ module Aws::DynamoDB
5375
4641
  # nested attribute). The data type must be one of String, Number, or
5376
4642
  # Binary. The attribute cannot be nested within a List or a Map.
5377
4643
  #
5378
- # @note When making an API call, you may pass KeySchemaElement
5379
- # data as a hash:
5380
- #
5381
- # {
5382
- # attribute_name: "KeySchemaAttributeName", # required
5383
- # key_type: "HASH", # required, accepts HASH, RANGE
5384
- # }
5385
- #
5386
4644
  # @!attribute [rw] attribute_name
5387
4645
  # The name of a key attribute.
5388
4646
  # @return [String]
@@ -5424,23 +4682,6 @@ module Aws::DynamoDB
5424
4682
  # partition key. For a composite primary key, you must provide *both*
5425
4683
  # the partition key and the sort key.
5426
4684
  #
5427
- # @note When making an API call, you may pass KeysAndAttributes
5428
- # data as a hash:
5429
- #
5430
- # {
5431
- # keys: [ # required
5432
- # {
5433
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
5434
- # },
5435
- # ],
5436
- # attributes_to_get: ["AttributeName"],
5437
- # consistent_read: false,
5438
- # projection_expression: "ProjectionExpression",
5439
- # expression_attribute_names: {
5440
- # "ExpressionAttributeNameVariable" => "AttributeName",
5441
- # },
5442
- # }
5443
- #
5444
4685
  # @!attribute [rw] keys
5445
4686
  # The primary key attribute values that define the items and the
5446
4687
  # attributes associated with the items.
@@ -5569,14 +4810,6 @@ module Aws::DynamoDB
5569
4810
  include Aws::Structure
5570
4811
  end
5571
4812
 
5572
- # @note When making an API call, you may pass KinesisStreamingDestinationInput
5573
- # data as a hash:
5574
- #
5575
- # {
5576
- # table_name: "TableName", # required
5577
- # stream_arn: "StreamArn", # required
5578
- # }
5579
- #
5580
4813
  # @!attribute [rw] table_name
5581
4814
  # The name of the DynamoDB table.
5582
4815
  # @return [String]
@@ -5619,15 +4852,18 @@ module Aws::DynamoDB
5619
4852
  # There is no limit to the number of daily on-demand backups that can be
5620
4853
  # taken.
5621
4854
  #
5622
- # Up to 500 simultaneous table operations are allowed per account. These
5623
- # operations include `CreateTable`, `UpdateTable`,
4855
+ # For most purposes, up to 500 simultaneous table operations are allowed
4856
+ # per account. These operations include `CreateTable`, `UpdateTable`,
5624
4857
  # `DeleteTable`,`UpdateTimeToLive`, `RestoreTableFromBackup`, and
5625
4858
  # `RestoreTableToPointInTime`.
5626
4859
  #
5627
- # The only exception is when you are creating a table with one or more
5628
- # secondary indexes. You can have up to 250 such requests running at a
5629
- # time; however, if the table or index specifications are complex,
5630
- # DynamoDB might temporarily reduce the number of concurrent operations.
4860
+ # When you are creating a table with one or more secondary indexes, you
4861
+ # can have up to 250 such requests running at a time. However, if the
4862
+ # table or index specifications are complex, then DynamoDB might
4863
+ # temporarily reduce the number of concurrent operations.
4864
+ #
4865
+ # When importing into DynamoDB, up to 50 simultaneous import table
4866
+ # operations are allowed per account.
5631
4867
  #
5632
4868
  # There is a soft account quota of 2,500 tables.
5633
4869
  #
@@ -5643,18 +4879,6 @@ module Aws::DynamoDB
5643
4879
  include Aws::Structure
5644
4880
  end
5645
4881
 
5646
- # @note When making an API call, you may pass ListBackupsInput
5647
- # data as a hash:
5648
- #
5649
- # {
5650
- # table_name: "TableName",
5651
- # limit: 1,
5652
- # time_range_lower_bound: Time.now,
5653
- # time_range_upper_bound: Time.now,
5654
- # exclusive_start_backup_arn: "BackupArn",
5655
- # backup_type: "USER", # accepts USER, SYSTEM, AWS_BACKUP, ALL
5656
- # }
5657
- #
5658
4882
  # @!attribute [rw] table_name
5659
4883
  # The backups from the table specified by `TableName` are listed.
5660
4884
  # @return [String]
@@ -5735,15 +4959,6 @@ module Aws::DynamoDB
5735
4959
  include Aws::Structure
5736
4960
  end
5737
4961
 
5738
- # @note When making an API call, you may pass ListContributorInsightsInput
5739
- # data as a hash:
5740
- #
5741
- # {
5742
- # table_name: "TableName",
5743
- # next_token: "NextTokenString",
5744
- # max_results: 1,
5745
- # }
5746
- #
5747
4962
  # @!attribute [rw] table_name
5748
4963
  # The name of the table.
5749
4964
  # @return [String]
@@ -5783,15 +4998,6 @@ module Aws::DynamoDB
5783
4998
  include Aws::Structure
5784
4999
  end
5785
5000
 
5786
- # @note When making an API call, you may pass ListExportsInput
5787
- # data as a hash:
5788
- #
5789
- # {
5790
- # table_arn: "TableArn",
5791
- # max_results: 1,
5792
- # next_token: "ExportNextToken",
5793
- # }
5794
- #
5795
5001
  # @!attribute [rw] table_arn
5796
5002
  # The Amazon Resource Name (ARN) associated with the exported table.
5797
5003
  # @return [String]
@@ -5835,15 +5041,6 @@ module Aws::DynamoDB
5835
5041
  include Aws::Structure
5836
5042
  end
5837
5043
 
5838
- # @note When making an API call, you may pass ListGlobalTablesInput
5839
- # data as a hash:
5840
- #
5841
- # {
5842
- # exclusive_start_global_table_name: "TableName",
5843
- # limit: 1,
5844
- # region_name: "RegionName",
5845
- # }
5846
- #
5847
5044
  # @!attribute [rw] exclusive_start_global_table_name
5848
5045
  # The first global table name that this operation will evaluate.
5849
5046
  # @return [String]
@@ -5890,15 +5087,6 @@ module Aws::DynamoDB
5890
5087
  include Aws::Structure
5891
5088
  end
5892
5089
 
5893
- # @note When making an API call, you may pass ListImportsInput
5894
- # data as a hash:
5895
- #
5896
- # {
5897
- # table_arn: "TableArn",
5898
- # page_size: 1,
5899
- # next_token: "ImportNextToken",
5900
- # }
5901
- #
5902
5090
  # @!attribute [rw] table_arn
5903
5091
  # The Amazon Resource Name (ARN) associated with the table that was
5904
5092
  # imported to.
@@ -5945,14 +5133,6 @@ module Aws::DynamoDB
5945
5133
 
5946
5134
  # Represents the input of a `ListTables` operation.
5947
5135
  #
5948
- # @note When making an API call, you may pass ListTablesInput
5949
- # data as a hash:
5950
- #
5951
- # {
5952
- # exclusive_start_table_name: "TableName",
5953
- # limit: 1,
5954
- # }
5955
- #
5956
5136
  # @!attribute [rw] exclusive_start_table_name
5957
5137
  # The first table name that this operation will evaluate. Use the
5958
5138
  # value that was returned for `LastEvaluatedTableName` in a previous
@@ -6003,14 +5183,6 @@ module Aws::DynamoDB
6003
5183
  include Aws::Structure
6004
5184
  end
6005
5185
 
6006
- # @note When making an API call, you may pass ListTagsOfResourceInput
6007
- # data as a hash:
6008
- #
6009
- # {
6010
- # resource_arn: "ResourceArnString", # required
6011
- # next_token: "NextTokenString",
6012
- # }
6013
- #
6014
5186
  # @!attribute [rw] resource_arn
6015
5187
  # The Amazon DynamoDB resource with tags to be listed. This value is
6016
5188
  # an Amazon Resource Name (ARN).
@@ -6052,23 +5224,6 @@ module Aws::DynamoDB
6052
5224
 
6053
5225
  # Represents the properties of a local secondary index.
6054
5226
  #
6055
- # @note When making an API call, you may pass LocalSecondaryIndex
6056
- # data as a hash:
6057
- #
6058
- # {
6059
- # index_name: "IndexName", # required
6060
- # key_schema: [ # required
6061
- # {
6062
- # attribute_name: "KeySchemaAttributeName", # required
6063
- # key_type: "HASH", # required, accepts HASH, RANGE
6064
- # },
6065
- # ],
6066
- # projection: { # required
6067
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
6068
- # non_key_attributes: ["NonKeyAttributeName"],
6069
- # },
6070
- # }
6071
- #
6072
5227
  # @!attribute [rw] index_name
6073
5228
  # The name of the local secondary index. The name must be unique among
6074
5229
  # all other indexes on this table.
@@ -6222,14 +5377,6 @@ module Aws::DynamoDB
6222
5377
 
6223
5378
  # Represents a PartiQL statment that uses parameters.
6224
5379
  #
6225
- # @note When making an API call, you may pass ParameterizedStatement
6226
- # data as a hash:
6227
- #
6228
- # {
6229
- # statement: "PartiQLStatement", # required
6230
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6231
- # }
6232
- #
6233
5380
  # @!attribute [rw] statement
6234
5381
  # A PartiQL statment that uses parameters.
6235
5382
  # @return [String]
@@ -6280,13 +5427,6 @@ module Aws::DynamoDB
6280
5427
 
6281
5428
  # Represents the settings used to enable point in time recovery.
6282
5429
  #
6283
- # @note When making an API call, you may pass PointInTimeRecoverySpecification
6284
- # data as a hash:
6285
- #
6286
- # {
6287
- # point_in_time_recovery_enabled: false, # required
6288
- # }
6289
- #
6290
5430
  # @!attribute [rw] point_in_time_recovery_enabled
6291
5431
  # Indicates whether point in time recovery is enabled (true) or
6292
5432
  # disabled (false) on the table.
@@ -6317,14 +5457,6 @@ module Aws::DynamoDB
6317
5457
  # an index. These are in addition to the primary key attributes and
6318
5458
  # index key attributes, which are automatically projected.
6319
5459
  #
6320
- # @note When making an API call, you may pass Projection
6321
- # data as a hash:
6322
- #
6323
- # {
6324
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
6325
- # non_key_attributes: ["NonKeyAttributeName"],
6326
- # }
6327
- #
6328
5460
  # @!attribute [rw] projection_type
6329
5461
  # The set of attributes that are projected into the index:
6330
5462
  #
@@ -6369,14 +5501,6 @@ module Aws::DynamoDB
6369
5501
  #
6370
5502
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html
6371
5503
  #
6372
- # @note When making an API call, you may pass ProvisionedThroughput
6373
- # data as a hash:
6374
- #
6375
- # {
6376
- # read_capacity_units: 1, # required
6377
- # write_capacity_units: 1, # required
6378
- # }
6379
- #
6380
5504
  # @!attribute [rw] read_capacity_units
6381
5505
  # The maximum number of strongly consistent reads consumed per second
6382
5506
  # before DynamoDB returns a `ThrottlingException`. For more
@@ -6490,13 +5614,6 @@ module Aws::DynamoDB
6490
5614
  # Replica-specific provisioned throughput settings. If not specified,
6491
5615
  # uses the source table's provisioned throughput settings.
6492
5616
  #
6493
- # @note When making an API call, you may pass ProvisionedThroughputOverride
6494
- # data as a hash:
6495
- #
6496
- # {
6497
- # read_capacity_units: 1,
6498
- # }
6499
- #
6500
5617
  # @!attribute [rw] read_capacity_units
6501
5618
  # Replica-specific read capacity units. If not specified, uses the
6502
5619
  # source table's read capacity settings.
@@ -6512,24 +5629,6 @@ module Aws::DynamoDB
6512
5629
 
6513
5630
  # Represents a request to perform a `PutItem` operation.
6514
5631
  #
6515
- # @note When making an API call, you may pass Put
6516
- # data as a hash:
6517
- #
6518
- # {
6519
- # item: { # required
6520
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6521
- # },
6522
- # table_name: "TableName", # required
6523
- # condition_expression: "ConditionExpression",
6524
- # expression_attribute_names: {
6525
- # "ExpressionAttributeNameVariable" => "AttributeName",
6526
- # },
6527
- # expression_attribute_values: {
6528
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6529
- # },
6530
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
6531
- # }
6532
- #
6533
5632
  # @!attribute [rw] item
6534
5633
  # A map of attribute name to attribute values, representing the
6535
5634
  # primary key of the item to be written by `PutItem`. All of the
@@ -6579,35 +5678,6 @@ module Aws::DynamoDB
6579
5678
 
6580
5679
  # Represents the input of a `PutItem` operation.
6581
5680
  #
6582
- # @note When making an API call, you may pass PutItemInput
6583
- # data as a hash:
6584
- #
6585
- # {
6586
- # table_name: "TableName", # required
6587
- # item: { # required
6588
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6589
- # },
6590
- # expected: {
6591
- # "AttributeName" => {
6592
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6593
- # exists: false,
6594
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
6595
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6596
- # },
6597
- # },
6598
- # return_values: "NONE", # accepts NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW
6599
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
6600
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
6601
- # conditional_operator: "AND", # accepts AND, OR
6602
- # condition_expression: "ConditionExpression",
6603
- # expression_attribute_names: {
6604
- # "ExpressionAttributeNameVariable" => "AttributeName",
6605
- # },
6606
- # expression_attribute_values: {
6607
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6608
- # },
6609
- # }
6610
- #
6611
5681
  # @!attribute [rw] table_name
6612
5682
  # The name of the table to contain the item.
6613
5683
  # @return [String]
@@ -6895,15 +5965,6 @@ module Aws::DynamoDB
6895
5965
 
6896
5966
  # Represents a request to perform a `PutItem` operation on an item.
6897
5967
  #
6898
- # @note When making an API call, you may pass PutRequest
6899
- # data as a hash:
6900
- #
6901
- # {
6902
- # item: { # required
6903
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6904
- # },
6905
- # }
6906
- #
6907
5968
  # @!attribute [rw] item
6908
5969
  # A map of attribute name to attribute values, representing the
6909
5970
  # primary key of an item to be processed by `PutItem`. All of the
@@ -6923,45 +5984,6 @@ module Aws::DynamoDB
6923
5984
 
6924
5985
  # Represents the input of a `Query` operation.
6925
5986
  #
6926
- # @note When making an API call, you may pass QueryInput
6927
- # data as a hash:
6928
- #
6929
- # {
6930
- # table_name: "TableName", # required
6931
- # index_name: "IndexName",
6932
- # select: "ALL_ATTRIBUTES", # accepts ALL_ATTRIBUTES, ALL_PROJECTED_ATTRIBUTES, SPECIFIC_ATTRIBUTES, COUNT
6933
- # attributes_to_get: ["AttributeName"],
6934
- # limit: 1,
6935
- # consistent_read: false,
6936
- # key_conditions: {
6937
- # "AttributeName" => {
6938
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6939
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
6940
- # },
6941
- # },
6942
- # query_filter: {
6943
- # "AttributeName" => {
6944
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6945
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
6946
- # },
6947
- # },
6948
- # conditional_operator: "AND", # accepts AND, OR
6949
- # scan_index_forward: false,
6950
- # exclusive_start_key: {
6951
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6952
- # },
6953
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
6954
- # projection_expression: "ProjectionExpression",
6955
- # filter_expression: "ConditionExpression",
6956
- # key_condition_expression: "KeyExpression",
6957
- # expression_attribute_names: {
6958
- # "ExpressionAttributeNameVariable" => "AttributeName",
6959
- # },
6960
- # expression_attribute_values: {
6961
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6962
- # },
6963
- # }
6964
- #
6965
5987
  # @!attribute [rw] table_name
6966
5988
  # The name of the table containing the requested items.
6967
5989
  # @return [String]
@@ -7449,13 +6471,6 @@ module Aws::DynamoDB
7449
6471
 
7450
6472
  # Represents the properties of a replica.
7451
6473
  #
7452
- # @note When making an API call, you may pass Replica
7453
- # data as a hash:
7454
- #
7455
- # {
7456
- # region_name: "RegionName",
7457
- # }
7458
- #
7459
6474
  # @!attribute [rw] region_name
7460
6475
  # The Region where the replica needs to be created.
7461
6476
  # @return [String]
@@ -7528,48 +6543,6 @@ module Aws::DynamoDB
7528
6543
  # Represents the auto scaling settings of a replica that will be
7529
6544
  # modified.
7530
6545
  #
7531
- # @note When making an API call, you may pass ReplicaAutoScalingUpdate
7532
- # data as a hash:
7533
- #
7534
- # {
7535
- # region_name: "RegionName", # required
7536
- # replica_global_secondary_index_updates: [
7537
- # {
7538
- # index_name: "IndexName",
7539
- # provisioned_read_capacity_auto_scaling_update: {
7540
- # minimum_units: 1,
7541
- # maximum_units: 1,
7542
- # auto_scaling_disabled: false,
7543
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7544
- # scaling_policy_update: {
7545
- # policy_name: "AutoScalingPolicyName",
7546
- # target_tracking_scaling_policy_configuration: { # required
7547
- # disable_scale_in: false,
7548
- # scale_in_cooldown: 1,
7549
- # scale_out_cooldown: 1,
7550
- # target_value: 1.0, # required
7551
- # },
7552
- # },
7553
- # },
7554
- # },
7555
- # ],
7556
- # replica_provisioned_read_capacity_auto_scaling_update: {
7557
- # minimum_units: 1,
7558
- # maximum_units: 1,
7559
- # auto_scaling_disabled: false,
7560
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7561
- # scaling_policy_update: {
7562
- # policy_name: "AutoScalingPolicyName",
7563
- # target_tracking_scaling_policy_configuration: { # required
7564
- # disable_scale_in: false,
7565
- # scale_in_cooldown: 1,
7566
- # scale_out_cooldown: 1,
7567
- # target_value: 1.0, # required
7568
- # },
7569
- # },
7570
- # },
7571
- # }
7572
- #
7573
6546
  # @!attribute [rw] region_name
7574
6547
  # The Region where the replica exists.
7575
6548
  # @return [String]
@@ -7682,16 +6655,6 @@ module Aws::DynamoDB
7682
6655
 
7683
6656
  # Represents the properties of a replica global secondary index.
7684
6657
  #
7685
- # @note When making an API call, you may pass ReplicaGlobalSecondaryIndex
7686
- # data as a hash:
7687
- #
7688
- # {
7689
- # index_name: "IndexName", # required
7690
- # provisioned_throughput_override: {
7691
- # read_capacity_units: 1,
7692
- # },
7693
- # }
7694
- #
7695
6658
  # @!attribute [rw] index_name
7696
6659
  # The name of the global secondary index.
7697
6660
  # @return [String]
@@ -7722,7 +6685,8 @@ module Aws::DynamoDB
7722
6685
  #
7723
6686
  # * `CREATING` - The index is being created.
7724
6687
  #
7725
- # * `UPDATING` - The index is being updated.
6688
+ # * `UPDATING` - The table/index configuration is being updated. The
6689
+ # table/index remains available for data operations when `UPDATING`
7726
6690
  #
7727
6691
  # * `DELETING` - The index is being deleted.
7728
6692
  #
@@ -7753,28 +6717,6 @@ module Aws::DynamoDB
7753
6717
  # Represents the auto scaling settings of a global secondary index for a
7754
6718
  # replica that will be modified.
7755
6719
  #
7756
- # @note When making an API call, you may pass ReplicaGlobalSecondaryIndexAutoScalingUpdate
7757
- # data as a hash:
7758
- #
7759
- # {
7760
- # index_name: "IndexName",
7761
- # provisioned_read_capacity_auto_scaling_update: {
7762
- # minimum_units: 1,
7763
- # maximum_units: 1,
7764
- # auto_scaling_disabled: false,
7765
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7766
- # scaling_policy_update: {
7767
- # policy_name: "AutoScalingPolicyName",
7768
- # target_tracking_scaling_policy_configuration: { # required
7769
- # disable_scale_in: false,
7770
- # scale_in_cooldown: 1,
7771
- # scale_out_cooldown: 1,
7772
- # target_value: 1.0, # required
7773
- # },
7774
- # },
7775
- # },
7776
- # }
7777
- #
7778
6720
  # @!attribute [rw] index_name
7779
6721
  # The name of the global secondary index.
7780
6722
  # @return [String]
@@ -7868,29 +6810,6 @@ module Aws::DynamoDB
7868
6810
  # Represents the settings of a global secondary index for a global table
7869
6811
  # that will be modified.
7870
6812
  #
7871
- # @note When making an API call, you may pass ReplicaGlobalSecondaryIndexSettingsUpdate
7872
- # data as a hash:
7873
- #
7874
- # {
7875
- # index_name: "IndexName", # required
7876
- # provisioned_read_capacity_units: 1,
7877
- # provisioned_read_capacity_auto_scaling_settings_update: {
7878
- # minimum_units: 1,
7879
- # maximum_units: 1,
7880
- # auto_scaling_disabled: false,
7881
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7882
- # scaling_policy_update: {
7883
- # policy_name: "AutoScalingPolicyName",
7884
- # target_tracking_scaling_policy_configuration: { # required
7885
- # disable_scale_in: false,
7886
- # scale_in_cooldown: 1,
7887
- # scale_out_cooldown: 1,
7888
- # target_value: 1.0, # required
7889
- # },
7890
- # },
7891
- # },
7892
- # }
7893
- #
7894
6813
  # @!attribute [rw] index_name
7895
6814
  # The name of the global secondary index. The name must be unique
7896
6815
  # among all other indexes on this table.
@@ -8010,51 +6929,6 @@ module Aws::DynamoDB
8010
6929
  # Represents the settings for a global table in a Region that will be
8011
6930
  # modified.
8012
6931
  #
8013
- # @note When making an API call, you may pass ReplicaSettingsUpdate
8014
- # data as a hash:
8015
- #
8016
- # {
8017
- # region_name: "RegionName", # required
8018
- # replica_provisioned_read_capacity_units: 1,
8019
- # replica_provisioned_read_capacity_auto_scaling_settings_update: {
8020
- # minimum_units: 1,
8021
- # maximum_units: 1,
8022
- # auto_scaling_disabled: false,
8023
- # auto_scaling_role_arn: "AutoScalingRoleArn",
8024
- # scaling_policy_update: {
8025
- # policy_name: "AutoScalingPolicyName",
8026
- # target_tracking_scaling_policy_configuration: { # required
8027
- # disable_scale_in: false,
8028
- # scale_in_cooldown: 1,
8029
- # scale_out_cooldown: 1,
8030
- # target_value: 1.0, # required
8031
- # },
8032
- # },
8033
- # },
8034
- # replica_global_secondary_index_settings_update: [
8035
- # {
8036
- # index_name: "IndexName", # required
8037
- # provisioned_read_capacity_units: 1,
8038
- # provisioned_read_capacity_auto_scaling_settings_update: {
8039
- # minimum_units: 1,
8040
- # maximum_units: 1,
8041
- # auto_scaling_disabled: false,
8042
- # auto_scaling_role_arn: "AutoScalingRoleArn",
8043
- # scaling_policy_update: {
8044
- # policy_name: "AutoScalingPolicyName",
8045
- # target_tracking_scaling_policy_configuration: { # required
8046
- # disable_scale_in: false,
8047
- # scale_in_cooldown: 1,
8048
- # scale_out_cooldown: 1,
8049
- # target_value: 1.0, # required
8050
- # },
8051
- # },
8052
- # },
8053
- # },
8054
- # ],
8055
- # replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8056
- # }
8057
- #
8058
6932
  # @!attribute [rw] region_name
8059
6933
  # The Region of the replica to be added.
8060
6934
  # @return [String]
@@ -8105,18 +6979,6 @@ module Aws::DynamoDB
8105
6979
  #
8106
6980
  # * An existing replica to be removed from an existing global table.
8107
6981
  #
8108
- # @note When making an API call, you may pass ReplicaUpdate
8109
- # data as a hash:
8110
- #
8111
- # {
8112
- # create: {
8113
- # region_name: "RegionName", # required
8114
- # },
8115
- # delete: {
8116
- # region_name: "RegionName", # required
8117
- # },
8118
- # }
8119
- #
8120
6982
  # @!attribute [rw] create
8121
6983
  # The parameters required for creating a replica on an existing global
8122
6984
  # table.
@@ -8154,47 +7016,6 @@ module Aws::DynamoDB
8154
7016
  #
8155
7017
  # </note>
8156
7018
  #
8157
- # @note When making an API call, you may pass ReplicationGroupUpdate
8158
- # data as a hash:
8159
- #
8160
- # {
8161
- # create: {
8162
- # region_name: "RegionName", # required
8163
- # kms_master_key_id: "KMSMasterKeyId",
8164
- # provisioned_throughput_override: {
8165
- # read_capacity_units: 1,
8166
- # },
8167
- # global_secondary_indexes: [
8168
- # {
8169
- # index_name: "IndexName", # required
8170
- # provisioned_throughput_override: {
8171
- # read_capacity_units: 1,
8172
- # },
8173
- # },
8174
- # ],
8175
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8176
- # },
8177
- # update: {
8178
- # region_name: "RegionName", # required
8179
- # kms_master_key_id: "KMSMasterKeyId",
8180
- # provisioned_throughput_override: {
8181
- # read_capacity_units: 1,
8182
- # },
8183
- # global_secondary_indexes: [
8184
- # {
8185
- # index_name: "IndexName", # required
8186
- # provisioned_throughput_override: {
8187
- # read_capacity_units: 1,
8188
- # },
8189
- # },
8190
- # ],
8191
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8192
- # },
8193
- # delete: {
8194
- # region_name: "RegionName", # required
8195
- # },
8196
- # }
8197
- #
8198
7019
  # @!attribute [rw] create
8199
7020
  # The parameters required for creating a replica for the table.
8200
7021
  # @return [Types::CreateReplicationGroupMemberAction]
@@ -8298,58 +7119,6 @@ module Aws::DynamoDB
8298
7119
  include Aws::Structure
8299
7120
  end
8300
7121
 
8301
- # @note When making an API call, you may pass RestoreTableFromBackupInput
8302
- # data as a hash:
8303
- #
8304
- # {
8305
- # target_table_name: "TableName", # required
8306
- # backup_arn: "BackupArn", # required
8307
- # billing_mode_override: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
8308
- # global_secondary_index_override: [
8309
- # {
8310
- # index_name: "IndexName", # required
8311
- # key_schema: [ # required
8312
- # {
8313
- # attribute_name: "KeySchemaAttributeName", # required
8314
- # key_type: "HASH", # required, accepts HASH, RANGE
8315
- # },
8316
- # ],
8317
- # projection: { # required
8318
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8319
- # non_key_attributes: ["NonKeyAttributeName"],
8320
- # },
8321
- # provisioned_throughput: {
8322
- # read_capacity_units: 1, # required
8323
- # write_capacity_units: 1, # required
8324
- # },
8325
- # },
8326
- # ],
8327
- # local_secondary_index_override: [
8328
- # {
8329
- # index_name: "IndexName", # required
8330
- # key_schema: [ # required
8331
- # {
8332
- # attribute_name: "KeySchemaAttributeName", # required
8333
- # key_type: "HASH", # required, accepts HASH, RANGE
8334
- # },
8335
- # ],
8336
- # projection: { # required
8337
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8338
- # non_key_attributes: ["NonKeyAttributeName"],
8339
- # },
8340
- # },
8341
- # ],
8342
- # provisioned_throughput_override: {
8343
- # read_capacity_units: 1, # required
8344
- # write_capacity_units: 1, # required
8345
- # },
8346
- # sse_specification_override: {
8347
- # enabled: false,
8348
- # sse_type: "AES256", # accepts AES256, KMS
8349
- # kms_master_key_id: "KMSMasterKeyId",
8350
- # },
8351
- # }
8352
- #
8353
7122
  # @!attribute [rw] target_table_name
8354
7123
  # The name of the new table to which the backup must be restored.
8355
7124
  # @return [String]
@@ -8408,61 +7177,6 @@ module Aws::DynamoDB
8408
7177
  include Aws::Structure
8409
7178
  end
8410
7179
 
8411
- # @note When making an API call, you may pass RestoreTableToPointInTimeInput
8412
- # data as a hash:
8413
- #
8414
- # {
8415
- # source_table_arn: "TableArn",
8416
- # source_table_name: "TableName",
8417
- # target_table_name: "TableName", # required
8418
- # use_latest_restorable_time: false,
8419
- # restore_date_time: Time.now,
8420
- # billing_mode_override: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
8421
- # global_secondary_index_override: [
8422
- # {
8423
- # index_name: "IndexName", # required
8424
- # key_schema: [ # required
8425
- # {
8426
- # attribute_name: "KeySchemaAttributeName", # required
8427
- # key_type: "HASH", # required, accepts HASH, RANGE
8428
- # },
8429
- # ],
8430
- # projection: { # required
8431
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8432
- # non_key_attributes: ["NonKeyAttributeName"],
8433
- # },
8434
- # provisioned_throughput: {
8435
- # read_capacity_units: 1, # required
8436
- # write_capacity_units: 1, # required
8437
- # },
8438
- # },
8439
- # ],
8440
- # local_secondary_index_override: [
8441
- # {
8442
- # index_name: "IndexName", # required
8443
- # key_schema: [ # required
8444
- # {
8445
- # attribute_name: "KeySchemaAttributeName", # required
8446
- # key_type: "HASH", # required, accepts HASH, RANGE
8447
- # },
8448
- # ],
8449
- # projection: { # required
8450
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8451
- # non_key_attributes: ["NonKeyAttributeName"],
8452
- # },
8453
- # },
8454
- # ],
8455
- # provisioned_throughput_override: {
8456
- # read_capacity_units: 1, # required
8457
- # write_capacity_units: 1, # required
8458
- # },
8459
- # sse_specification_override: {
8460
- # enabled: false,
8461
- # sse_type: "AES256", # accepts AES256, KMS
8462
- # kms_master_key_id: "KMSMasterKeyId",
8463
- # },
8464
- # }
8465
- #
8466
7180
  # @!attribute [rw] source_table_arn
8467
7181
  # The DynamoDB table that will be restored. This value is an Amazon
8468
7182
  # Resource Name (ARN).
@@ -8541,15 +7255,6 @@ module Aws::DynamoDB
8541
7255
 
8542
7256
  # The S3 bucket that is being imported from.
8543
7257
  #
8544
- # @note When making an API call, you may pass S3BucketSource
8545
- # data as a hash:
8546
- #
8547
- # {
8548
- # s3_bucket_owner: "S3BucketOwner",
8549
- # s3_bucket: "S3Bucket", # required
8550
- # s3_key_prefix: "S3Prefix",
8551
- # }
8552
- #
8553
7258
  # @!attribute [rw] s3_bucket_owner
8554
7259
  # The account number of the S3 bucket that is being imported from. If
8555
7260
  # the bucket is owned by the requester this is optional.
@@ -8621,15 +7326,6 @@ module Aws::DynamoDB
8621
7326
 
8622
7327
  # Represents the settings used to enable server-side encryption.
8623
7328
  #
8624
- # @note When making an API call, you may pass SSESpecification
8625
- # data as a hash:
8626
- #
8627
- # {
8628
- # enabled: false,
8629
- # sse_type: "AES256", # accepts AES256, KMS
8630
- # kms_master_key_id: "KMSMasterKeyId",
8631
- # }
8632
- #
8633
7329
  # @!attribute [rw] enabled
8634
7330
  # Indicates whether server-side encryption is done using an Amazon Web
8635
7331
  # Services managed key or an Amazon Web Services owned key. If enabled
@@ -8668,39 +7364,6 @@ module Aws::DynamoDB
8668
7364
 
8669
7365
  # Represents the input of a `Scan` operation.
8670
7366
  #
8671
- # @note When making an API call, you may pass ScanInput
8672
- # data as a hash:
8673
- #
8674
- # {
8675
- # table_name: "TableName", # required
8676
- # index_name: "IndexName",
8677
- # attributes_to_get: ["AttributeName"],
8678
- # limit: 1,
8679
- # select: "ALL_ATTRIBUTES", # accepts ALL_ATTRIBUTES, ALL_PROJECTED_ATTRIBUTES, SPECIFIC_ATTRIBUTES, COUNT
8680
- # scan_filter: {
8681
- # "AttributeName" => {
8682
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
8683
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
8684
- # },
8685
- # },
8686
- # conditional_operator: "AND", # accepts AND, OR
8687
- # exclusive_start_key: {
8688
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
8689
- # },
8690
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
8691
- # total_segments: 1,
8692
- # segment: 1,
8693
- # projection_expression: "ProjectionExpression",
8694
- # filter_expression: "ConditionExpression",
8695
- # expression_attribute_names: {
8696
- # "ExpressionAttributeNameVariable" => "AttributeName",
8697
- # },
8698
- # expression_attribute_values: {
8699
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
8700
- # },
8701
- # consistent_read: false,
8702
- # }
8703
- #
8704
7367
  # @!attribute [rw] table_name
8705
7368
  # The name of the table containing the requested items; or, if you
8706
7369
  # provide `IndexName`, the name of the table to which that index
@@ -9222,14 +7885,6 @@ module Aws::DynamoDB
9222
7885
 
9223
7886
  # Represents the DynamoDB Streams configuration for a table in DynamoDB.
9224
7887
  #
9225
- # @note When making an API call, you may pass StreamSpecification
9226
- # data as a hash:
9227
- #
9228
- # {
9229
- # stream_enabled: false, # required
9230
- # stream_view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES, KEYS_ONLY
9231
- # }
9232
- #
9233
7888
  # @!attribute [rw] stream_enabled
9234
7889
  # Indicates whether DynamoDB Streams is enabled (true) or disabled
9235
7890
  # (false) on the table.
@@ -9329,54 +7984,6 @@ module Aws::DynamoDB
9329
7984
 
9330
7985
  # The parameters for the table created as part of the import operation.
9331
7986
  #
9332
- # @note When making an API call, you may pass TableCreationParameters
9333
- # data as a hash:
9334
- #
9335
- # {
9336
- # table_name: "TableName", # required
9337
- # attribute_definitions: [ # required
9338
- # {
9339
- # attribute_name: "KeySchemaAttributeName", # required
9340
- # attribute_type: "S", # required, accepts S, N, B
9341
- # },
9342
- # ],
9343
- # key_schema: [ # required
9344
- # {
9345
- # attribute_name: "KeySchemaAttributeName", # required
9346
- # key_type: "HASH", # required, accepts HASH, RANGE
9347
- # },
9348
- # ],
9349
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
9350
- # provisioned_throughput: {
9351
- # read_capacity_units: 1, # required
9352
- # write_capacity_units: 1, # required
9353
- # },
9354
- # sse_specification: {
9355
- # enabled: false,
9356
- # sse_type: "AES256", # accepts AES256, KMS
9357
- # kms_master_key_id: "KMSMasterKeyId",
9358
- # },
9359
- # global_secondary_indexes: [
9360
- # {
9361
- # index_name: "IndexName", # required
9362
- # key_schema: [ # required
9363
- # {
9364
- # attribute_name: "KeySchemaAttributeName", # required
9365
- # key_type: "HASH", # required, accepts HASH, RANGE
9366
- # },
9367
- # ],
9368
- # projection: { # required
9369
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
9370
- # non_key_attributes: ["NonKeyAttributeName"],
9371
- # },
9372
- # provisioned_throughput: {
9373
- # read_capacity_units: 1, # required
9374
- # write_capacity_units: 1, # required
9375
- # },
9376
- # },
9377
- # ],
9378
- # }
9379
- #
9380
7987
  # @!attribute [rw] table_name
9381
7988
  # The name of the table created as part of the import operation.
9382
7989
  # @return [String]
@@ -9486,7 +8093,8 @@ module Aws::DynamoDB
9486
8093
  #
9487
8094
  # * `CREATING` - The table is being created.
9488
8095
  #
9489
- # * `UPDATING` - The table is being updated.
8096
+ # * `UPDATING` - The table/index configuration is being updated. The
8097
+ # table/index remains available for data operations when `UPDATING`.
9490
8098
  #
9491
8099
  # * `DELETING` - The table is being deleted.
9492
8100
  #
@@ -9799,14 +8407,6 @@ module Aws::DynamoDB
9799
8407
  #
9800
8408
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
9801
8409
  #
9802
- # @note When making an API call, you may pass Tag
9803
- # data as a hash:
9804
- #
9805
- # {
9806
- # key: "TagKeyString", # required
9807
- # value: "TagValueString", # required
9808
- # }
9809
- #
9810
8410
  # @!attribute [rw] key
9811
8411
  # The key of the tag. Tag keys are case sensitive. Each DynamoDB table
9812
8412
  # can only have up to one tag with the same key. If you try to add an
@@ -9827,19 +8427,6 @@ module Aws::DynamoDB
9827
8427
  include Aws::Structure
9828
8428
  end
9829
8429
 
9830
- # @note When making an API call, you may pass TagResourceInput
9831
- # data as a hash:
9832
- #
9833
- # {
9834
- # resource_arn: "ResourceArnString", # required
9835
- # tags: [ # required
9836
- # {
9837
- # key: "TagKeyString", # required
9838
- # value: "TagValueString", # required
9839
- # },
9840
- # ],
9841
- # }
9842
- #
9843
8430
  # @!attribute [rw] resource_arn
9844
8431
  # Identifies the Amazon DynamoDB resource to which tags should be
9845
8432
  # added. This value is an Amazon Resource Name (ARN).
@@ -9881,14 +8468,6 @@ module Aws::DynamoDB
9881
8468
  # Represents the settings used to enable or disable Time to Live (TTL)
9882
8469
  # for the specified table.
9883
8470
  #
9884
- # @note When making an API call, you may pass TimeToLiveSpecification
9885
- # data as a hash:
9886
- #
9887
- # {
9888
- # enabled: false, # required
9889
- # attribute_name: "TimeToLiveAttributeName", # required
9890
- # }
9891
- #
9892
8471
  # @!attribute [rw] enabled
9893
8472
  # Indicates whether TTL is to be enabled (true) or disabled (false) on
9894
8473
  # the table.
@@ -9910,22 +8489,6 @@ module Aws::DynamoDB
9910
8489
 
9911
8490
  # Specifies an item to be retrieved as part of the transaction.
9912
8491
  #
9913
- # @note When making an API call, you may pass TransactGetItem
9914
- # data as a hash:
9915
- #
9916
- # {
9917
- # get: { # required
9918
- # key: { # required
9919
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
9920
- # },
9921
- # table_name: "TableName", # required
9922
- # projection_expression: "ProjectionExpression",
9923
- # expression_attribute_names: {
9924
- # "ExpressionAttributeNameVariable" => "AttributeName",
9925
- # },
9926
- # },
9927
- # }
9928
- #
9929
8492
  # @!attribute [rw] get
9930
8493
  # Contains the primary key that identifies the item to get, together
9931
8494
  # with the name of the table that contains the item, and optionally
@@ -9940,27 +8503,6 @@ module Aws::DynamoDB
9940
8503
  include Aws::Structure
9941
8504
  end
9942
8505
 
9943
- # @note When making an API call, you may pass TransactGetItemsInput
9944
- # data as a hash:
9945
- #
9946
- # {
9947
- # transact_items: [ # required
9948
- # {
9949
- # get: { # required
9950
- # key: { # required
9951
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
9952
- # },
9953
- # table_name: "TableName", # required
9954
- # projection_expression: "ProjectionExpression",
9955
- # expression_attribute_names: {
9956
- # "ExpressionAttributeNameVariable" => "AttributeName",
9957
- # },
9958
- # },
9959
- # },
9960
- # ],
9961
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
9962
- # }
9963
- #
9964
8506
  # @!attribute [rw] transact_items
9965
8507
  # An ordered array of up to 100 `TransactGetItem` objects, each of
9966
8508
  # which contains a `Get` structure.
@@ -10014,69 +8556,6 @@ module Aws::DynamoDB
10014
8556
  # A list of requests that can perform update, put, delete, or check
10015
8557
  # operations on multiple items in one or more tables atomically.
10016
8558
  #
10017
- # @note When making an API call, you may pass TransactWriteItem
10018
- # data as a hash:
10019
- #
10020
- # {
10021
- # condition_check: {
10022
- # key: { # required
10023
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10024
- # },
10025
- # table_name: "TableName", # required
10026
- # condition_expression: "ConditionExpression", # required
10027
- # expression_attribute_names: {
10028
- # "ExpressionAttributeNameVariable" => "AttributeName",
10029
- # },
10030
- # expression_attribute_values: {
10031
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10032
- # },
10033
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10034
- # },
10035
- # put: {
10036
- # item: { # required
10037
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10038
- # },
10039
- # table_name: "TableName", # required
10040
- # condition_expression: "ConditionExpression",
10041
- # expression_attribute_names: {
10042
- # "ExpressionAttributeNameVariable" => "AttributeName",
10043
- # },
10044
- # expression_attribute_values: {
10045
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10046
- # },
10047
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10048
- # },
10049
- # delete: {
10050
- # key: { # required
10051
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10052
- # },
10053
- # table_name: "TableName", # required
10054
- # condition_expression: "ConditionExpression",
10055
- # expression_attribute_names: {
10056
- # "ExpressionAttributeNameVariable" => "AttributeName",
10057
- # },
10058
- # expression_attribute_values: {
10059
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10060
- # },
10061
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10062
- # },
10063
- # update: {
10064
- # key: { # required
10065
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10066
- # },
10067
- # update_expression: "UpdateExpression", # required
10068
- # table_name: "TableName", # required
10069
- # condition_expression: "ConditionExpression",
10070
- # expression_attribute_names: {
10071
- # "ExpressionAttributeNameVariable" => "AttributeName",
10072
- # },
10073
- # expression_attribute_values: {
10074
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10075
- # },
10076
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10077
- # },
10078
- # }
10079
- #
10080
8559
  # @!attribute [rw] condition_check
10081
8560
  # A request to perform a check item operation.
10082
8561
  # @return [Types::ConditionCheck]
@@ -10104,76 +8583,6 @@ module Aws::DynamoDB
10104
8583
  include Aws::Structure
10105
8584
  end
10106
8585
 
10107
- # @note When making an API call, you may pass TransactWriteItemsInput
10108
- # data as a hash:
10109
- #
10110
- # {
10111
- # transact_items: [ # required
10112
- # {
10113
- # condition_check: {
10114
- # key: { # required
10115
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10116
- # },
10117
- # table_name: "TableName", # required
10118
- # condition_expression: "ConditionExpression", # required
10119
- # expression_attribute_names: {
10120
- # "ExpressionAttributeNameVariable" => "AttributeName",
10121
- # },
10122
- # expression_attribute_values: {
10123
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10124
- # },
10125
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10126
- # },
10127
- # put: {
10128
- # item: { # required
10129
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10130
- # },
10131
- # table_name: "TableName", # required
10132
- # condition_expression: "ConditionExpression",
10133
- # expression_attribute_names: {
10134
- # "ExpressionAttributeNameVariable" => "AttributeName",
10135
- # },
10136
- # expression_attribute_values: {
10137
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10138
- # },
10139
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10140
- # },
10141
- # delete: {
10142
- # key: { # required
10143
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10144
- # },
10145
- # table_name: "TableName", # required
10146
- # condition_expression: "ConditionExpression",
10147
- # expression_attribute_names: {
10148
- # "ExpressionAttributeNameVariable" => "AttributeName",
10149
- # },
10150
- # expression_attribute_values: {
10151
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10152
- # },
10153
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10154
- # },
10155
- # update: {
10156
- # key: { # required
10157
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10158
- # },
10159
- # update_expression: "UpdateExpression", # required
10160
- # table_name: "TableName", # required
10161
- # condition_expression: "ConditionExpression",
10162
- # expression_attribute_names: {
10163
- # "ExpressionAttributeNameVariable" => "AttributeName",
10164
- # },
10165
- # expression_attribute_values: {
10166
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10167
- # },
10168
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10169
- # },
10170
- # },
10171
- # ],
10172
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
10173
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
10174
- # client_request_token: "ClientRequestToken",
10175
- # }
10176
- #
10177
8586
  # @!attribute [rw] transact_items
10178
8587
  # An ordered array of up to 100 `TransactWriteItem` objects, each of
10179
8588
  # which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
@@ -10468,14 +8877,6 @@ module Aws::DynamoDB
10468
8877
  include Aws::Structure
10469
8878
  end
10470
8879
 
10471
- # @note When making an API call, you may pass UntagResourceInput
10472
- # data as a hash:
10473
- #
10474
- # {
10475
- # resource_arn: "ResourceArnString", # required
10476
- # tag_keys: ["TagKeyString"], # required
10477
- # }
10478
- #
10479
8880
  # @!attribute [rw] resource_arn
10480
8881
  # The DynamoDB resource that the tags will be removed from. This value
10481
8882
  # is an Amazon Resource Name (ARN).
@@ -10497,25 +8898,6 @@ module Aws::DynamoDB
10497
8898
 
10498
8899
  # Represents a request to perform an `UpdateItem` operation.
10499
8900
  #
10500
- # @note When making an API call, you may pass Update
10501
- # data as a hash:
10502
- #
10503
- # {
10504
- # key: { # required
10505
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10506
- # },
10507
- # update_expression: "UpdateExpression", # required
10508
- # table_name: "TableName", # required
10509
- # condition_expression: "ConditionExpression",
10510
- # expression_attribute_names: {
10511
- # "ExpressionAttributeNameVariable" => "AttributeName",
10512
- # },
10513
- # expression_attribute_values: {
10514
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10515
- # },
10516
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10517
- # }
10518
- #
10519
8901
  # @!attribute [rw] key
10520
8902
  # The primary key of the item to be updated. Each element consists of
10521
8903
  # an attribute name and a value for that attribute.
@@ -10565,16 +8947,6 @@ module Aws::DynamoDB
10565
8947
  include Aws::Structure
10566
8948
  end
10567
8949
 
10568
- # @note When making an API call, you may pass UpdateContinuousBackupsInput
10569
- # data as a hash:
10570
- #
10571
- # {
10572
- # table_name: "TableName", # required
10573
- # point_in_time_recovery_specification: { # required
10574
- # point_in_time_recovery_enabled: false, # required
10575
- # },
10576
- # }
10577
- #
10578
8950
  # @!attribute [rw] table_name
10579
8951
  # The name of the table.
10580
8952
  # @return [String]
@@ -10605,15 +8977,6 @@ module Aws::DynamoDB
10605
8977
  include Aws::Structure
10606
8978
  end
10607
8979
 
10608
- # @note When making an API call, you may pass UpdateContributorInsightsInput
10609
- # data as a hash:
10610
- #
10611
- # {
10612
- # table_name: "TableName", # required
10613
- # index_name: "IndexName",
10614
- # contributor_insights_action: "ENABLE", # required, accepts ENABLE, DISABLE
10615
- # }
10616
- #
10617
8980
  # @!attribute [rw] table_name
10618
8981
  # The name of the table.
10619
8982
  # @return [String]
@@ -10661,17 +9024,6 @@ module Aws::DynamoDB
10661
9024
  # Represents the new provisioned throughput settings to be applied to a
10662
9025
  # global secondary index.
10663
9026
  #
10664
- # @note When making an API call, you may pass UpdateGlobalSecondaryIndexAction
10665
- # data as a hash:
10666
- #
10667
- # {
10668
- # index_name: "IndexName", # required
10669
- # provisioned_throughput: { # required
10670
- # read_capacity_units: 1, # required
10671
- # write_capacity_units: 1, # required
10672
- # },
10673
- # }
10674
- #
10675
9027
  # @!attribute [rw] index_name
10676
9028
  # The name of the global secondary index to be updated.
10677
9029
  # @return [String]
@@ -10698,23 +9050,6 @@ module Aws::DynamoDB
10698
9050
  include Aws::Structure
10699
9051
  end
10700
9052
 
10701
- # @note When making an API call, you may pass UpdateGlobalTableInput
10702
- # data as a hash:
10703
- #
10704
- # {
10705
- # global_table_name: "TableName", # required
10706
- # replica_updates: [ # required
10707
- # {
10708
- # create: {
10709
- # region_name: "RegionName", # required
10710
- # },
10711
- # delete: {
10712
- # region_name: "RegionName", # required
10713
- # },
10714
- # },
10715
- # ],
10716
- # }
10717
- #
10718
9053
  # @!attribute [rw] global_table_name
10719
9054
  # The global table name.
10720
9055
  # @return [String]
@@ -10745,94 +9080,6 @@ module Aws::DynamoDB
10745
9080
  include Aws::Structure
10746
9081
  end
10747
9082
 
10748
- # @note When making an API call, you may pass UpdateGlobalTableSettingsInput
10749
- # data as a hash:
10750
- #
10751
- # {
10752
- # global_table_name: "TableName", # required
10753
- # global_table_billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
10754
- # global_table_provisioned_write_capacity_units: 1,
10755
- # global_table_provisioned_write_capacity_auto_scaling_settings_update: {
10756
- # minimum_units: 1,
10757
- # maximum_units: 1,
10758
- # auto_scaling_disabled: false,
10759
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10760
- # scaling_policy_update: {
10761
- # policy_name: "AutoScalingPolicyName",
10762
- # target_tracking_scaling_policy_configuration: { # required
10763
- # disable_scale_in: false,
10764
- # scale_in_cooldown: 1,
10765
- # scale_out_cooldown: 1,
10766
- # target_value: 1.0, # required
10767
- # },
10768
- # },
10769
- # },
10770
- # global_table_global_secondary_index_settings_update: [
10771
- # {
10772
- # index_name: "IndexName", # required
10773
- # provisioned_write_capacity_units: 1,
10774
- # provisioned_write_capacity_auto_scaling_settings_update: {
10775
- # minimum_units: 1,
10776
- # maximum_units: 1,
10777
- # auto_scaling_disabled: false,
10778
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10779
- # scaling_policy_update: {
10780
- # policy_name: "AutoScalingPolicyName",
10781
- # target_tracking_scaling_policy_configuration: { # required
10782
- # disable_scale_in: false,
10783
- # scale_in_cooldown: 1,
10784
- # scale_out_cooldown: 1,
10785
- # target_value: 1.0, # required
10786
- # },
10787
- # },
10788
- # },
10789
- # },
10790
- # ],
10791
- # replica_settings_update: [
10792
- # {
10793
- # region_name: "RegionName", # required
10794
- # replica_provisioned_read_capacity_units: 1,
10795
- # replica_provisioned_read_capacity_auto_scaling_settings_update: {
10796
- # minimum_units: 1,
10797
- # maximum_units: 1,
10798
- # auto_scaling_disabled: false,
10799
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10800
- # scaling_policy_update: {
10801
- # policy_name: "AutoScalingPolicyName",
10802
- # target_tracking_scaling_policy_configuration: { # required
10803
- # disable_scale_in: false,
10804
- # scale_in_cooldown: 1,
10805
- # scale_out_cooldown: 1,
10806
- # target_value: 1.0, # required
10807
- # },
10808
- # },
10809
- # },
10810
- # replica_global_secondary_index_settings_update: [
10811
- # {
10812
- # index_name: "IndexName", # required
10813
- # provisioned_read_capacity_units: 1,
10814
- # provisioned_read_capacity_auto_scaling_settings_update: {
10815
- # minimum_units: 1,
10816
- # maximum_units: 1,
10817
- # auto_scaling_disabled: false,
10818
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10819
- # scaling_policy_update: {
10820
- # policy_name: "AutoScalingPolicyName",
10821
- # target_tracking_scaling_policy_configuration: { # required
10822
- # disable_scale_in: false,
10823
- # scale_in_cooldown: 1,
10824
- # scale_out_cooldown: 1,
10825
- # target_value: 1.0, # required
10826
- # },
10827
- # },
10828
- # },
10829
- # },
10830
- # ],
10831
- # replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
10832
- # },
10833
- # ],
10834
- # }
10835
- #
10836
9083
  # @!attribute [rw] global_table_name
10837
9084
  # The name of the global table
10838
9085
  # @return [String]
@@ -10908,42 +9155,6 @@ module Aws::DynamoDB
10908
9155
 
10909
9156
  # Represents the input of an `UpdateItem` operation.
10910
9157
  #
10911
- # @note When making an API call, you may pass UpdateItemInput
10912
- # data as a hash:
10913
- #
10914
- # {
10915
- # table_name: "TableName", # required
10916
- # key: { # required
10917
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10918
- # },
10919
- # attribute_updates: {
10920
- # "AttributeName" => {
10921
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10922
- # action: "ADD", # accepts ADD, PUT, DELETE
10923
- # },
10924
- # },
10925
- # expected: {
10926
- # "AttributeName" => {
10927
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10928
- # exists: false,
10929
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
10930
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10931
- # },
10932
- # },
10933
- # conditional_operator: "AND", # accepts AND, OR
10934
- # return_values: "NONE", # accepts NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW
10935
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
10936
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
10937
- # update_expression: "UpdateExpression",
10938
- # condition_expression: "ConditionExpression",
10939
- # expression_attribute_names: {
10940
- # "ExpressionAttributeNameVariable" => "AttributeName",
10941
- # },
10942
- # expression_attribute_values: {
10943
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10944
- # },
10945
- # }
10946
- #
10947
9158
  # @!attribute [rw] table_name
10948
9159
  # The name of the table containing the item to update.
10949
9160
  # @return [String]
@@ -11325,26 +9536,6 @@ module Aws::DynamoDB
11325
9536
 
11326
9537
  # Represents a replica to be modified.
11327
9538
  #
11328
- # @note When making an API call, you may pass UpdateReplicationGroupMemberAction
11329
- # data as a hash:
11330
- #
11331
- # {
11332
- # region_name: "RegionName", # required
11333
- # kms_master_key_id: "KMSMasterKeyId",
11334
- # provisioned_throughput_override: {
11335
- # read_capacity_units: 1,
11336
- # },
11337
- # global_secondary_indexes: [
11338
- # {
11339
- # index_name: "IndexName", # required
11340
- # provisioned_throughput_override: {
11341
- # read_capacity_units: 1,
11342
- # },
11343
- # },
11344
- # ],
11345
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11346
- # }
11347
- #
11348
9539
  # @!attribute [rw] region_name
11349
9540
  # The Region where the replica exists.
11350
9541
  # @return [String]
@@ -11385,104 +9576,6 @@ module Aws::DynamoDB
11385
9576
 
11386
9577
  # Represents the input of an `UpdateTable` operation.
11387
9578
  #
11388
- # @note When making an API call, you may pass UpdateTableInput
11389
- # data as a hash:
11390
- #
11391
- # {
11392
- # attribute_definitions: [
11393
- # {
11394
- # attribute_name: "KeySchemaAttributeName", # required
11395
- # attribute_type: "S", # required, accepts S, N, B
11396
- # },
11397
- # ],
11398
- # table_name: "TableName", # required
11399
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
11400
- # provisioned_throughput: {
11401
- # read_capacity_units: 1, # required
11402
- # write_capacity_units: 1, # required
11403
- # },
11404
- # global_secondary_index_updates: [
11405
- # {
11406
- # update: {
11407
- # index_name: "IndexName", # required
11408
- # provisioned_throughput: { # required
11409
- # read_capacity_units: 1, # required
11410
- # write_capacity_units: 1, # required
11411
- # },
11412
- # },
11413
- # create: {
11414
- # index_name: "IndexName", # required
11415
- # key_schema: [ # required
11416
- # {
11417
- # attribute_name: "KeySchemaAttributeName", # required
11418
- # key_type: "HASH", # required, accepts HASH, RANGE
11419
- # },
11420
- # ],
11421
- # projection: { # required
11422
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
11423
- # non_key_attributes: ["NonKeyAttributeName"],
11424
- # },
11425
- # provisioned_throughput: {
11426
- # read_capacity_units: 1, # required
11427
- # write_capacity_units: 1, # required
11428
- # },
11429
- # },
11430
- # delete: {
11431
- # index_name: "IndexName", # required
11432
- # },
11433
- # },
11434
- # ],
11435
- # stream_specification: {
11436
- # stream_enabled: false, # required
11437
- # stream_view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES, KEYS_ONLY
11438
- # },
11439
- # sse_specification: {
11440
- # enabled: false,
11441
- # sse_type: "AES256", # accepts AES256, KMS
11442
- # kms_master_key_id: "KMSMasterKeyId",
11443
- # },
11444
- # replica_updates: [
11445
- # {
11446
- # create: {
11447
- # region_name: "RegionName", # required
11448
- # kms_master_key_id: "KMSMasterKeyId",
11449
- # provisioned_throughput_override: {
11450
- # read_capacity_units: 1,
11451
- # },
11452
- # global_secondary_indexes: [
11453
- # {
11454
- # index_name: "IndexName", # required
11455
- # provisioned_throughput_override: {
11456
- # read_capacity_units: 1,
11457
- # },
11458
- # },
11459
- # ],
11460
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11461
- # },
11462
- # update: {
11463
- # region_name: "RegionName", # required
11464
- # kms_master_key_id: "KMSMasterKeyId",
11465
- # provisioned_throughput_override: {
11466
- # read_capacity_units: 1,
11467
- # },
11468
- # global_secondary_indexes: [
11469
- # {
11470
- # index_name: "IndexName", # required
11471
- # provisioned_throughput_override: {
11472
- # read_capacity_units: 1,
11473
- # },
11474
- # },
11475
- # ],
11476
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11477
- # },
11478
- # delete: {
11479
- # region_name: "RegionName", # required
11480
- # },
11481
- # },
11482
- # ],
11483
- # table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11484
- # }
11485
- #
11486
9579
  # @!attribute [rw] attribute_definitions
11487
9580
  # An array of attributes that describe the key schema for the table
11488
9581
  # and indexes. If you are adding a new global secondary index to the
@@ -11606,88 +9699,6 @@ module Aws::DynamoDB
11606
9699
  include Aws::Structure
11607
9700
  end
11608
9701
 
11609
- # @note When making an API call, you may pass UpdateTableReplicaAutoScalingInput
11610
- # data as a hash:
11611
- #
11612
- # {
11613
- # global_secondary_index_updates: [
11614
- # {
11615
- # index_name: "IndexName",
11616
- # provisioned_write_capacity_auto_scaling_update: {
11617
- # minimum_units: 1,
11618
- # maximum_units: 1,
11619
- # auto_scaling_disabled: false,
11620
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11621
- # scaling_policy_update: {
11622
- # policy_name: "AutoScalingPolicyName",
11623
- # target_tracking_scaling_policy_configuration: { # required
11624
- # disable_scale_in: false,
11625
- # scale_in_cooldown: 1,
11626
- # scale_out_cooldown: 1,
11627
- # target_value: 1.0, # required
11628
- # },
11629
- # },
11630
- # },
11631
- # },
11632
- # ],
11633
- # table_name: "TableName", # required
11634
- # provisioned_write_capacity_auto_scaling_update: {
11635
- # minimum_units: 1,
11636
- # maximum_units: 1,
11637
- # auto_scaling_disabled: false,
11638
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11639
- # scaling_policy_update: {
11640
- # policy_name: "AutoScalingPolicyName",
11641
- # target_tracking_scaling_policy_configuration: { # required
11642
- # disable_scale_in: false,
11643
- # scale_in_cooldown: 1,
11644
- # scale_out_cooldown: 1,
11645
- # target_value: 1.0, # required
11646
- # },
11647
- # },
11648
- # },
11649
- # replica_updates: [
11650
- # {
11651
- # region_name: "RegionName", # required
11652
- # replica_global_secondary_index_updates: [
11653
- # {
11654
- # index_name: "IndexName",
11655
- # provisioned_read_capacity_auto_scaling_update: {
11656
- # minimum_units: 1,
11657
- # maximum_units: 1,
11658
- # auto_scaling_disabled: false,
11659
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11660
- # scaling_policy_update: {
11661
- # policy_name: "AutoScalingPolicyName",
11662
- # target_tracking_scaling_policy_configuration: { # required
11663
- # disable_scale_in: false,
11664
- # scale_in_cooldown: 1,
11665
- # scale_out_cooldown: 1,
11666
- # target_value: 1.0, # required
11667
- # },
11668
- # },
11669
- # },
11670
- # },
11671
- # ],
11672
- # replica_provisioned_read_capacity_auto_scaling_update: {
11673
- # minimum_units: 1,
11674
- # maximum_units: 1,
11675
- # auto_scaling_disabled: false,
11676
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11677
- # scaling_policy_update: {
11678
- # policy_name: "AutoScalingPolicyName",
11679
- # target_tracking_scaling_policy_configuration: { # required
11680
- # disable_scale_in: false,
11681
- # scale_in_cooldown: 1,
11682
- # scale_out_cooldown: 1,
11683
- # target_value: 1.0, # required
11684
- # },
11685
- # },
11686
- # },
11687
- # },
11688
- # ],
11689
- # }
11690
- #
11691
9702
  # @!attribute [rw] global_secondary_index_updates
11692
9703
  # Represents the auto scaling settings of the global secondary indexes
11693
9704
  # of the replica to be updated.
@@ -11733,17 +9744,6 @@ module Aws::DynamoDB
11733
9744
 
11734
9745
  # Represents the input of an `UpdateTimeToLive` operation.
11735
9746
  #
11736
- # @note When making an API call, you may pass UpdateTimeToLiveInput
11737
- # data as a hash:
11738
- #
11739
- # {
11740
- # table_name: "TableName", # required
11741
- # time_to_live_specification: { # required
11742
- # enabled: false, # required
11743
- # attribute_name: "TimeToLiveAttributeName", # required
11744
- # },
11745
- # }
11746
- #
11747
9747
  # @!attribute [rw] table_name
11748
9748
  # The name of the table to be configured.
11749
9749
  # @return [String]
@@ -11779,22 +9779,6 @@ module Aws::DynamoDB
11779
9779
  # `WriteRequest`. If you do need to perform both of these operations,
11780
9780
  # you need to provide two separate `WriteRequest` objects.
11781
9781
  #
11782
- # @note When making an API call, you may pass WriteRequest
11783
- # data as a hash:
11784
- #
11785
- # {
11786
- # put_request: {
11787
- # item: { # required
11788
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
11789
- # },
11790
- # },
11791
- # delete_request: {
11792
- # key: { # required
11793
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
11794
- # },
11795
- # },
11796
- # }
11797
- #
11798
9782
  # @!attribute [rw] put_request
11799
9783
  # A request to perform a `PutItem` operation.
11800
9784
  # @return [Types::PutRequest]