aws-sdk-dynamodb 1.79.0 → 1.80.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -1389,14 +1244,6 @@ module Aws::DynamoDB
1389
1244
  # * For a `Scan` operation, `Condition` is used in a `ScanFilter`, which
1390
1245
  # evaluates the scan results and returns only the desired values.
1391
1246
  #
1392
- # @note When making an API call, you may pass Condition
1393
- # data as a hash:
1394
- #
1395
- # {
1396
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1397
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
1398
- # }
1399
- #
1400
1247
  # @!attribute [rw] attribute_value_list
1401
1248
  # One or more values to evaluate against the supplied attribute. The
1402
1249
  # number of values in the list depends on the `ComparisonOperator`
@@ -1604,24 +1451,6 @@ module Aws::DynamoDB
1604
1451
  # Represents a request to perform a check that an item exists or to
1605
1452
  # check the condition of specific attributes of the item.
1606
1453
  #
1607
- # @note When making an API call, you may pass ConditionCheck
1608
- # data as a hash:
1609
- #
1610
- # {
1611
- # key: { # required
1612
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1613
- # },
1614
- # table_name: "TableName", # required
1615
- # condition_expression: "ConditionExpression", # required
1616
- # expression_attribute_names: {
1617
- # "ExpressionAttributeNameVariable" => "AttributeName",
1618
- # },
1619
- # expression_attribute_values: {
1620
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
1621
- # },
1622
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
1623
- # }
1624
- #
1625
1454
  # @!attribute [rw] key
1626
1455
  # The primary key of the item to be checked. Each element consists of
1627
1456
  # an attribute name and a value for that attribute.
@@ -1795,14 +1624,6 @@ module Aws::DynamoDB
1795
1624
  include Aws::Structure
1796
1625
  end
1797
1626
 
1798
- # @note When making an API call, you may pass CreateBackupInput
1799
- # data as a hash:
1800
- #
1801
- # {
1802
- # table_name: "TableName", # required
1803
- # backup_name: "BackupName", # required
1804
- # }
1805
- #
1806
1627
  # @!attribute [rw] table_name
1807
1628
  # The name of the table.
1808
1629
  # @return [String]
@@ -1835,27 +1656,6 @@ module Aws::DynamoDB
1835
1656
  # Represents a new global secondary index to be added to an existing
1836
1657
  # table.
1837
1658
  #
1838
- # @note When making an API call, you may pass CreateGlobalSecondaryIndexAction
1839
- # data as a hash:
1840
- #
1841
- # {
1842
- # index_name: "IndexName", # required
1843
- # key_schema: [ # required
1844
- # {
1845
- # attribute_name: "KeySchemaAttributeName", # required
1846
- # key_type: "HASH", # required, accepts HASH, RANGE
1847
- # },
1848
- # ],
1849
- # projection: { # required
1850
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
1851
- # non_key_attributes: ["NonKeyAttributeName"],
1852
- # },
1853
- # provisioned_throughput: {
1854
- # read_capacity_units: 1, # required
1855
- # write_capacity_units: 1, # required
1856
- # },
1857
- # }
1858
- #
1859
1659
  # @!attribute [rw] index_name
1860
1660
  # The name of the global secondary index to be created.
1861
1661
  # @return [String]
@@ -1894,18 +1694,6 @@ module Aws::DynamoDB
1894
1694
  include Aws::Structure
1895
1695
  end
1896
1696
 
1897
- # @note When making an API call, you may pass CreateGlobalTableInput
1898
- # data as a hash:
1899
- #
1900
- # {
1901
- # global_table_name: "TableName", # required
1902
- # replication_group: [ # required
1903
- # {
1904
- # region_name: "RegionName",
1905
- # },
1906
- # ],
1907
- # }
1908
- #
1909
1697
  # @!attribute [rw] global_table_name
1910
1698
  # The global table name.
1911
1699
  # @return [String]
@@ -1937,13 +1725,6 @@ module Aws::DynamoDB
1937
1725
 
1938
1726
  # Represents a replica to be added.
1939
1727
  #
1940
- # @note When making an API call, you may pass CreateReplicaAction
1941
- # data as a hash:
1942
- #
1943
- # {
1944
- # region_name: "RegionName", # required
1945
- # }
1946
- #
1947
1728
  # @!attribute [rw] region_name
1948
1729
  # The Region of the replica to be added.
1949
1730
  # @return [String]
@@ -1958,26 +1739,6 @@ module Aws::DynamoDB
1958
1739
 
1959
1740
  # Represents a replica to be created.
1960
1741
  #
1961
- # @note When making an API call, you may pass CreateReplicationGroupMemberAction
1962
- # data as a hash:
1963
- #
1964
- # {
1965
- # region_name: "RegionName", # required
1966
- # kms_master_key_id: "KMSMasterKeyId",
1967
- # provisioned_throughput_override: {
1968
- # read_capacity_units: 1,
1969
- # },
1970
- # global_secondary_indexes: [
1971
- # {
1972
- # index_name: "IndexName", # required
1973
- # provisioned_throughput_override: {
1974
- # read_capacity_units: 1,
1975
- # },
1976
- # },
1977
- # ],
1978
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
1979
- # }
1980
- #
1981
1742
  # @!attribute [rw] region_name
1982
1743
  # The Region where the new replica will be created.
1983
1744
  # @return [String]
@@ -2018,80 +1779,6 @@ module Aws::DynamoDB
2018
1779
 
2019
1780
  # Represents the input of a `CreateTable` operation.
2020
1781
  #
2021
- # @note When making an API call, you may pass CreateTableInput
2022
- # data as a hash:
2023
- #
2024
- # {
2025
- # attribute_definitions: [ # required
2026
- # {
2027
- # attribute_name: "KeySchemaAttributeName", # required
2028
- # attribute_type: "S", # required, accepts S, N, B
2029
- # },
2030
- # ],
2031
- # table_name: "TableName", # required
2032
- # key_schema: [ # required
2033
- # {
2034
- # attribute_name: "KeySchemaAttributeName", # required
2035
- # key_type: "HASH", # required, accepts HASH, RANGE
2036
- # },
2037
- # ],
2038
- # local_secondary_indexes: [
2039
- # {
2040
- # index_name: "IndexName", # required
2041
- # key_schema: [ # required
2042
- # {
2043
- # attribute_name: "KeySchemaAttributeName", # required
2044
- # key_type: "HASH", # required, accepts HASH, RANGE
2045
- # },
2046
- # ],
2047
- # projection: { # required
2048
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
2049
- # non_key_attributes: ["NonKeyAttributeName"],
2050
- # },
2051
- # },
2052
- # ],
2053
- # global_secondary_indexes: [
2054
- # {
2055
- # index_name: "IndexName", # required
2056
- # key_schema: [ # required
2057
- # {
2058
- # attribute_name: "KeySchemaAttributeName", # required
2059
- # key_type: "HASH", # required, accepts HASH, RANGE
2060
- # },
2061
- # ],
2062
- # projection: { # required
2063
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
2064
- # non_key_attributes: ["NonKeyAttributeName"],
2065
- # },
2066
- # provisioned_throughput: {
2067
- # read_capacity_units: 1, # required
2068
- # write_capacity_units: 1, # required
2069
- # },
2070
- # },
2071
- # ],
2072
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
2073
- # provisioned_throughput: {
2074
- # read_capacity_units: 1, # required
2075
- # write_capacity_units: 1, # required
2076
- # },
2077
- # stream_specification: {
2078
- # stream_enabled: false, # required
2079
- # stream_view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES, KEYS_ONLY
2080
- # },
2081
- # sse_specification: {
2082
- # enabled: false,
2083
- # sse_type: "AES256", # accepts AES256, KMS
2084
- # kms_master_key_id: "KMSMasterKeyId",
2085
- # },
2086
- # tags: [
2087
- # {
2088
- # key: "TagKeyString", # required
2089
- # value: "TagValueString", # required
2090
- # },
2091
- # ],
2092
- # table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
2093
- # }
2094
- #
2095
1782
  # @!attribute [rw] attribute_definitions
2096
1783
  # An array of attributes that describe the key schema for the table
2097
1784
  # and indexes.
@@ -2344,14 +2031,6 @@ module Aws::DynamoDB
2344
2031
 
2345
2032
  # Processing options for the CSV file being imported.
2346
2033
  #
2347
- # @note When making an API call, you may pass CsvOptions
2348
- # data as a hash:
2349
- #
2350
- # {
2351
- # delimiter: "CsvDelimiter",
2352
- # header_list: ["CsvHeader"],
2353
- # }
2354
- #
2355
2034
  # @!attribute [rw] delimiter
2356
2035
  # The delimiter used for separating items in the CSV file being
2357
2036
  # imported.
@@ -2376,24 +2055,6 @@ module Aws::DynamoDB
2376
2055
 
2377
2056
  # Represents a request to perform a `DeleteItem` operation.
2378
2057
  #
2379
- # @note When making an API call, you may pass Delete
2380
- # data as a hash:
2381
- #
2382
- # {
2383
- # key: { # required
2384
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2385
- # },
2386
- # table_name: "TableName", # required
2387
- # condition_expression: "ConditionExpression",
2388
- # expression_attribute_names: {
2389
- # "ExpressionAttributeNameVariable" => "AttributeName",
2390
- # },
2391
- # expression_attribute_values: {
2392
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2393
- # },
2394
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
2395
- # }
2396
- #
2397
2058
  # @!attribute [rw] key
2398
2059
  # The primary key of the item to be deleted. Each element consists of
2399
2060
  # an attribute name and a value for that attribute.
@@ -2437,13 +2098,6 @@ module Aws::DynamoDB
2437
2098
  include Aws::Structure
2438
2099
  end
2439
2100
 
2440
- # @note When making an API call, you may pass DeleteBackupInput
2441
- # data as a hash:
2442
- #
2443
- # {
2444
- # backup_arn: "BackupArn", # required
2445
- # }
2446
- #
2447
2101
  # @!attribute [rw] backup_arn
2448
2102
  # The ARN associated with the backup.
2449
2103
  # @return [String]
@@ -2471,13 +2125,6 @@ module Aws::DynamoDB
2471
2125
  # Represents a global secondary index to be deleted from an existing
2472
2126
  # table.
2473
2127
  #
2474
- # @note When making an API call, you may pass DeleteGlobalSecondaryIndexAction
2475
- # data as a hash:
2476
- #
2477
- # {
2478
- # index_name: "IndexName", # required
2479
- # }
2480
- #
2481
2128
  # @!attribute [rw] index_name
2482
2129
  # The name of the global secondary index to be deleted.
2483
2130
  # @return [String]
@@ -2492,35 +2139,6 @@ module Aws::DynamoDB
2492
2139
 
2493
2140
  # Represents the input of a `DeleteItem` operation.
2494
2141
  #
2495
- # @note When making an API call, you may pass DeleteItemInput
2496
- # data as a hash:
2497
- #
2498
- # {
2499
- # table_name: "TableName", # required
2500
- # key: { # required
2501
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2502
- # },
2503
- # expected: {
2504
- # "AttributeName" => {
2505
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2506
- # exists: false,
2507
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
2508
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2509
- # },
2510
- # },
2511
- # conditional_operator: "AND", # accepts AND, OR
2512
- # return_values: "NONE", # accepts NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW
2513
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
2514
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
2515
- # condition_expression: "ConditionExpression",
2516
- # expression_attribute_names: {
2517
- # "ExpressionAttributeNameVariable" => "AttributeName",
2518
- # },
2519
- # expression_attribute_values: {
2520
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2521
- # },
2522
- # }
2523
- #
2524
2142
  # @!attribute [rw] table_name
2525
2143
  # The name of the table from which to delete the item.
2526
2144
  # @return [String]
@@ -2786,13 +2404,6 @@ module Aws::DynamoDB
2786
2404
 
2787
2405
  # Represents a replica to be removed.
2788
2406
  #
2789
- # @note When making an API call, you may pass DeleteReplicaAction
2790
- # data as a hash:
2791
- #
2792
- # {
2793
- # region_name: "RegionName", # required
2794
- # }
2795
- #
2796
2407
  # @!attribute [rw] region_name
2797
2408
  # The Region of the replica to be removed.
2798
2409
  # @return [String]
@@ -2807,13 +2418,6 @@ module Aws::DynamoDB
2807
2418
 
2808
2419
  # Represents a replica to be deleted.
2809
2420
  #
2810
- # @note When making an API call, you may pass DeleteReplicationGroupMemberAction
2811
- # data as a hash:
2812
- #
2813
- # {
2814
- # region_name: "RegionName", # required
2815
- # }
2816
- #
2817
2421
  # @!attribute [rw] region_name
2818
2422
  # The Region where the replica exists.
2819
2423
  # @return [String]
@@ -2828,15 +2432,6 @@ module Aws::DynamoDB
2828
2432
 
2829
2433
  # Represents a request to perform a `DeleteItem` operation on an item.
2830
2434
  #
2831
- # @note When making an API call, you may pass DeleteRequest
2832
- # data as a hash:
2833
- #
2834
- # {
2835
- # key: { # required
2836
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
2837
- # },
2838
- # }
2839
- #
2840
2435
  # @!attribute [rw] key
2841
2436
  # A map of attribute name to attribute values, representing the
2842
2437
  # primary key of the item to delete. All of the table's primary key
@@ -2854,13 +2449,6 @@ module Aws::DynamoDB
2854
2449
 
2855
2450
  # Represents the input of a `DeleteTable` operation.
2856
2451
  #
2857
- # @note When making an API call, you may pass DeleteTableInput
2858
- # data as a hash:
2859
- #
2860
- # {
2861
- # table_name: "TableName", # required
2862
- # }
2863
- #
2864
2452
  # @!attribute [rw] table_name
2865
2453
  # The name of the table to delete.
2866
2454
  # @return [String]
@@ -2887,13 +2475,6 @@ module Aws::DynamoDB
2887
2475
  include Aws::Structure
2888
2476
  end
2889
2477
 
2890
- # @note When making an API call, you may pass DescribeBackupInput
2891
- # data as a hash:
2892
- #
2893
- # {
2894
- # backup_arn: "BackupArn", # required
2895
- # }
2896
- #
2897
2478
  # @!attribute [rw] backup_arn
2898
2479
  # The Amazon Resource Name (ARN) associated with the backup.
2899
2480
  # @return [String]
@@ -2918,13 +2499,6 @@ module Aws::DynamoDB
2918
2499
  include Aws::Structure
2919
2500
  end
2920
2501
 
2921
- # @note When making an API call, you may pass DescribeContinuousBackupsInput
2922
- # data as a hash:
2923
- #
2924
- # {
2925
- # table_name: "TableName", # required
2926
- # }
2927
- #
2928
2502
  # @!attribute [rw] table_name
2929
2503
  # Name of the table for which the customer wants to check the
2930
2504
  # continuous backups and point in time recovery settings.
@@ -2951,14 +2525,6 @@ module Aws::DynamoDB
2951
2525
  include Aws::Structure
2952
2526
  end
2953
2527
 
2954
- # @note When making an API call, you may pass DescribeContributorInsightsInput
2955
- # data as a hash:
2956
- #
2957
- # {
2958
- # table_name: "TableName", # required
2959
- # index_name: "IndexName",
2960
- # }
2961
- #
2962
2528
  # @!attribute [rw] table_name
2963
2529
  # The name of the table to describe.
2964
2530
  # @return [String]
@@ -3047,13 +2613,6 @@ module Aws::DynamoDB
3047
2613
  include Aws::Structure
3048
2614
  end
3049
2615
 
3050
- # @note When making an API call, you may pass DescribeExportInput
3051
- # data as a hash:
3052
- #
3053
- # {
3054
- # export_arn: "ExportArn", # required
3055
- # }
3056
- #
3057
2616
  # @!attribute [rw] export_arn
3058
2617
  # The Amazon Resource Name (ARN) associated with the export.
3059
2618
  # @return [String]
@@ -3078,13 +2637,6 @@ module Aws::DynamoDB
3078
2637
  include Aws::Structure
3079
2638
  end
3080
2639
 
3081
- # @note When making an API call, you may pass DescribeGlobalTableInput
3082
- # data as a hash:
3083
- #
3084
- # {
3085
- # global_table_name: "TableName", # required
3086
- # }
3087
- #
3088
2640
  # @!attribute [rw] global_table_name
3089
2641
  # The name of the global table.
3090
2642
  # @return [String]
@@ -3109,13 +2661,6 @@ module Aws::DynamoDB
3109
2661
  include Aws::Structure
3110
2662
  end
3111
2663
 
3112
- # @note When making an API call, you may pass DescribeGlobalTableSettingsInput
3113
- # data as a hash:
3114
- #
3115
- # {
3116
- # global_table_name: "TableName", # required
3117
- # }
3118
- #
3119
2664
  # @!attribute [rw] global_table_name
3120
2665
  # The name of the global table to describe.
3121
2666
  # @return [String]
@@ -3145,13 +2690,6 @@ module Aws::DynamoDB
3145
2690
  include Aws::Structure
3146
2691
  end
3147
2692
 
3148
- # @note When making an API call, you may pass DescribeImportInput
3149
- # data as a hash:
3150
- #
3151
- # {
3152
- # import_arn: "ImportArn", # required
3153
- # }
3154
- #
3155
2693
  # @!attribute [rw] import_arn
3156
2694
  # The Amazon Resource Name (ARN) associated with the table you're
3157
2695
  # importing to.
@@ -3180,13 +2718,6 @@ module Aws::DynamoDB
3180
2718
  include Aws::Structure
3181
2719
  end
3182
2720
 
3183
- # @note When making an API call, you may pass DescribeKinesisStreamingDestinationInput
3184
- # data as a hash:
3185
- #
3186
- # {
3187
- # table_name: "TableName", # required
3188
- # }
3189
- #
3190
2721
  # @!attribute [rw] table_name
3191
2722
  # The name of the table being described.
3192
2723
  # @return [String]
@@ -3263,13 +2794,6 @@ module Aws::DynamoDB
3263
2794
 
3264
2795
  # Represents the input of a `DescribeTable` operation.
3265
2796
  #
3266
- # @note When making an API call, you may pass DescribeTableInput
3267
- # data as a hash:
3268
- #
3269
- # {
3270
- # table_name: "TableName", # required
3271
- # }
3272
- #
3273
2797
  # @!attribute [rw] table_name
3274
2798
  # The name of the table to describe.
3275
2799
  # @return [String]
@@ -3296,13 +2820,6 @@ module Aws::DynamoDB
3296
2820
  include Aws::Structure
3297
2821
  end
3298
2822
 
3299
- # @note When making an API call, you may pass DescribeTableReplicaAutoScalingInput
3300
- # data as a hash:
3301
- #
3302
- # {
3303
- # table_name: "TableName", # required
3304
- # }
3305
- #
3306
2823
  # @!attribute [rw] table_name
3307
2824
  # The name of the table.
3308
2825
  # @return [String]
@@ -3327,13 +2844,6 @@ module Aws::DynamoDB
3327
2844
  include Aws::Structure
3328
2845
  end
3329
2846
 
3330
- # @note When making an API call, you may pass DescribeTimeToLiveInput
3331
- # data as a hash:
3332
- #
3333
- # {
3334
- # table_name: "TableName", # required
3335
- # }
3336
- #
3337
2847
  # @!attribute [rw] table_name
3338
2848
  # The name of the table to be described.
3339
2849
  # @return [String]
@@ -3390,18 +2900,6 @@ module Aws::DynamoDB
3390
2900
  include Aws::Structure
3391
2901
  end
3392
2902
 
3393
- # @note When making an API call, you may pass ExecuteStatementInput
3394
- # data as a hash:
3395
- #
3396
- # {
3397
- # statement: "PartiQLStatement", # required
3398
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3399
- # consistent_read: false,
3400
- # next_token: "PartiQLNextToken",
3401
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
3402
- # limit: 1,
3403
- # }
3404
- #
3405
2903
  # @!attribute [rw] statement
3406
2904
  # The PartiQL statement representing the operation to run.
3407
2905
  # @return [String]
@@ -3515,20 +3013,6 @@ module Aws::DynamoDB
3515
3013
  include Aws::Structure
3516
3014
  end
3517
3015
 
3518
- # @note When making an API call, you may pass ExecuteTransactionInput
3519
- # data as a hash:
3520
- #
3521
- # {
3522
- # transact_statements: [ # required
3523
- # {
3524
- # statement: "PartiQLStatement", # required
3525
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3526
- # },
3527
- # ],
3528
- # client_request_token: "ClientRequestToken",
3529
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
3530
- # }
3531
- #
3532
3016
  # @!attribute [rw] transact_statements
3533
3017
  # The list of PartiQL statements representing the transaction to run.
3534
3018
  # @return [Array<Types::ParameterizedStatement>]
@@ -3603,16 +3087,6 @@ module Aws::DynamoDB
3603
3087
  # `ComparisonOperator`. Note that if you use both sets of parameters at
3604
3088
  # once, DynamoDB will return a `ValidationException` exception.
3605
3089
  #
3606
- # @note When making an API call, you may pass ExpectedAttributeValue
3607
- # data as a hash:
3608
- #
3609
- # {
3610
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3611
- # exists: false,
3612
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
3613
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
3614
- # }
3615
- #
3616
3090
  # @!attribute [rw] value
3617
3091
  # Represents the data for the expected attribute.
3618
3092
  #
@@ -4021,21 +3495,6 @@ module Aws::DynamoDB
4021
3495
  include Aws::Structure
4022
3496
  end
4023
3497
 
4024
- # @note When making an API call, you may pass ExportTableToPointInTimeInput
4025
- # data as a hash:
4026
- #
4027
- # {
4028
- # table_arn: "TableArn", # required
4029
- # export_time: Time.now,
4030
- # client_token: "ClientToken",
4031
- # s3_bucket: "S3Bucket", # required
4032
- # s3_bucket_owner: "S3BucketOwner",
4033
- # s3_prefix: "S3Prefix",
4034
- # s3_sse_algorithm: "AES256", # accepts AES256, KMS
4035
- # s3_sse_kms_key_id: "S3SseKmsKeyId",
4036
- # export_format: "DYNAMODB_JSON", # accepts DYNAMODB_JSON, ION
4037
- # }
4038
- #
4039
3498
  # @!attribute [rw] table_arn
4040
3499
  # The Amazon Resource Name (ARN) associated with the table to export.
4041
3500
  # @return [String]
@@ -4148,20 +3607,6 @@ module Aws::DynamoDB
4148
3607
  # Specifies an item and related attribute values to retrieve in a
4149
3608
  # `TransactGetItem` object.
4150
3609
  #
4151
- # @note When making an API call, you may pass Get
4152
- # data as a hash:
4153
- #
4154
- # {
4155
- # key: { # required
4156
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
4157
- # },
4158
- # table_name: "TableName", # required
4159
- # projection_expression: "ProjectionExpression",
4160
- # expression_attribute_names: {
4161
- # "ExpressionAttributeNameVariable" => "AttributeName",
4162
- # },
4163
- # }
4164
- #
4165
3610
  # @!attribute [rw] key
4166
3611
  # A map of attribute names to `AttributeValue` objects that specifies
4167
3612
  # the primary key of the item to retrieve.
@@ -4198,23 +3643,6 @@ module Aws::DynamoDB
4198
3643
 
4199
3644
  # Represents the input of a `GetItem` operation.
4200
3645
  #
4201
- # @note When making an API call, you may pass GetItemInput
4202
- # data as a hash:
4203
- #
4204
- # {
4205
- # table_name: "TableName", # required
4206
- # key: { # required
4207
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
4208
- # },
4209
- # attributes_to_get: ["AttributeName"],
4210
- # consistent_read: false,
4211
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
4212
- # projection_expression: "ProjectionExpression",
4213
- # expression_attribute_names: {
4214
- # "ExpressionAttributeNameVariable" => "AttributeName",
4215
- # },
4216
- # }
4217
- #
4218
3646
  # @!attribute [rw] table_name
4219
3647
  # The name of the table containing the requested item.
4220
3648
  # @return [String]
@@ -4382,27 +3810,6 @@ module Aws::DynamoDB
4382
3810
 
4383
3811
  # Represents the properties of a global secondary index.
4384
3812
  #
4385
- # @note When making an API call, you may pass GlobalSecondaryIndex
4386
- # data as a hash:
4387
- #
4388
- # {
4389
- # index_name: "IndexName", # required
4390
- # key_schema: [ # required
4391
- # {
4392
- # attribute_name: "KeySchemaAttributeName", # required
4393
- # key_type: "HASH", # required, accepts HASH, RANGE
4394
- # },
4395
- # ],
4396
- # projection: { # required
4397
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
4398
- # non_key_attributes: ["NonKeyAttributeName"],
4399
- # },
4400
- # provisioned_throughput: {
4401
- # read_capacity_units: 1, # required
4402
- # write_capacity_units: 1, # required
4403
- # },
4404
- # }
4405
- #
4406
3813
  # @!attribute [rw] index_name
4407
3814
  # The name of the global secondary index. The name must be unique
4408
3815
  # among all other indexes on this table.
@@ -4463,28 +3870,6 @@ module Aws::DynamoDB
4463
3870
  # Represents the auto scaling settings of a global secondary index for a
4464
3871
  # global table that will be modified.
4465
3872
  #
4466
- # @note When making an API call, you may pass GlobalSecondaryIndexAutoScalingUpdate
4467
- # data as a hash:
4468
- #
4469
- # {
4470
- # index_name: "IndexName",
4471
- # provisioned_write_capacity_auto_scaling_update: {
4472
- # minimum_units: 1,
4473
- # maximum_units: 1,
4474
- # auto_scaling_disabled: false,
4475
- # auto_scaling_role_arn: "AutoScalingRoleArn",
4476
- # scaling_policy_update: {
4477
- # policy_name: "AutoScalingPolicyName",
4478
- # target_tracking_scaling_policy_configuration: { # required
4479
- # disable_scale_in: false,
4480
- # scale_in_cooldown: 1,
4481
- # scale_out_cooldown: 1,
4482
- # target_value: 1.0, # required
4483
- # },
4484
- # },
4485
- # },
4486
- # }
4487
- #
4488
3873
  # @!attribute [rw] index_name
4489
3874
  # The name of the global secondary index.
4490
3875
  # @return [String]
@@ -4677,39 +4062,6 @@ module Aws::DynamoDB
4677
4062
  # * An existing global secondary index to be removed from an existing
4678
4063
  # table.
4679
4064
  #
4680
- # @note When making an API call, you may pass GlobalSecondaryIndexUpdate
4681
- # data as a hash:
4682
- #
4683
- # {
4684
- # update: {
4685
- # index_name: "IndexName", # required
4686
- # provisioned_throughput: { # required
4687
- # read_capacity_units: 1, # required
4688
- # write_capacity_units: 1, # required
4689
- # },
4690
- # },
4691
- # create: {
4692
- # index_name: "IndexName", # required
4693
- # key_schema: [ # required
4694
- # {
4695
- # attribute_name: "KeySchemaAttributeName", # required
4696
- # key_type: "HASH", # required, accepts HASH, RANGE
4697
- # },
4698
- # ],
4699
- # projection: { # required
4700
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
4701
- # non_key_attributes: ["NonKeyAttributeName"],
4702
- # },
4703
- # provisioned_throughput: {
4704
- # read_capacity_units: 1, # required
4705
- # write_capacity_units: 1, # required
4706
- # },
4707
- # },
4708
- # delete: {
4709
- # index_name: "IndexName", # required
4710
- # },
4711
- # }
4712
- #
4713
4065
  # @!attribute [rw] update
4714
4066
  # The name of an existing global secondary index, along with new
4715
4067
  # provisioned throughput settings to be applied to that index.
@@ -4821,29 +4173,6 @@ module Aws::DynamoDB
4821
4173
  # Represents the settings of a global secondary index for a global table
4822
4174
  # that will be modified.
4823
4175
  #
4824
- # @note When making an API call, you may pass GlobalTableGlobalSecondaryIndexSettingsUpdate
4825
- # data as a hash:
4826
- #
4827
- # {
4828
- # index_name: "IndexName", # required
4829
- # provisioned_write_capacity_units: 1,
4830
- # provisioned_write_capacity_auto_scaling_settings_update: {
4831
- # minimum_units: 1,
4832
- # maximum_units: 1,
4833
- # auto_scaling_disabled: false,
4834
- # auto_scaling_role_arn: "AutoScalingRoleArn",
4835
- # scaling_policy_update: {
4836
- # policy_name: "AutoScalingPolicyName",
4837
- # target_tracking_scaling_policy_configuration: { # required
4838
- # disable_scale_in: false,
4839
- # scale_in_cooldown: 1,
4840
- # scale_out_cooldown: 1,
4841
- # target_value: 1.0, # required
4842
- # },
4843
- # },
4844
- # },
4845
- # }
4846
- #
4847
4176
  # @!attribute [rw] index_name
4848
4177
  # The name of the global secondary index. The name must be unique
4849
4178
  # among all other indexes on this table.
@@ -5095,70 +4424,6 @@ module Aws::DynamoDB
5095
4424
  include Aws::Structure
5096
4425
  end
5097
4426
 
5098
- # @note When making an API call, you may pass ImportTableInput
5099
- # data as a hash:
5100
- #
5101
- # {
5102
- # client_token: "ClientToken",
5103
- # s3_bucket_source: { # required
5104
- # s3_bucket_owner: "S3BucketOwner",
5105
- # s3_bucket: "S3Bucket", # required
5106
- # s3_key_prefix: "S3Prefix",
5107
- # },
5108
- # input_format: "DYNAMODB_JSON", # required, accepts DYNAMODB_JSON, ION, CSV
5109
- # input_format_options: {
5110
- # csv: {
5111
- # delimiter: "CsvDelimiter",
5112
- # header_list: ["CsvHeader"],
5113
- # },
5114
- # },
5115
- # input_compression_type: "GZIP", # accepts GZIP, ZSTD, NONE
5116
- # table_creation_parameters: { # required
5117
- # table_name: "TableName", # required
5118
- # attribute_definitions: [ # required
5119
- # {
5120
- # attribute_name: "KeySchemaAttributeName", # required
5121
- # attribute_type: "S", # required, accepts S, N, B
5122
- # },
5123
- # ],
5124
- # key_schema: [ # required
5125
- # {
5126
- # attribute_name: "KeySchemaAttributeName", # required
5127
- # key_type: "HASH", # required, accepts HASH, RANGE
5128
- # },
5129
- # ],
5130
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
5131
- # provisioned_throughput: {
5132
- # read_capacity_units: 1, # required
5133
- # write_capacity_units: 1, # required
5134
- # },
5135
- # sse_specification: {
5136
- # enabled: false,
5137
- # sse_type: "AES256", # accepts AES256, KMS
5138
- # kms_master_key_id: "KMSMasterKeyId",
5139
- # },
5140
- # global_secondary_indexes: [
5141
- # {
5142
- # index_name: "IndexName", # required
5143
- # key_schema: [ # required
5144
- # {
5145
- # attribute_name: "KeySchemaAttributeName", # required
5146
- # key_type: "HASH", # required, accepts HASH, RANGE
5147
- # },
5148
- # ],
5149
- # projection: { # required
5150
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
5151
- # non_key_attributes: ["NonKeyAttributeName"],
5152
- # },
5153
- # provisioned_throughput: {
5154
- # read_capacity_units: 1, # required
5155
- # write_capacity_units: 1, # required
5156
- # },
5157
- # },
5158
- # ],
5159
- # },
5160
- # }
5161
- #
5162
4427
  # @!attribute [rw] client_token
5163
4428
  # Providing a `ClientToken` makes the call to `ImportTableInput`
5164
4429
  # idempotent, meaning that multiple identical calls have the same
@@ -5244,16 +4509,6 @@ module Aws::DynamoDB
5244
4509
  # The format options for the data that was imported into the target
5245
4510
  # table. There is one value, CsvOption.
5246
4511
  #
5247
- # @note When making an API call, you may pass InputFormatOptions
5248
- # data as a hash:
5249
- #
5250
- # {
5251
- # csv: {
5252
- # delimiter: "CsvDelimiter",
5253
- # header_list: ["CsvHeader"],
5254
- # },
5255
- # }
5256
- #
5257
4512
  # @!attribute [rw] csv
5258
4513
  # The options for imported source files in CSV format. The values are
5259
4514
  # Delimiter and HeaderList.
@@ -5386,14 +4641,6 @@ module Aws::DynamoDB
5386
4641
  # nested attribute). The data type must be one of String, Number, or
5387
4642
  # Binary. The attribute cannot be nested within a List or a Map.
5388
4643
  #
5389
- # @note When making an API call, you may pass KeySchemaElement
5390
- # data as a hash:
5391
- #
5392
- # {
5393
- # attribute_name: "KeySchemaAttributeName", # required
5394
- # key_type: "HASH", # required, accepts HASH, RANGE
5395
- # }
5396
- #
5397
4644
  # @!attribute [rw] attribute_name
5398
4645
  # The name of a key attribute.
5399
4646
  # @return [String]
@@ -5435,23 +4682,6 @@ module Aws::DynamoDB
5435
4682
  # partition key. For a composite primary key, you must provide *both*
5436
4683
  # the partition key and the sort key.
5437
4684
  #
5438
- # @note When making an API call, you may pass KeysAndAttributes
5439
- # data as a hash:
5440
- #
5441
- # {
5442
- # keys: [ # required
5443
- # {
5444
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
5445
- # },
5446
- # ],
5447
- # attributes_to_get: ["AttributeName"],
5448
- # consistent_read: false,
5449
- # projection_expression: "ProjectionExpression",
5450
- # expression_attribute_names: {
5451
- # "ExpressionAttributeNameVariable" => "AttributeName",
5452
- # },
5453
- # }
5454
- #
5455
4685
  # @!attribute [rw] keys
5456
4686
  # The primary key attribute values that define the items and the
5457
4687
  # attributes associated with the items.
@@ -5580,14 +4810,6 @@ module Aws::DynamoDB
5580
4810
  include Aws::Structure
5581
4811
  end
5582
4812
 
5583
- # @note When making an API call, you may pass KinesisStreamingDestinationInput
5584
- # data as a hash:
5585
- #
5586
- # {
5587
- # table_name: "TableName", # required
5588
- # stream_arn: "StreamArn", # required
5589
- # }
5590
- #
5591
4813
  # @!attribute [rw] table_name
5592
4814
  # The name of the DynamoDB table.
5593
4815
  # @return [String]
@@ -5657,18 +4879,6 @@ module Aws::DynamoDB
5657
4879
  include Aws::Structure
5658
4880
  end
5659
4881
 
5660
- # @note When making an API call, you may pass ListBackupsInput
5661
- # data as a hash:
5662
- #
5663
- # {
5664
- # table_name: "TableName",
5665
- # limit: 1,
5666
- # time_range_lower_bound: Time.now,
5667
- # time_range_upper_bound: Time.now,
5668
- # exclusive_start_backup_arn: "BackupArn",
5669
- # backup_type: "USER", # accepts USER, SYSTEM, AWS_BACKUP, ALL
5670
- # }
5671
- #
5672
4882
  # @!attribute [rw] table_name
5673
4883
  # The backups from the table specified by `TableName` are listed.
5674
4884
  # @return [String]
@@ -5749,15 +4959,6 @@ module Aws::DynamoDB
5749
4959
  include Aws::Structure
5750
4960
  end
5751
4961
 
5752
- # @note When making an API call, you may pass ListContributorInsightsInput
5753
- # data as a hash:
5754
- #
5755
- # {
5756
- # table_name: "TableName",
5757
- # next_token: "NextTokenString",
5758
- # max_results: 1,
5759
- # }
5760
- #
5761
4962
  # @!attribute [rw] table_name
5762
4963
  # The name of the table.
5763
4964
  # @return [String]
@@ -5797,15 +4998,6 @@ module Aws::DynamoDB
5797
4998
  include Aws::Structure
5798
4999
  end
5799
5000
 
5800
- # @note When making an API call, you may pass ListExportsInput
5801
- # data as a hash:
5802
- #
5803
- # {
5804
- # table_arn: "TableArn",
5805
- # max_results: 1,
5806
- # next_token: "ExportNextToken",
5807
- # }
5808
- #
5809
5001
  # @!attribute [rw] table_arn
5810
5002
  # The Amazon Resource Name (ARN) associated with the exported table.
5811
5003
  # @return [String]
@@ -5849,15 +5041,6 @@ module Aws::DynamoDB
5849
5041
  include Aws::Structure
5850
5042
  end
5851
5043
 
5852
- # @note When making an API call, you may pass ListGlobalTablesInput
5853
- # data as a hash:
5854
- #
5855
- # {
5856
- # exclusive_start_global_table_name: "TableName",
5857
- # limit: 1,
5858
- # region_name: "RegionName",
5859
- # }
5860
- #
5861
5044
  # @!attribute [rw] exclusive_start_global_table_name
5862
5045
  # The first global table name that this operation will evaluate.
5863
5046
  # @return [String]
@@ -5904,15 +5087,6 @@ module Aws::DynamoDB
5904
5087
  include Aws::Structure
5905
5088
  end
5906
5089
 
5907
- # @note When making an API call, you may pass ListImportsInput
5908
- # data as a hash:
5909
- #
5910
- # {
5911
- # table_arn: "TableArn",
5912
- # page_size: 1,
5913
- # next_token: "ImportNextToken",
5914
- # }
5915
- #
5916
5090
  # @!attribute [rw] table_arn
5917
5091
  # The Amazon Resource Name (ARN) associated with the table that was
5918
5092
  # imported to.
@@ -5959,14 +5133,6 @@ module Aws::DynamoDB
5959
5133
 
5960
5134
  # Represents the input of a `ListTables` operation.
5961
5135
  #
5962
- # @note When making an API call, you may pass ListTablesInput
5963
- # data as a hash:
5964
- #
5965
- # {
5966
- # exclusive_start_table_name: "TableName",
5967
- # limit: 1,
5968
- # }
5969
- #
5970
5136
  # @!attribute [rw] exclusive_start_table_name
5971
5137
  # The first table name that this operation will evaluate. Use the
5972
5138
  # value that was returned for `LastEvaluatedTableName` in a previous
@@ -6017,14 +5183,6 @@ module Aws::DynamoDB
6017
5183
  include Aws::Structure
6018
5184
  end
6019
5185
 
6020
- # @note When making an API call, you may pass ListTagsOfResourceInput
6021
- # data as a hash:
6022
- #
6023
- # {
6024
- # resource_arn: "ResourceArnString", # required
6025
- # next_token: "NextTokenString",
6026
- # }
6027
- #
6028
5186
  # @!attribute [rw] resource_arn
6029
5187
  # The Amazon DynamoDB resource with tags to be listed. This value is
6030
5188
  # an Amazon Resource Name (ARN).
@@ -6066,23 +5224,6 @@ module Aws::DynamoDB
6066
5224
 
6067
5225
  # Represents the properties of a local secondary index.
6068
5226
  #
6069
- # @note When making an API call, you may pass LocalSecondaryIndex
6070
- # data as a hash:
6071
- #
6072
- # {
6073
- # index_name: "IndexName", # required
6074
- # key_schema: [ # required
6075
- # {
6076
- # attribute_name: "KeySchemaAttributeName", # required
6077
- # key_type: "HASH", # required, accepts HASH, RANGE
6078
- # },
6079
- # ],
6080
- # projection: { # required
6081
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
6082
- # non_key_attributes: ["NonKeyAttributeName"],
6083
- # },
6084
- # }
6085
- #
6086
5227
  # @!attribute [rw] index_name
6087
5228
  # The name of the local secondary index. The name must be unique among
6088
5229
  # all other indexes on this table.
@@ -6236,14 +5377,6 @@ module Aws::DynamoDB
6236
5377
 
6237
5378
  # Represents a PartiQL statment that uses parameters.
6238
5379
  #
6239
- # @note When making an API call, you may pass ParameterizedStatement
6240
- # data as a hash:
6241
- #
6242
- # {
6243
- # statement: "PartiQLStatement", # required
6244
- # parameters: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6245
- # }
6246
- #
6247
5380
  # @!attribute [rw] statement
6248
5381
  # A PartiQL statment that uses parameters.
6249
5382
  # @return [String]
@@ -6294,13 +5427,6 @@ module Aws::DynamoDB
6294
5427
 
6295
5428
  # Represents the settings used to enable point in time recovery.
6296
5429
  #
6297
- # @note When making an API call, you may pass PointInTimeRecoverySpecification
6298
- # data as a hash:
6299
- #
6300
- # {
6301
- # point_in_time_recovery_enabled: false, # required
6302
- # }
6303
- #
6304
5430
  # @!attribute [rw] point_in_time_recovery_enabled
6305
5431
  # Indicates whether point in time recovery is enabled (true) or
6306
5432
  # disabled (false) on the table.
@@ -6331,14 +5457,6 @@ module Aws::DynamoDB
6331
5457
  # an index. These are in addition to the primary key attributes and
6332
5458
  # index key attributes, which are automatically projected.
6333
5459
  #
6334
- # @note When making an API call, you may pass Projection
6335
- # data as a hash:
6336
- #
6337
- # {
6338
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
6339
- # non_key_attributes: ["NonKeyAttributeName"],
6340
- # }
6341
- #
6342
5460
  # @!attribute [rw] projection_type
6343
5461
  # The set of attributes that are projected into the index:
6344
5462
  #
@@ -6383,14 +5501,6 @@ module Aws::DynamoDB
6383
5501
  #
6384
5502
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html
6385
5503
  #
6386
- # @note When making an API call, you may pass ProvisionedThroughput
6387
- # data as a hash:
6388
- #
6389
- # {
6390
- # read_capacity_units: 1, # required
6391
- # write_capacity_units: 1, # required
6392
- # }
6393
- #
6394
5504
  # @!attribute [rw] read_capacity_units
6395
5505
  # The maximum number of strongly consistent reads consumed per second
6396
5506
  # before DynamoDB returns a `ThrottlingException`. For more
@@ -6504,13 +5614,6 @@ module Aws::DynamoDB
6504
5614
  # Replica-specific provisioned throughput settings. If not specified,
6505
5615
  # uses the source table's provisioned throughput settings.
6506
5616
  #
6507
- # @note When making an API call, you may pass ProvisionedThroughputOverride
6508
- # data as a hash:
6509
- #
6510
- # {
6511
- # read_capacity_units: 1,
6512
- # }
6513
- #
6514
5617
  # @!attribute [rw] read_capacity_units
6515
5618
  # Replica-specific read capacity units. If not specified, uses the
6516
5619
  # source table's read capacity settings.
@@ -6526,24 +5629,6 @@ module Aws::DynamoDB
6526
5629
 
6527
5630
  # Represents a request to perform a `PutItem` operation.
6528
5631
  #
6529
- # @note When making an API call, you may pass Put
6530
- # data as a hash:
6531
- #
6532
- # {
6533
- # item: { # required
6534
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6535
- # },
6536
- # table_name: "TableName", # required
6537
- # condition_expression: "ConditionExpression",
6538
- # expression_attribute_names: {
6539
- # "ExpressionAttributeNameVariable" => "AttributeName",
6540
- # },
6541
- # expression_attribute_values: {
6542
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6543
- # },
6544
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
6545
- # }
6546
- #
6547
5632
  # @!attribute [rw] item
6548
5633
  # A map of attribute name to attribute values, representing the
6549
5634
  # primary key of the item to be written by `PutItem`. All of the
@@ -6593,35 +5678,6 @@ module Aws::DynamoDB
6593
5678
 
6594
5679
  # Represents the input of a `PutItem` operation.
6595
5680
  #
6596
- # @note When making an API call, you may pass PutItemInput
6597
- # data as a hash:
6598
- #
6599
- # {
6600
- # table_name: "TableName", # required
6601
- # item: { # required
6602
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6603
- # },
6604
- # expected: {
6605
- # "AttributeName" => {
6606
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6607
- # exists: false,
6608
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
6609
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6610
- # },
6611
- # },
6612
- # return_values: "NONE", # accepts NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW
6613
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
6614
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
6615
- # conditional_operator: "AND", # accepts AND, OR
6616
- # condition_expression: "ConditionExpression",
6617
- # expression_attribute_names: {
6618
- # "ExpressionAttributeNameVariable" => "AttributeName",
6619
- # },
6620
- # expression_attribute_values: {
6621
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6622
- # },
6623
- # }
6624
- #
6625
5681
  # @!attribute [rw] table_name
6626
5682
  # The name of the table to contain the item.
6627
5683
  # @return [String]
@@ -6909,15 +5965,6 @@ module Aws::DynamoDB
6909
5965
 
6910
5966
  # Represents a request to perform a `PutItem` operation on an item.
6911
5967
  #
6912
- # @note When making an API call, you may pass PutRequest
6913
- # data as a hash:
6914
- #
6915
- # {
6916
- # item: { # required
6917
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6918
- # },
6919
- # }
6920
- #
6921
5968
  # @!attribute [rw] item
6922
5969
  # A map of attribute name to attribute values, representing the
6923
5970
  # primary key of an item to be processed by `PutItem`. All of the
@@ -6937,45 +5984,6 @@ module Aws::DynamoDB
6937
5984
 
6938
5985
  # Represents the input of a `Query` operation.
6939
5986
  #
6940
- # @note When making an API call, you may pass QueryInput
6941
- # data as a hash:
6942
- #
6943
- # {
6944
- # table_name: "TableName", # required
6945
- # index_name: "IndexName",
6946
- # select: "ALL_ATTRIBUTES", # accepts ALL_ATTRIBUTES, ALL_PROJECTED_ATTRIBUTES, SPECIFIC_ATTRIBUTES, COUNT
6947
- # attributes_to_get: ["AttributeName"],
6948
- # limit: 1,
6949
- # consistent_read: false,
6950
- # key_conditions: {
6951
- # "AttributeName" => {
6952
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6953
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
6954
- # },
6955
- # },
6956
- # query_filter: {
6957
- # "AttributeName" => {
6958
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6959
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
6960
- # },
6961
- # },
6962
- # conditional_operator: "AND", # accepts AND, OR
6963
- # scan_index_forward: false,
6964
- # exclusive_start_key: {
6965
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6966
- # },
6967
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
6968
- # projection_expression: "ProjectionExpression",
6969
- # filter_expression: "ConditionExpression",
6970
- # key_condition_expression: "KeyExpression",
6971
- # expression_attribute_names: {
6972
- # "ExpressionAttributeNameVariable" => "AttributeName",
6973
- # },
6974
- # expression_attribute_values: {
6975
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
6976
- # },
6977
- # }
6978
- #
6979
5987
  # @!attribute [rw] table_name
6980
5988
  # The name of the table containing the requested items.
6981
5989
  # @return [String]
@@ -7463,13 +6471,6 @@ module Aws::DynamoDB
7463
6471
 
7464
6472
  # Represents the properties of a replica.
7465
6473
  #
7466
- # @note When making an API call, you may pass Replica
7467
- # data as a hash:
7468
- #
7469
- # {
7470
- # region_name: "RegionName",
7471
- # }
7472
- #
7473
6474
  # @!attribute [rw] region_name
7474
6475
  # The Region where the replica needs to be created.
7475
6476
  # @return [String]
@@ -7542,48 +6543,6 @@ module Aws::DynamoDB
7542
6543
  # Represents the auto scaling settings of a replica that will be
7543
6544
  # modified.
7544
6545
  #
7545
- # @note When making an API call, you may pass ReplicaAutoScalingUpdate
7546
- # data as a hash:
7547
- #
7548
- # {
7549
- # region_name: "RegionName", # required
7550
- # replica_global_secondary_index_updates: [
7551
- # {
7552
- # index_name: "IndexName",
7553
- # provisioned_read_capacity_auto_scaling_update: {
7554
- # minimum_units: 1,
7555
- # maximum_units: 1,
7556
- # auto_scaling_disabled: false,
7557
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7558
- # scaling_policy_update: {
7559
- # policy_name: "AutoScalingPolicyName",
7560
- # target_tracking_scaling_policy_configuration: { # required
7561
- # disable_scale_in: false,
7562
- # scale_in_cooldown: 1,
7563
- # scale_out_cooldown: 1,
7564
- # target_value: 1.0, # required
7565
- # },
7566
- # },
7567
- # },
7568
- # },
7569
- # ],
7570
- # replica_provisioned_read_capacity_auto_scaling_update: {
7571
- # minimum_units: 1,
7572
- # maximum_units: 1,
7573
- # auto_scaling_disabled: false,
7574
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7575
- # scaling_policy_update: {
7576
- # policy_name: "AutoScalingPolicyName",
7577
- # target_tracking_scaling_policy_configuration: { # required
7578
- # disable_scale_in: false,
7579
- # scale_in_cooldown: 1,
7580
- # scale_out_cooldown: 1,
7581
- # target_value: 1.0, # required
7582
- # },
7583
- # },
7584
- # },
7585
- # }
7586
- #
7587
6546
  # @!attribute [rw] region_name
7588
6547
  # The Region where the replica exists.
7589
6548
  # @return [String]
@@ -7696,16 +6655,6 @@ module Aws::DynamoDB
7696
6655
 
7697
6656
  # Represents the properties of a replica global secondary index.
7698
6657
  #
7699
- # @note When making an API call, you may pass ReplicaGlobalSecondaryIndex
7700
- # data as a hash:
7701
- #
7702
- # {
7703
- # index_name: "IndexName", # required
7704
- # provisioned_throughput_override: {
7705
- # read_capacity_units: 1,
7706
- # },
7707
- # }
7708
- #
7709
6658
  # @!attribute [rw] index_name
7710
6659
  # The name of the global secondary index.
7711
6660
  # @return [String]
@@ -7768,28 +6717,6 @@ module Aws::DynamoDB
7768
6717
  # Represents the auto scaling settings of a global secondary index for a
7769
6718
  # replica that will be modified.
7770
6719
  #
7771
- # @note When making an API call, you may pass ReplicaGlobalSecondaryIndexAutoScalingUpdate
7772
- # data as a hash:
7773
- #
7774
- # {
7775
- # index_name: "IndexName",
7776
- # provisioned_read_capacity_auto_scaling_update: {
7777
- # minimum_units: 1,
7778
- # maximum_units: 1,
7779
- # auto_scaling_disabled: false,
7780
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7781
- # scaling_policy_update: {
7782
- # policy_name: "AutoScalingPolicyName",
7783
- # target_tracking_scaling_policy_configuration: { # required
7784
- # disable_scale_in: false,
7785
- # scale_in_cooldown: 1,
7786
- # scale_out_cooldown: 1,
7787
- # target_value: 1.0, # required
7788
- # },
7789
- # },
7790
- # },
7791
- # }
7792
- #
7793
6720
  # @!attribute [rw] index_name
7794
6721
  # The name of the global secondary index.
7795
6722
  # @return [String]
@@ -7883,29 +6810,6 @@ module Aws::DynamoDB
7883
6810
  # Represents the settings of a global secondary index for a global table
7884
6811
  # that will be modified.
7885
6812
  #
7886
- # @note When making an API call, you may pass ReplicaGlobalSecondaryIndexSettingsUpdate
7887
- # data as a hash:
7888
- #
7889
- # {
7890
- # index_name: "IndexName", # required
7891
- # provisioned_read_capacity_units: 1,
7892
- # provisioned_read_capacity_auto_scaling_settings_update: {
7893
- # minimum_units: 1,
7894
- # maximum_units: 1,
7895
- # auto_scaling_disabled: false,
7896
- # auto_scaling_role_arn: "AutoScalingRoleArn",
7897
- # scaling_policy_update: {
7898
- # policy_name: "AutoScalingPolicyName",
7899
- # target_tracking_scaling_policy_configuration: { # required
7900
- # disable_scale_in: false,
7901
- # scale_in_cooldown: 1,
7902
- # scale_out_cooldown: 1,
7903
- # target_value: 1.0, # required
7904
- # },
7905
- # },
7906
- # },
7907
- # }
7908
- #
7909
6813
  # @!attribute [rw] index_name
7910
6814
  # The name of the global secondary index. The name must be unique
7911
6815
  # among all other indexes on this table.
@@ -8025,51 +6929,6 @@ module Aws::DynamoDB
8025
6929
  # Represents the settings for a global table in a Region that will be
8026
6930
  # modified.
8027
6931
  #
8028
- # @note When making an API call, you may pass ReplicaSettingsUpdate
8029
- # data as a hash:
8030
- #
8031
- # {
8032
- # region_name: "RegionName", # required
8033
- # replica_provisioned_read_capacity_units: 1,
8034
- # replica_provisioned_read_capacity_auto_scaling_settings_update: {
8035
- # minimum_units: 1,
8036
- # maximum_units: 1,
8037
- # auto_scaling_disabled: false,
8038
- # auto_scaling_role_arn: "AutoScalingRoleArn",
8039
- # scaling_policy_update: {
8040
- # policy_name: "AutoScalingPolicyName",
8041
- # target_tracking_scaling_policy_configuration: { # required
8042
- # disable_scale_in: false,
8043
- # scale_in_cooldown: 1,
8044
- # scale_out_cooldown: 1,
8045
- # target_value: 1.0, # required
8046
- # },
8047
- # },
8048
- # },
8049
- # replica_global_secondary_index_settings_update: [
8050
- # {
8051
- # index_name: "IndexName", # required
8052
- # provisioned_read_capacity_units: 1,
8053
- # provisioned_read_capacity_auto_scaling_settings_update: {
8054
- # minimum_units: 1,
8055
- # maximum_units: 1,
8056
- # auto_scaling_disabled: false,
8057
- # auto_scaling_role_arn: "AutoScalingRoleArn",
8058
- # scaling_policy_update: {
8059
- # policy_name: "AutoScalingPolicyName",
8060
- # target_tracking_scaling_policy_configuration: { # required
8061
- # disable_scale_in: false,
8062
- # scale_in_cooldown: 1,
8063
- # scale_out_cooldown: 1,
8064
- # target_value: 1.0, # required
8065
- # },
8066
- # },
8067
- # },
8068
- # },
8069
- # ],
8070
- # replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8071
- # }
8072
- #
8073
6932
  # @!attribute [rw] region_name
8074
6933
  # The Region of the replica to be added.
8075
6934
  # @return [String]
@@ -8120,18 +6979,6 @@ module Aws::DynamoDB
8120
6979
  #
8121
6980
  # * An existing replica to be removed from an existing global table.
8122
6981
  #
8123
- # @note When making an API call, you may pass ReplicaUpdate
8124
- # data as a hash:
8125
- #
8126
- # {
8127
- # create: {
8128
- # region_name: "RegionName", # required
8129
- # },
8130
- # delete: {
8131
- # region_name: "RegionName", # required
8132
- # },
8133
- # }
8134
- #
8135
6982
  # @!attribute [rw] create
8136
6983
  # The parameters required for creating a replica on an existing global
8137
6984
  # table.
@@ -8169,47 +7016,6 @@ module Aws::DynamoDB
8169
7016
  #
8170
7017
  # </note>
8171
7018
  #
8172
- # @note When making an API call, you may pass ReplicationGroupUpdate
8173
- # data as a hash:
8174
- #
8175
- # {
8176
- # create: {
8177
- # region_name: "RegionName", # required
8178
- # kms_master_key_id: "KMSMasterKeyId",
8179
- # provisioned_throughput_override: {
8180
- # read_capacity_units: 1,
8181
- # },
8182
- # global_secondary_indexes: [
8183
- # {
8184
- # index_name: "IndexName", # required
8185
- # provisioned_throughput_override: {
8186
- # read_capacity_units: 1,
8187
- # },
8188
- # },
8189
- # ],
8190
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8191
- # },
8192
- # update: {
8193
- # region_name: "RegionName", # required
8194
- # kms_master_key_id: "KMSMasterKeyId",
8195
- # provisioned_throughput_override: {
8196
- # read_capacity_units: 1,
8197
- # },
8198
- # global_secondary_indexes: [
8199
- # {
8200
- # index_name: "IndexName", # required
8201
- # provisioned_throughput_override: {
8202
- # read_capacity_units: 1,
8203
- # },
8204
- # },
8205
- # ],
8206
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
8207
- # },
8208
- # delete: {
8209
- # region_name: "RegionName", # required
8210
- # },
8211
- # }
8212
- #
8213
7019
  # @!attribute [rw] create
8214
7020
  # The parameters required for creating a replica for the table.
8215
7021
  # @return [Types::CreateReplicationGroupMemberAction]
@@ -8313,58 +7119,6 @@ module Aws::DynamoDB
8313
7119
  include Aws::Structure
8314
7120
  end
8315
7121
 
8316
- # @note When making an API call, you may pass RestoreTableFromBackupInput
8317
- # data as a hash:
8318
- #
8319
- # {
8320
- # target_table_name: "TableName", # required
8321
- # backup_arn: "BackupArn", # required
8322
- # billing_mode_override: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
8323
- # global_secondary_index_override: [
8324
- # {
8325
- # index_name: "IndexName", # required
8326
- # key_schema: [ # required
8327
- # {
8328
- # attribute_name: "KeySchemaAttributeName", # required
8329
- # key_type: "HASH", # required, accepts HASH, RANGE
8330
- # },
8331
- # ],
8332
- # projection: { # required
8333
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8334
- # non_key_attributes: ["NonKeyAttributeName"],
8335
- # },
8336
- # provisioned_throughput: {
8337
- # read_capacity_units: 1, # required
8338
- # write_capacity_units: 1, # required
8339
- # },
8340
- # },
8341
- # ],
8342
- # local_secondary_index_override: [
8343
- # {
8344
- # index_name: "IndexName", # required
8345
- # key_schema: [ # required
8346
- # {
8347
- # attribute_name: "KeySchemaAttributeName", # required
8348
- # key_type: "HASH", # required, accepts HASH, RANGE
8349
- # },
8350
- # ],
8351
- # projection: { # required
8352
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8353
- # non_key_attributes: ["NonKeyAttributeName"],
8354
- # },
8355
- # },
8356
- # ],
8357
- # provisioned_throughput_override: {
8358
- # read_capacity_units: 1, # required
8359
- # write_capacity_units: 1, # required
8360
- # },
8361
- # sse_specification_override: {
8362
- # enabled: false,
8363
- # sse_type: "AES256", # accepts AES256, KMS
8364
- # kms_master_key_id: "KMSMasterKeyId",
8365
- # },
8366
- # }
8367
- #
8368
7122
  # @!attribute [rw] target_table_name
8369
7123
  # The name of the new table to which the backup must be restored.
8370
7124
  # @return [String]
@@ -8423,61 +7177,6 @@ module Aws::DynamoDB
8423
7177
  include Aws::Structure
8424
7178
  end
8425
7179
 
8426
- # @note When making an API call, you may pass RestoreTableToPointInTimeInput
8427
- # data as a hash:
8428
- #
8429
- # {
8430
- # source_table_arn: "TableArn",
8431
- # source_table_name: "TableName",
8432
- # target_table_name: "TableName", # required
8433
- # use_latest_restorable_time: false,
8434
- # restore_date_time: Time.now,
8435
- # billing_mode_override: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
8436
- # global_secondary_index_override: [
8437
- # {
8438
- # index_name: "IndexName", # required
8439
- # key_schema: [ # required
8440
- # {
8441
- # attribute_name: "KeySchemaAttributeName", # required
8442
- # key_type: "HASH", # required, accepts HASH, RANGE
8443
- # },
8444
- # ],
8445
- # projection: { # required
8446
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8447
- # non_key_attributes: ["NonKeyAttributeName"],
8448
- # },
8449
- # provisioned_throughput: {
8450
- # read_capacity_units: 1, # required
8451
- # write_capacity_units: 1, # required
8452
- # },
8453
- # },
8454
- # ],
8455
- # local_secondary_index_override: [
8456
- # {
8457
- # index_name: "IndexName", # required
8458
- # key_schema: [ # required
8459
- # {
8460
- # attribute_name: "KeySchemaAttributeName", # required
8461
- # key_type: "HASH", # required, accepts HASH, RANGE
8462
- # },
8463
- # ],
8464
- # projection: { # required
8465
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
8466
- # non_key_attributes: ["NonKeyAttributeName"],
8467
- # },
8468
- # },
8469
- # ],
8470
- # provisioned_throughput_override: {
8471
- # read_capacity_units: 1, # required
8472
- # write_capacity_units: 1, # required
8473
- # },
8474
- # sse_specification_override: {
8475
- # enabled: false,
8476
- # sse_type: "AES256", # accepts AES256, KMS
8477
- # kms_master_key_id: "KMSMasterKeyId",
8478
- # },
8479
- # }
8480
- #
8481
7180
  # @!attribute [rw] source_table_arn
8482
7181
  # The DynamoDB table that will be restored. This value is an Amazon
8483
7182
  # Resource Name (ARN).
@@ -8556,15 +7255,6 @@ module Aws::DynamoDB
8556
7255
 
8557
7256
  # The S3 bucket that is being imported from.
8558
7257
  #
8559
- # @note When making an API call, you may pass S3BucketSource
8560
- # data as a hash:
8561
- #
8562
- # {
8563
- # s3_bucket_owner: "S3BucketOwner",
8564
- # s3_bucket: "S3Bucket", # required
8565
- # s3_key_prefix: "S3Prefix",
8566
- # }
8567
- #
8568
7258
  # @!attribute [rw] s3_bucket_owner
8569
7259
  # The account number of the S3 bucket that is being imported from. If
8570
7260
  # the bucket is owned by the requester this is optional.
@@ -8636,15 +7326,6 @@ module Aws::DynamoDB
8636
7326
 
8637
7327
  # Represents the settings used to enable server-side encryption.
8638
7328
  #
8639
- # @note When making an API call, you may pass SSESpecification
8640
- # data as a hash:
8641
- #
8642
- # {
8643
- # enabled: false,
8644
- # sse_type: "AES256", # accepts AES256, KMS
8645
- # kms_master_key_id: "KMSMasterKeyId",
8646
- # }
8647
- #
8648
7329
  # @!attribute [rw] enabled
8649
7330
  # Indicates whether server-side encryption is done using an Amazon Web
8650
7331
  # Services managed key or an Amazon Web Services owned key. If enabled
@@ -8683,39 +7364,6 @@ module Aws::DynamoDB
8683
7364
 
8684
7365
  # Represents the input of a `Scan` operation.
8685
7366
  #
8686
- # @note When making an API call, you may pass ScanInput
8687
- # data as a hash:
8688
- #
8689
- # {
8690
- # table_name: "TableName", # required
8691
- # index_name: "IndexName",
8692
- # attributes_to_get: ["AttributeName"],
8693
- # limit: 1,
8694
- # select: "ALL_ATTRIBUTES", # accepts ALL_ATTRIBUTES, ALL_PROJECTED_ATTRIBUTES, SPECIFIC_ATTRIBUTES, COUNT
8695
- # scan_filter: {
8696
- # "AttributeName" => {
8697
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
8698
- # comparison_operator: "EQ", # required, accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
8699
- # },
8700
- # },
8701
- # conditional_operator: "AND", # accepts AND, OR
8702
- # exclusive_start_key: {
8703
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
8704
- # },
8705
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
8706
- # total_segments: 1,
8707
- # segment: 1,
8708
- # projection_expression: "ProjectionExpression",
8709
- # filter_expression: "ConditionExpression",
8710
- # expression_attribute_names: {
8711
- # "ExpressionAttributeNameVariable" => "AttributeName",
8712
- # },
8713
- # expression_attribute_values: {
8714
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
8715
- # },
8716
- # consistent_read: false,
8717
- # }
8718
- #
8719
7367
  # @!attribute [rw] table_name
8720
7368
  # The name of the table containing the requested items; or, if you
8721
7369
  # provide `IndexName`, the name of the table to which that index
@@ -9237,14 +7885,6 @@ module Aws::DynamoDB
9237
7885
 
9238
7886
  # Represents the DynamoDB Streams configuration for a table in DynamoDB.
9239
7887
  #
9240
- # @note When making an API call, you may pass StreamSpecification
9241
- # data as a hash:
9242
- #
9243
- # {
9244
- # stream_enabled: false, # required
9245
- # stream_view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES, KEYS_ONLY
9246
- # }
9247
- #
9248
7888
  # @!attribute [rw] stream_enabled
9249
7889
  # Indicates whether DynamoDB Streams is enabled (true) or disabled
9250
7890
  # (false) on the table.
@@ -9344,54 +7984,6 @@ module Aws::DynamoDB
9344
7984
 
9345
7985
  # The parameters for the table created as part of the import operation.
9346
7986
  #
9347
- # @note When making an API call, you may pass TableCreationParameters
9348
- # data as a hash:
9349
- #
9350
- # {
9351
- # table_name: "TableName", # required
9352
- # attribute_definitions: [ # required
9353
- # {
9354
- # attribute_name: "KeySchemaAttributeName", # required
9355
- # attribute_type: "S", # required, accepts S, N, B
9356
- # },
9357
- # ],
9358
- # key_schema: [ # required
9359
- # {
9360
- # attribute_name: "KeySchemaAttributeName", # required
9361
- # key_type: "HASH", # required, accepts HASH, RANGE
9362
- # },
9363
- # ],
9364
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
9365
- # provisioned_throughput: {
9366
- # read_capacity_units: 1, # required
9367
- # write_capacity_units: 1, # required
9368
- # },
9369
- # sse_specification: {
9370
- # enabled: false,
9371
- # sse_type: "AES256", # accepts AES256, KMS
9372
- # kms_master_key_id: "KMSMasterKeyId",
9373
- # },
9374
- # global_secondary_indexes: [
9375
- # {
9376
- # index_name: "IndexName", # required
9377
- # key_schema: [ # required
9378
- # {
9379
- # attribute_name: "KeySchemaAttributeName", # required
9380
- # key_type: "HASH", # required, accepts HASH, RANGE
9381
- # },
9382
- # ],
9383
- # projection: { # required
9384
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
9385
- # non_key_attributes: ["NonKeyAttributeName"],
9386
- # },
9387
- # provisioned_throughput: {
9388
- # read_capacity_units: 1, # required
9389
- # write_capacity_units: 1, # required
9390
- # },
9391
- # },
9392
- # ],
9393
- # }
9394
- #
9395
7987
  # @!attribute [rw] table_name
9396
7988
  # The name of the table created as part of the import operation.
9397
7989
  # @return [String]
@@ -9815,14 +8407,6 @@ module Aws::DynamoDB
9815
8407
  #
9816
8408
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
9817
8409
  #
9818
- # @note When making an API call, you may pass Tag
9819
- # data as a hash:
9820
- #
9821
- # {
9822
- # key: "TagKeyString", # required
9823
- # value: "TagValueString", # required
9824
- # }
9825
- #
9826
8410
  # @!attribute [rw] key
9827
8411
  # The key of the tag. Tag keys are case sensitive. Each DynamoDB table
9828
8412
  # can only have up to one tag with the same key. If you try to add an
@@ -9843,19 +8427,6 @@ module Aws::DynamoDB
9843
8427
  include Aws::Structure
9844
8428
  end
9845
8429
 
9846
- # @note When making an API call, you may pass TagResourceInput
9847
- # data as a hash:
9848
- #
9849
- # {
9850
- # resource_arn: "ResourceArnString", # required
9851
- # tags: [ # required
9852
- # {
9853
- # key: "TagKeyString", # required
9854
- # value: "TagValueString", # required
9855
- # },
9856
- # ],
9857
- # }
9858
- #
9859
8430
  # @!attribute [rw] resource_arn
9860
8431
  # Identifies the Amazon DynamoDB resource to which tags should be
9861
8432
  # added. This value is an Amazon Resource Name (ARN).
@@ -9897,14 +8468,6 @@ module Aws::DynamoDB
9897
8468
  # Represents the settings used to enable or disable Time to Live (TTL)
9898
8469
  # for the specified table.
9899
8470
  #
9900
- # @note When making an API call, you may pass TimeToLiveSpecification
9901
- # data as a hash:
9902
- #
9903
- # {
9904
- # enabled: false, # required
9905
- # attribute_name: "TimeToLiveAttributeName", # required
9906
- # }
9907
- #
9908
8471
  # @!attribute [rw] enabled
9909
8472
  # Indicates whether TTL is to be enabled (true) or disabled (false) on
9910
8473
  # the table.
@@ -9926,22 +8489,6 @@ module Aws::DynamoDB
9926
8489
 
9927
8490
  # Specifies an item to be retrieved as part of the transaction.
9928
8491
  #
9929
- # @note When making an API call, you may pass TransactGetItem
9930
- # data as a hash:
9931
- #
9932
- # {
9933
- # get: { # required
9934
- # key: { # required
9935
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
9936
- # },
9937
- # table_name: "TableName", # required
9938
- # projection_expression: "ProjectionExpression",
9939
- # expression_attribute_names: {
9940
- # "ExpressionAttributeNameVariable" => "AttributeName",
9941
- # },
9942
- # },
9943
- # }
9944
- #
9945
8492
  # @!attribute [rw] get
9946
8493
  # Contains the primary key that identifies the item to get, together
9947
8494
  # with the name of the table that contains the item, and optionally
@@ -9956,27 +8503,6 @@ module Aws::DynamoDB
9956
8503
  include Aws::Structure
9957
8504
  end
9958
8505
 
9959
- # @note When making an API call, you may pass TransactGetItemsInput
9960
- # data as a hash:
9961
- #
9962
- # {
9963
- # transact_items: [ # required
9964
- # {
9965
- # get: { # required
9966
- # key: { # required
9967
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
9968
- # },
9969
- # table_name: "TableName", # required
9970
- # projection_expression: "ProjectionExpression",
9971
- # expression_attribute_names: {
9972
- # "ExpressionAttributeNameVariable" => "AttributeName",
9973
- # },
9974
- # },
9975
- # },
9976
- # ],
9977
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
9978
- # }
9979
- #
9980
8506
  # @!attribute [rw] transact_items
9981
8507
  # An ordered array of up to 100 `TransactGetItem` objects, each of
9982
8508
  # which contains a `Get` structure.
@@ -10030,69 +8556,6 @@ module Aws::DynamoDB
10030
8556
  # A list of requests that can perform update, put, delete, or check
10031
8557
  # operations on multiple items in one or more tables atomically.
10032
8558
  #
10033
- # @note When making an API call, you may pass TransactWriteItem
10034
- # data as a hash:
10035
- #
10036
- # {
10037
- # condition_check: {
10038
- # key: { # required
10039
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10040
- # },
10041
- # table_name: "TableName", # required
10042
- # condition_expression: "ConditionExpression", # required
10043
- # expression_attribute_names: {
10044
- # "ExpressionAttributeNameVariable" => "AttributeName",
10045
- # },
10046
- # expression_attribute_values: {
10047
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10048
- # },
10049
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10050
- # },
10051
- # put: {
10052
- # item: { # required
10053
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10054
- # },
10055
- # table_name: "TableName", # required
10056
- # condition_expression: "ConditionExpression",
10057
- # expression_attribute_names: {
10058
- # "ExpressionAttributeNameVariable" => "AttributeName",
10059
- # },
10060
- # expression_attribute_values: {
10061
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10062
- # },
10063
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10064
- # },
10065
- # delete: {
10066
- # key: { # required
10067
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10068
- # },
10069
- # table_name: "TableName", # required
10070
- # condition_expression: "ConditionExpression",
10071
- # expression_attribute_names: {
10072
- # "ExpressionAttributeNameVariable" => "AttributeName",
10073
- # },
10074
- # expression_attribute_values: {
10075
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10076
- # },
10077
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10078
- # },
10079
- # update: {
10080
- # key: { # required
10081
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10082
- # },
10083
- # update_expression: "UpdateExpression", # required
10084
- # table_name: "TableName", # required
10085
- # condition_expression: "ConditionExpression",
10086
- # expression_attribute_names: {
10087
- # "ExpressionAttributeNameVariable" => "AttributeName",
10088
- # },
10089
- # expression_attribute_values: {
10090
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10091
- # },
10092
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10093
- # },
10094
- # }
10095
- #
10096
8559
  # @!attribute [rw] condition_check
10097
8560
  # A request to perform a check item operation.
10098
8561
  # @return [Types::ConditionCheck]
@@ -10120,76 +8583,6 @@ module Aws::DynamoDB
10120
8583
  include Aws::Structure
10121
8584
  end
10122
8585
 
10123
- # @note When making an API call, you may pass TransactWriteItemsInput
10124
- # data as a hash:
10125
- #
10126
- # {
10127
- # transact_items: [ # required
10128
- # {
10129
- # condition_check: {
10130
- # key: { # required
10131
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10132
- # },
10133
- # table_name: "TableName", # required
10134
- # condition_expression: "ConditionExpression", # required
10135
- # expression_attribute_names: {
10136
- # "ExpressionAttributeNameVariable" => "AttributeName",
10137
- # },
10138
- # expression_attribute_values: {
10139
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10140
- # },
10141
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10142
- # },
10143
- # put: {
10144
- # item: { # required
10145
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10146
- # },
10147
- # table_name: "TableName", # required
10148
- # condition_expression: "ConditionExpression",
10149
- # expression_attribute_names: {
10150
- # "ExpressionAttributeNameVariable" => "AttributeName",
10151
- # },
10152
- # expression_attribute_values: {
10153
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10154
- # },
10155
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10156
- # },
10157
- # delete: {
10158
- # key: { # required
10159
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10160
- # },
10161
- # table_name: "TableName", # required
10162
- # condition_expression: "ConditionExpression",
10163
- # expression_attribute_names: {
10164
- # "ExpressionAttributeNameVariable" => "AttributeName",
10165
- # },
10166
- # expression_attribute_values: {
10167
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10168
- # },
10169
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10170
- # },
10171
- # update: {
10172
- # key: { # required
10173
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10174
- # },
10175
- # update_expression: "UpdateExpression", # required
10176
- # table_name: "TableName", # required
10177
- # condition_expression: "ConditionExpression",
10178
- # expression_attribute_names: {
10179
- # "ExpressionAttributeNameVariable" => "AttributeName",
10180
- # },
10181
- # expression_attribute_values: {
10182
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10183
- # },
10184
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10185
- # },
10186
- # },
10187
- # ],
10188
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
10189
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
10190
- # client_request_token: "ClientRequestToken",
10191
- # }
10192
- #
10193
8586
  # @!attribute [rw] transact_items
10194
8587
  # An ordered array of up to 100 `TransactWriteItem` objects, each of
10195
8588
  # which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
@@ -10484,14 +8877,6 @@ module Aws::DynamoDB
10484
8877
  include Aws::Structure
10485
8878
  end
10486
8879
 
10487
- # @note When making an API call, you may pass UntagResourceInput
10488
- # data as a hash:
10489
- #
10490
- # {
10491
- # resource_arn: "ResourceArnString", # required
10492
- # tag_keys: ["TagKeyString"], # required
10493
- # }
10494
- #
10495
8880
  # @!attribute [rw] resource_arn
10496
8881
  # The DynamoDB resource that the tags will be removed from. This value
10497
8882
  # is an Amazon Resource Name (ARN).
@@ -10513,25 +8898,6 @@ module Aws::DynamoDB
10513
8898
 
10514
8899
  # Represents a request to perform an `UpdateItem` operation.
10515
8900
  #
10516
- # @note When making an API call, you may pass Update
10517
- # data as a hash:
10518
- #
10519
- # {
10520
- # key: { # required
10521
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10522
- # },
10523
- # update_expression: "UpdateExpression", # required
10524
- # table_name: "TableName", # required
10525
- # condition_expression: "ConditionExpression",
10526
- # expression_attribute_names: {
10527
- # "ExpressionAttributeNameVariable" => "AttributeName",
10528
- # },
10529
- # expression_attribute_values: {
10530
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10531
- # },
10532
- # return_values_on_condition_check_failure: "ALL_OLD", # accepts ALL_OLD, NONE
10533
- # }
10534
- #
10535
8901
  # @!attribute [rw] key
10536
8902
  # The primary key of the item to be updated. Each element consists of
10537
8903
  # an attribute name and a value for that attribute.
@@ -10581,16 +8947,6 @@ module Aws::DynamoDB
10581
8947
  include Aws::Structure
10582
8948
  end
10583
8949
 
10584
- # @note When making an API call, you may pass UpdateContinuousBackupsInput
10585
- # data as a hash:
10586
- #
10587
- # {
10588
- # table_name: "TableName", # required
10589
- # point_in_time_recovery_specification: { # required
10590
- # point_in_time_recovery_enabled: false, # required
10591
- # },
10592
- # }
10593
- #
10594
8950
  # @!attribute [rw] table_name
10595
8951
  # The name of the table.
10596
8952
  # @return [String]
@@ -10621,15 +8977,6 @@ module Aws::DynamoDB
10621
8977
  include Aws::Structure
10622
8978
  end
10623
8979
 
10624
- # @note When making an API call, you may pass UpdateContributorInsightsInput
10625
- # data as a hash:
10626
- #
10627
- # {
10628
- # table_name: "TableName", # required
10629
- # index_name: "IndexName",
10630
- # contributor_insights_action: "ENABLE", # required, accepts ENABLE, DISABLE
10631
- # }
10632
- #
10633
8980
  # @!attribute [rw] table_name
10634
8981
  # The name of the table.
10635
8982
  # @return [String]
@@ -10677,17 +9024,6 @@ module Aws::DynamoDB
10677
9024
  # Represents the new provisioned throughput settings to be applied to a
10678
9025
  # global secondary index.
10679
9026
  #
10680
- # @note When making an API call, you may pass UpdateGlobalSecondaryIndexAction
10681
- # data as a hash:
10682
- #
10683
- # {
10684
- # index_name: "IndexName", # required
10685
- # provisioned_throughput: { # required
10686
- # read_capacity_units: 1, # required
10687
- # write_capacity_units: 1, # required
10688
- # },
10689
- # }
10690
- #
10691
9027
  # @!attribute [rw] index_name
10692
9028
  # The name of the global secondary index to be updated.
10693
9029
  # @return [String]
@@ -10714,23 +9050,6 @@ module Aws::DynamoDB
10714
9050
  include Aws::Structure
10715
9051
  end
10716
9052
 
10717
- # @note When making an API call, you may pass UpdateGlobalTableInput
10718
- # data as a hash:
10719
- #
10720
- # {
10721
- # global_table_name: "TableName", # required
10722
- # replica_updates: [ # required
10723
- # {
10724
- # create: {
10725
- # region_name: "RegionName", # required
10726
- # },
10727
- # delete: {
10728
- # region_name: "RegionName", # required
10729
- # },
10730
- # },
10731
- # ],
10732
- # }
10733
- #
10734
9053
  # @!attribute [rw] global_table_name
10735
9054
  # The global table name.
10736
9055
  # @return [String]
@@ -10761,94 +9080,6 @@ module Aws::DynamoDB
10761
9080
  include Aws::Structure
10762
9081
  end
10763
9082
 
10764
- # @note When making an API call, you may pass UpdateGlobalTableSettingsInput
10765
- # data as a hash:
10766
- #
10767
- # {
10768
- # global_table_name: "TableName", # required
10769
- # global_table_billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
10770
- # global_table_provisioned_write_capacity_units: 1,
10771
- # global_table_provisioned_write_capacity_auto_scaling_settings_update: {
10772
- # minimum_units: 1,
10773
- # maximum_units: 1,
10774
- # auto_scaling_disabled: false,
10775
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10776
- # scaling_policy_update: {
10777
- # policy_name: "AutoScalingPolicyName",
10778
- # target_tracking_scaling_policy_configuration: { # required
10779
- # disable_scale_in: false,
10780
- # scale_in_cooldown: 1,
10781
- # scale_out_cooldown: 1,
10782
- # target_value: 1.0, # required
10783
- # },
10784
- # },
10785
- # },
10786
- # global_table_global_secondary_index_settings_update: [
10787
- # {
10788
- # index_name: "IndexName", # required
10789
- # provisioned_write_capacity_units: 1,
10790
- # provisioned_write_capacity_auto_scaling_settings_update: {
10791
- # minimum_units: 1,
10792
- # maximum_units: 1,
10793
- # auto_scaling_disabled: false,
10794
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10795
- # scaling_policy_update: {
10796
- # policy_name: "AutoScalingPolicyName",
10797
- # target_tracking_scaling_policy_configuration: { # required
10798
- # disable_scale_in: false,
10799
- # scale_in_cooldown: 1,
10800
- # scale_out_cooldown: 1,
10801
- # target_value: 1.0, # required
10802
- # },
10803
- # },
10804
- # },
10805
- # },
10806
- # ],
10807
- # replica_settings_update: [
10808
- # {
10809
- # region_name: "RegionName", # required
10810
- # replica_provisioned_read_capacity_units: 1,
10811
- # replica_provisioned_read_capacity_auto_scaling_settings_update: {
10812
- # minimum_units: 1,
10813
- # maximum_units: 1,
10814
- # auto_scaling_disabled: false,
10815
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10816
- # scaling_policy_update: {
10817
- # policy_name: "AutoScalingPolicyName",
10818
- # target_tracking_scaling_policy_configuration: { # required
10819
- # disable_scale_in: false,
10820
- # scale_in_cooldown: 1,
10821
- # scale_out_cooldown: 1,
10822
- # target_value: 1.0, # required
10823
- # },
10824
- # },
10825
- # },
10826
- # replica_global_secondary_index_settings_update: [
10827
- # {
10828
- # index_name: "IndexName", # required
10829
- # provisioned_read_capacity_units: 1,
10830
- # provisioned_read_capacity_auto_scaling_settings_update: {
10831
- # minimum_units: 1,
10832
- # maximum_units: 1,
10833
- # auto_scaling_disabled: false,
10834
- # auto_scaling_role_arn: "AutoScalingRoleArn",
10835
- # scaling_policy_update: {
10836
- # policy_name: "AutoScalingPolicyName",
10837
- # target_tracking_scaling_policy_configuration: { # required
10838
- # disable_scale_in: false,
10839
- # scale_in_cooldown: 1,
10840
- # scale_out_cooldown: 1,
10841
- # target_value: 1.0, # required
10842
- # },
10843
- # },
10844
- # },
10845
- # },
10846
- # ],
10847
- # replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
10848
- # },
10849
- # ],
10850
- # }
10851
- #
10852
9083
  # @!attribute [rw] global_table_name
10853
9084
  # The name of the global table
10854
9085
  # @return [String]
@@ -10924,42 +9155,6 @@ module Aws::DynamoDB
10924
9155
 
10925
9156
  # Represents the input of an `UpdateItem` operation.
10926
9157
  #
10927
- # @note When making an API call, you may pass UpdateItemInput
10928
- # data as a hash:
10929
- #
10930
- # {
10931
- # table_name: "TableName", # required
10932
- # key: { # required
10933
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10934
- # },
10935
- # attribute_updates: {
10936
- # "AttributeName" => {
10937
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10938
- # action: "ADD", # accepts ADD, PUT, DELETE
10939
- # },
10940
- # },
10941
- # expected: {
10942
- # "AttributeName" => {
10943
- # value: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10944
- # exists: false,
10945
- # comparison_operator: "EQ", # accepts EQ, NE, IN, LE, LT, GE, GT, BETWEEN, NOT_NULL, NULL, CONTAINS, NOT_CONTAINS, BEGINS_WITH
10946
- # attribute_value_list: ["value"], # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10947
- # },
10948
- # },
10949
- # conditional_operator: "AND", # accepts AND, OR
10950
- # return_values: "NONE", # accepts NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW
10951
- # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
10952
- # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
10953
- # update_expression: "UpdateExpression",
10954
- # condition_expression: "ConditionExpression",
10955
- # expression_attribute_names: {
10956
- # "ExpressionAttributeNameVariable" => "AttributeName",
10957
- # },
10958
- # expression_attribute_values: {
10959
- # "ExpressionAttributeValueVariable" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
10960
- # },
10961
- # }
10962
- #
10963
9158
  # @!attribute [rw] table_name
10964
9159
  # The name of the table containing the item to update.
10965
9160
  # @return [String]
@@ -11341,26 +9536,6 @@ module Aws::DynamoDB
11341
9536
 
11342
9537
  # Represents a replica to be modified.
11343
9538
  #
11344
- # @note When making an API call, you may pass UpdateReplicationGroupMemberAction
11345
- # data as a hash:
11346
- #
11347
- # {
11348
- # region_name: "RegionName", # required
11349
- # kms_master_key_id: "KMSMasterKeyId",
11350
- # provisioned_throughput_override: {
11351
- # read_capacity_units: 1,
11352
- # },
11353
- # global_secondary_indexes: [
11354
- # {
11355
- # index_name: "IndexName", # required
11356
- # provisioned_throughput_override: {
11357
- # read_capacity_units: 1,
11358
- # },
11359
- # },
11360
- # ],
11361
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11362
- # }
11363
- #
11364
9539
  # @!attribute [rw] region_name
11365
9540
  # The Region where the replica exists.
11366
9541
  # @return [String]
@@ -11401,104 +9576,6 @@ module Aws::DynamoDB
11401
9576
 
11402
9577
  # Represents the input of an `UpdateTable` operation.
11403
9578
  #
11404
- # @note When making an API call, you may pass UpdateTableInput
11405
- # data as a hash:
11406
- #
11407
- # {
11408
- # attribute_definitions: [
11409
- # {
11410
- # attribute_name: "KeySchemaAttributeName", # required
11411
- # attribute_type: "S", # required, accepts S, N, B
11412
- # },
11413
- # ],
11414
- # table_name: "TableName", # required
11415
- # billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
11416
- # provisioned_throughput: {
11417
- # read_capacity_units: 1, # required
11418
- # write_capacity_units: 1, # required
11419
- # },
11420
- # global_secondary_index_updates: [
11421
- # {
11422
- # update: {
11423
- # index_name: "IndexName", # required
11424
- # provisioned_throughput: { # required
11425
- # read_capacity_units: 1, # required
11426
- # write_capacity_units: 1, # required
11427
- # },
11428
- # },
11429
- # create: {
11430
- # index_name: "IndexName", # required
11431
- # key_schema: [ # required
11432
- # {
11433
- # attribute_name: "KeySchemaAttributeName", # required
11434
- # key_type: "HASH", # required, accepts HASH, RANGE
11435
- # },
11436
- # ],
11437
- # projection: { # required
11438
- # projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
11439
- # non_key_attributes: ["NonKeyAttributeName"],
11440
- # },
11441
- # provisioned_throughput: {
11442
- # read_capacity_units: 1, # required
11443
- # write_capacity_units: 1, # required
11444
- # },
11445
- # },
11446
- # delete: {
11447
- # index_name: "IndexName", # required
11448
- # },
11449
- # },
11450
- # ],
11451
- # stream_specification: {
11452
- # stream_enabled: false, # required
11453
- # stream_view_type: "NEW_IMAGE", # accepts NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES, KEYS_ONLY
11454
- # },
11455
- # sse_specification: {
11456
- # enabled: false,
11457
- # sse_type: "AES256", # accepts AES256, KMS
11458
- # kms_master_key_id: "KMSMasterKeyId",
11459
- # },
11460
- # replica_updates: [
11461
- # {
11462
- # create: {
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
- # update: {
11479
- # region_name: "RegionName", # required
11480
- # kms_master_key_id: "KMSMasterKeyId",
11481
- # provisioned_throughput_override: {
11482
- # read_capacity_units: 1,
11483
- # },
11484
- # global_secondary_indexes: [
11485
- # {
11486
- # index_name: "IndexName", # required
11487
- # provisioned_throughput_override: {
11488
- # read_capacity_units: 1,
11489
- # },
11490
- # },
11491
- # ],
11492
- # table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11493
- # },
11494
- # delete: {
11495
- # region_name: "RegionName", # required
11496
- # },
11497
- # },
11498
- # ],
11499
- # table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
11500
- # }
11501
- #
11502
9579
  # @!attribute [rw] attribute_definitions
11503
9580
  # An array of attributes that describe the key schema for the table
11504
9581
  # and indexes. If you are adding a new global secondary index to the
@@ -11622,88 +9699,6 @@ module Aws::DynamoDB
11622
9699
  include Aws::Structure
11623
9700
  end
11624
9701
 
11625
- # @note When making an API call, you may pass UpdateTableReplicaAutoScalingInput
11626
- # data as a hash:
11627
- #
11628
- # {
11629
- # global_secondary_index_updates: [
11630
- # {
11631
- # index_name: "IndexName",
11632
- # provisioned_write_capacity_auto_scaling_update: {
11633
- # minimum_units: 1,
11634
- # maximum_units: 1,
11635
- # auto_scaling_disabled: false,
11636
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11637
- # scaling_policy_update: {
11638
- # policy_name: "AutoScalingPolicyName",
11639
- # target_tracking_scaling_policy_configuration: { # required
11640
- # disable_scale_in: false,
11641
- # scale_in_cooldown: 1,
11642
- # scale_out_cooldown: 1,
11643
- # target_value: 1.0, # required
11644
- # },
11645
- # },
11646
- # },
11647
- # },
11648
- # ],
11649
- # table_name: "TableName", # required
11650
- # provisioned_write_capacity_auto_scaling_update: {
11651
- # minimum_units: 1,
11652
- # maximum_units: 1,
11653
- # auto_scaling_disabled: false,
11654
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11655
- # scaling_policy_update: {
11656
- # policy_name: "AutoScalingPolicyName",
11657
- # target_tracking_scaling_policy_configuration: { # required
11658
- # disable_scale_in: false,
11659
- # scale_in_cooldown: 1,
11660
- # scale_out_cooldown: 1,
11661
- # target_value: 1.0, # required
11662
- # },
11663
- # },
11664
- # },
11665
- # replica_updates: [
11666
- # {
11667
- # region_name: "RegionName", # required
11668
- # replica_global_secondary_index_updates: [
11669
- # {
11670
- # index_name: "IndexName",
11671
- # provisioned_read_capacity_auto_scaling_update: {
11672
- # minimum_units: 1,
11673
- # maximum_units: 1,
11674
- # auto_scaling_disabled: false,
11675
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11676
- # scaling_policy_update: {
11677
- # policy_name: "AutoScalingPolicyName",
11678
- # target_tracking_scaling_policy_configuration: { # required
11679
- # disable_scale_in: false,
11680
- # scale_in_cooldown: 1,
11681
- # scale_out_cooldown: 1,
11682
- # target_value: 1.0, # required
11683
- # },
11684
- # },
11685
- # },
11686
- # },
11687
- # ],
11688
- # replica_provisioned_read_capacity_auto_scaling_update: {
11689
- # minimum_units: 1,
11690
- # maximum_units: 1,
11691
- # auto_scaling_disabled: false,
11692
- # auto_scaling_role_arn: "AutoScalingRoleArn",
11693
- # scaling_policy_update: {
11694
- # policy_name: "AutoScalingPolicyName",
11695
- # target_tracking_scaling_policy_configuration: { # required
11696
- # disable_scale_in: false,
11697
- # scale_in_cooldown: 1,
11698
- # scale_out_cooldown: 1,
11699
- # target_value: 1.0, # required
11700
- # },
11701
- # },
11702
- # },
11703
- # },
11704
- # ],
11705
- # }
11706
- #
11707
9702
  # @!attribute [rw] global_secondary_index_updates
11708
9703
  # Represents the auto scaling settings of the global secondary indexes
11709
9704
  # of the replica to be updated.
@@ -11749,17 +9744,6 @@ module Aws::DynamoDB
11749
9744
 
11750
9745
  # Represents the input of an `UpdateTimeToLive` operation.
11751
9746
  #
11752
- # @note When making an API call, you may pass UpdateTimeToLiveInput
11753
- # data as a hash:
11754
- #
11755
- # {
11756
- # table_name: "TableName", # required
11757
- # time_to_live_specification: { # required
11758
- # enabled: false, # required
11759
- # attribute_name: "TimeToLiveAttributeName", # required
11760
- # },
11761
- # }
11762
- #
11763
9747
  # @!attribute [rw] table_name
11764
9748
  # The name of the table to be configured.
11765
9749
  # @return [String]
@@ -11795,22 +9779,6 @@ module Aws::DynamoDB
11795
9779
  # `WriteRequest`. If you do need to perform both of these operations,
11796
9780
  # you need to provide two separate `WriteRequest` objects.
11797
9781
  #
11798
- # @note When making an API call, you may pass WriteRequest
11799
- # data as a hash:
11800
- #
11801
- # {
11802
- # put_request: {
11803
- # item: { # required
11804
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
11805
- # },
11806
- # },
11807
- # delete_request: {
11808
- # key: { # required
11809
- # "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
11810
- # },
11811
- # },
11812
- # }
11813
- #
11814
9782
  # @!attribute [rw] put_request
11815
9783
  # A request to perform a `PutItem` operation.
11816
9784
  # @return [Types::PutRequest]