aws-sdk-dynamodb 1.68.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +48 -1
- data/lib/aws-sdk-dynamodb/client_api.rb +14 -0
- data/lib/aws-sdk-dynamodb/resource.rb +4 -0
- data/lib/aws-sdk-dynamodb/table.rb +12 -0
- data/lib/aws-sdk-dynamodb/types.rb +83 -8
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e05476b82915f01a358d8bba79d357df0743d64d9c25e6c627285dc46c61ea79
|
4
|
+
data.tar.gz: 61308d48457d2b02cb269e79d0c3f440983eb82d050a25ac7cd18da2980aa950
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c62190a339337d1c5e53481a2afb957868587eb9ece07ffe13df792e95bf094a38f88647bda00d678a627a630a4d21503994855466f548d9e68d9eff5df91bd9
|
7
|
+
data.tar.gz: 446fac3dae812b9c83ee7873a958c4439649b43894676efa1c751c460d2a454f68ffed064f067bbe47197998836e58b15ab792419b81f7e40bc91648a185f38d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.69.0
|
@@ -1136,6 +1136,8 @@ module Aws::DynamoDB
|
|
1136
1136
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
1137
1137
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1138
1138
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
1139
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1140
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
1139
1141
|
# resp.global_table_description.global_table_arn #=> String
|
1140
1142
|
# resp.global_table_description.creation_date_time #=> Time
|
1141
1143
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -1370,6 +1372,10 @@ module Aws::DynamoDB
|
|
1370
1372
|
#
|
1371
1373
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
1372
1374
|
#
|
1375
|
+
# @option params [String] :table_class
|
1376
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
1377
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
1378
|
+
#
|
1373
1379
|
# @return [Types::CreateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1374
1380
|
#
|
1375
1381
|
# * {Types::CreateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -1512,6 +1518,7 @@ module Aws::DynamoDB
|
|
1512
1518
|
# value: "TagValueString", # required
|
1513
1519
|
# },
|
1514
1520
|
# ],
|
1521
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1515
1522
|
# })
|
1516
1523
|
#
|
1517
1524
|
# @example Response structure
|
@@ -1581,6 +1588,8 @@ module Aws::DynamoDB
|
|
1581
1588
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
1582
1589
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
1583
1590
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
1591
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1592
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
1584
1593
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
1585
1594
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
1586
1595
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -1592,6 +1601,8 @@ module Aws::DynamoDB
|
|
1592
1601
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
1593
1602
|
# resp.table_description.archival_summary.archival_reason #=> String
|
1594
1603
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
1604
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
1605
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
1595
1606
|
#
|
1596
1607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateTable AWS API Documentation
|
1597
1608
|
#
|
@@ -2076,6 +2087,8 @@ module Aws::DynamoDB
|
|
2076
2087
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2077
2088
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2078
2089
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
2090
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2091
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
2079
2092
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
2080
2093
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
2081
2094
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -2087,6 +2100,8 @@ module Aws::DynamoDB
|
|
2087
2100
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
2088
2101
|
# resp.table_description.archival_summary.archival_reason #=> String
|
2089
2102
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
2103
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2104
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
2090
2105
|
#
|
2091
2106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DeleteTable AWS API Documentation
|
2092
2107
|
#
|
@@ -2370,6 +2385,8 @@ module Aws::DynamoDB
|
|
2370
2385
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
2371
2386
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2372
2387
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
2388
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2389
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
2373
2390
|
# resp.global_table_description.global_table_arn #=> String
|
2374
2391
|
# resp.global_table_description.creation_date_time #=> Time
|
2375
2392
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -2464,6 +2481,8 @@ module Aws::DynamoDB
|
|
2464
2481
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
|
2465
2482
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
|
2466
2483
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
|
2484
|
+
# resp.replica_settings[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2485
|
+
# resp.replica_settings[0].replica_table_class_summary.last_update_date_time #=> Time
|
2467
2486
|
#
|
2468
2487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeGlobalTableSettings AWS API Documentation
|
2469
2488
|
#
|
@@ -2755,6 +2774,8 @@ module Aws::DynamoDB
|
|
2755
2774
|
# resp.table.replicas[0].global_secondary_indexes[0].index_name #=> String
|
2756
2775
|
# resp.table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
2757
2776
|
# resp.table.replicas[0].replica_inaccessible_date_time #=> Time
|
2777
|
+
# resp.table.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2778
|
+
# resp.table.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
2758
2779
|
# resp.table.restore_summary.source_backup_arn #=> String
|
2759
2780
|
# resp.table.restore_summary.source_table_arn #=> String
|
2760
2781
|
# resp.table.restore_summary.restore_date_time #=> Time
|
@@ -2766,6 +2787,8 @@ module Aws::DynamoDB
|
|
2766
2787
|
# resp.table.archival_summary.archival_date_time #=> Time
|
2767
2788
|
# resp.table.archival_summary.archival_reason #=> String
|
2768
2789
|
# resp.table.archival_summary.archival_backup_arn #=> String
|
2790
|
+
# resp.table.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
2791
|
+
# resp.table.table_class_summary.last_update_date_time #=> Time
|
2769
2792
|
#
|
2770
2793
|
#
|
2771
2794
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4827,6 +4850,8 @@ module Aws::DynamoDB
|
|
4827
4850
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
4828
4851
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
4829
4852
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
4853
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
4854
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
4830
4855
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
4831
4856
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
4832
4857
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -4838,6 +4863,8 @@ module Aws::DynamoDB
|
|
4838
4863
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
4839
4864
|
# resp.table_description.archival_summary.archival_reason #=> String
|
4840
4865
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
4866
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
4867
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
4841
4868
|
#
|
4842
4869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableFromBackup AWS API Documentation
|
4843
4870
|
#
|
@@ -5050,6 +5077,8 @@ module Aws::DynamoDB
|
|
5050
5077
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
5051
5078
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
5052
5079
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
5080
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
5081
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
5053
5082
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
5054
5083
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
5055
5084
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -5061,6 +5090,8 @@ module Aws::DynamoDB
|
|
5061
5090
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
5062
5091
|
# resp.table_description.archival_summary.archival_reason #=> String
|
5063
5092
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
5093
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
5094
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
5064
5095
|
#
|
5065
5096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/RestoreTableToPointInTime AWS API Documentation
|
5066
5097
|
#
|
@@ -6061,6 +6092,8 @@ module Aws::DynamoDB
|
|
6061
6092
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].index_name #=> String
|
6062
6093
|
# resp.global_table_description.replication_group[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6063
6094
|
# resp.global_table_description.replication_group[0].replica_inaccessible_date_time #=> Time
|
6095
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
6096
|
+
# resp.global_table_description.replication_group[0].replica_table_class_summary.last_update_date_time #=> Time
|
6064
6097
|
# resp.global_table_description.global_table_arn #=> String
|
6065
6098
|
# resp.global_table_description.creation_date_time #=> Time
|
6066
6099
|
# resp.global_table_description.global_table_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING"
|
@@ -6201,6 +6234,7 @@ module Aws::DynamoDB
|
|
6201
6234
|
# },
|
6202
6235
|
# },
|
6203
6236
|
# ],
|
6237
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6204
6238
|
# },
|
6205
6239
|
# ],
|
6206
6240
|
# })
|
@@ -6260,6 +6294,8 @@ module Aws::DynamoDB
|
|
6260
6294
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_in_cooldown #=> Integer
|
6261
6295
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.scale_out_cooldown #=> Integer
|
6262
6296
|
# resp.replica_settings[0].replica_global_secondary_index_settings[0].provisioned_write_capacity_auto_scaling_settings.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
|
6297
|
+
# resp.replica_settings[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
6298
|
+
# resp.replica_settings[0].replica_table_class_summary.last_update_date_time #=> Time
|
6263
6299
|
#
|
6264
6300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateGlobalTableSettings AWS API Documentation
|
6265
6301
|
#
|
@@ -6765,6 +6801,10 @@ module Aws::DynamoDB
|
|
6765
6801
|
#
|
6766
6802
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
6767
6803
|
#
|
6804
|
+
# @option params [String] :table_class
|
6805
|
+
# The table class of the table to be updated. Valid values are
|
6806
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
6807
|
+
#
|
6768
6808
|
# @return [Types::UpdateTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6769
6809
|
#
|
6770
6810
|
# * {Types::UpdateTableOutput#table_description #table_description} => Types::TableDescription
|
@@ -6890,6 +6930,7 @@ module Aws::DynamoDB
|
|
6890
6930
|
# },
|
6891
6931
|
# },
|
6892
6932
|
# ],
|
6933
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6893
6934
|
# },
|
6894
6935
|
# update: {
|
6895
6936
|
# region_name: "RegionName", # required
|
@@ -6905,12 +6946,14 @@ module Aws::DynamoDB
|
|
6905
6946
|
# },
|
6906
6947
|
# },
|
6907
6948
|
# ],
|
6949
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6908
6950
|
# },
|
6909
6951
|
# delete: {
|
6910
6952
|
# region_name: "RegionName", # required
|
6911
6953
|
# },
|
6912
6954
|
# },
|
6913
6955
|
# ],
|
6956
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
6914
6957
|
# })
|
6915
6958
|
#
|
6916
6959
|
# @example Response structure
|
@@ -6980,6 +7023,8 @@ module Aws::DynamoDB
|
|
6980
7023
|
# resp.table_description.replicas[0].global_secondary_indexes[0].index_name #=> String
|
6981
7024
|
# resp.table_description.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer
|
6982
7025
|
# resp.table_description.replicas[0].replica_inaccessible_date_time #=> Time
|
7026
|
+
# resp.table_description.replicas[0].replica_table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
7027
|
+
# resp.table_description.replicas[0].replica_table_class_summary.last_update_date_time #=> Time
|
6983
7028
|
# resp.table_description.restore_summary.source_backup_arn #=> String
|
6984
7029
|
# resp.table_description.restore_summary.source_table_arn #=> String
|
6985
7030
|
# resp.table_description.restore_summary.restore_date_time #=> Time
|
@@ -6991,6 +7036,8 @@ module Aws::DynamoDB
|
|
6991
7036
|
# resp.table_description.archival_summary.archival_date_time #=> Time
|
6992
7037
|
# resp.table_description.archival_summary.archival_reason #=> String
|
6993
7038
|
# resp.table_description.archival_summary.archival_backup_arn #=> String
|
7039
|
+
# resp.table_description.table_class_summary.table_class #=> String, one of "STANDARD", "STANDARD_INFREQUENT_ACCESS"
|
7040
|
+
# resp.table_description.table_class_summary.last_update_date_time #=> Time
|
6994
7041
|
#
|
6995
7042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTable AWS API Documentation
|
6996
7043
|
#
|
@@ -7257,7 +7304,7 @@ module Aws::DynamoDB
|
|
7257
7304
|
params: params,
|
7258
7305
|
config: config)
|
7259
7306
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
7260
|
-
context[:gem_version] = '1.
|
7307
|
+
context[:gem_version] = '1.69.0'
|
7261
7308
|
Seahorse::Client::Request.new(handlers, context)
|
7262
7309
|
end
|
7263
7310
|
|
@@ -370,6 +370,8 @@ module Aws::DynamoDB
|
|
370
370
|
TableAlreadyExistsException = Shapes::StructureShape.new(name: 'TableAlreadyExistsException')
|
371
371
|
TableArn = Shapes::StringShape.new(name: 'TableArn')
|
372
372
|
TableAutoScalingDescription = Shapes::StructureShape.new(name: 'TableAutoScalingDescription')
|
373
|
+
TableClass = Shapes::StringShape.new(name: 'TableClass')
|
374
|
+
TableClassSummary = Shapes::StructureShape.new(name: 'TableClassSummary')
|
373
375
|
TableCreationDateTime = Shapes::TimestampShape.new(name: 'TableCreationDateTime')
|
374
376
|
TableDescription = Shapes::StructureShape.new(name: 'TableDescription')
|
375
377
|
TableId = Shapes::StringShape.new(name: 'TableId')
|
@@ -670,6 +672,7 @@ module Aws::DynamoDB
|
|
670
672
|
CreateReplicationGroupMemberAction.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
|
671
673
|
CreateReplicationGroupMemberAction.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
672
674
|
CreateReplicationGroupMemberAction.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
|
675
|
+
CreateReplicationGroupMemberAction.add_member(:table_class_override, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClassOverride"))
|
673
676
|
CreateReplicationGroupMemberAction.struct_class = Types::CreateReplicationGroupMemberAction
|
674
677
|
|
675
678
|
CreateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, required: true, location_name: "AttributeDefinitions"))
|
@@ -682,6 +685,7 @@ module Aws::DynamoDB
|
|
682
685
|
CreateTableInput.add_member(:stream_specification, Shapes::ShapeRef.new(shape: StreamSpecification, location_name: "StreamSpecification"))
|
683
686
|
CreateTableInput.add_member(:sse_specification, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecification"))
|
684
687
|
CreateTableInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
688
|
+
CreateTableInput.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
|
685
689
|
CreateTableInput.struct_class = Types::CreateTableInput
|
686
690
|
|
687
691
|
CreateTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
|
@@ -1301,6 +1305,7 @@ module Aws::DynamoDB
|
|
1301
1305
|
ReplicaDescription.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
1302
1306
|
ReplicaDescription.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexDescriptionList, location_name: "GlobalSecondaryIndexes"))
|
1303
1307
|
ReplicaDescription.add_member(:replica_inaccessible_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "ReplicaInaccessibleDateTime"))
|
1308
|
+
ReplicaDescription.add_member(:replica_table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "ReplicaTableClassSummary"))
|
1304
1309
|
ReplicaDescription.struct_class = Types::ReplicaDescription
|
1305
1310
|
|
1306
1311
|
ReplicaDescriptionList.member = Shapes::ShapeRef.new(shape: ReplicaDescription)
|
@@ -1361,6 +1366,7 @@ module Aws::DynamoDB
|
|
1361
1366
|
ReplicaSettingsDescription.add_member(:replica_provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: NonNegativeLongObject, location_name: "ReplicaProvisionedWriteCapacityUnits"))
|
1362
1367
|
ReplicaSettingsDescription.add_member(:replica_provisioned_write_capacity_auto_scaling_settings, Shapes::ShapeRef.new(shape: AutoScalingSettingsDescription, location_name: "ReplicaProvisionedWriteCapacityAutoScalingSettings"))
|
1363
1368
|
ReplicaSettingsDescription.add_member(:replica_global_secondary_index_settings, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexSettingsDescriptionList, location_name: "ReplicaGlobalSecondaryIndexSettings"))
|
1369
|
+
ReplicaSettingsDescription.add_member(:replica_table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "ReplicaTableClassSummary"))
|
1364
1370
|
ReplicaSettingsDescription.struct_class = Types::ReplicaSettingsDescription
|
1365
1371
|
|
1366
1372
|
ReplicaSettingsDescriptionList.member = Shapes::ShapeRef.new(shape: ReplicaSettingsDescription)
|
@@ -1369,6 +1375,7 @@ module Aws::DynamoDB
|
|
1369
1375
|
ReplicaSettingsUpdate.add_member(:replica_provisioned_read_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "ReplicaProvisionedReadCapacityUnits"))
|
1370
1376
|
ReplicaSettingsUpdate.add_member(:replica_provisioned_read_capacity_auto_scaling_settings_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate"))
|
1371
1377
|
ReplicaSettingsUpdate.add_member(:replica_global_secondary_index_settings_update, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexSettingsUpdateList, location_name: "ReplicaGlobalSecondaryIndexSettingsUpdate"))
|
1378
|
+
ReplicaSettingsUpdate.add_member(:replica_table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "ReplicaTableClass"))
|
1372
1379
|
ReplicaSettingsUpdate.struct_class = Types::ReplicaSettingsUpdate
|
1373
1380
|
|
1374
1381
|
ReplicaSettingsUpdateList.member = Shapes::ShapeRef.new(shape: ReplicaSettingsUpdate)
|
@@ -1499,6 +1506,10 @@ module Aws::DynamoDB
|
|
1499
1506
|
TableAutoScalingDescription.add_member(:replicas, Shapes::ShapeRef.new(shape: ReplicaAutoScalingDescriptionList, location_name: "Replicas"))
|
1500
1507
|
TableAutoScalingDescription.struct_class = Types::TableAutoScalingDescription
|
1501
1508
|
|
1509
|
+
TableClassSummary.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
|
1510
|
+
TableClassSummary.add_member(:last_update_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "LastUpdateDateTime"))
|
1511
|
+
TableClassSummary.struct_class = Types::TableClassSummary
|
1512
|
+
|
1502
1513
|
TableDescription.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
|
1503
1514
|
TableDescription.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
|
1504
1515
|
TableDescription.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, location_name: "KeySchema"))
|
@@ -1520,6 +1531,7 @@ module Aws::DynamoDB
|
|
1520
1531
|
TableDescription.add_member(:restore_summary, Shapes::ShapeRef.new(shape: RestoreSummary, location_name: "RestoreSummary"))
|
1521
1532
|
TableDescription.add_member(:sse_description, Shapes::ShapeRef.new(shape: SSEDescription, location_name: "SSEDescription"))
|
1522
1533
|
TableDescription.add_member(:archival_summary, Shapes::ShapeRef.new(shape: ArchivalSummary, location_name: "ArchivalSummary"))
|
1534
|
+
TableDescription.add_member(:table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "TableClassSummary"))
|
1523
1535
|
TableDescription.struct_class = Types::TableDescription
|
1524
1536
|
|
1525
1537
|
TableInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -1667,6 +1679,7 @@ module Aws::DynamoDB
|
|
1667
1679
|
UpdateReplicationGroupMemberAction.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
|
1668
1680
|
UpdateReplicationGroupMemberAction.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
|
1669
1681
|
UpdateReplicationGroupMemberAction.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
|
1682
|
+
UpdateReplicationGroupMemberAction.add_member(:table_class_override, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClassOverride"))
|
1670
1683
|
UpdateReplicationGroupMemberAction.struct_class = Types::UpdateReplicationGroupMemberAction
|
1671
1684
|
|
1672
1685
|
UpdateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
|
@@ -1677,6 +1690,7 @@ module Aws::DynamoDB
|
|
1677
1690
|
UpdateTableInput.add_member(:stream_specification, Shapes::ShapeRef.new(shape: StreamSpecification, location_name: "StreamSpecification"))
|
1678
1691
|
UpdateTableInput.add_member(:sse_specification, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecification"))
|
1679
1692
|
UpdateTableInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicationGroupUpdateList, location_name: "ReplicaUpdates"))
|
1693
|
+
UpdateTableInput.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
|
1680
1694
|
UpdateTableInput.struct_class = Types::UpdateTableInput
|
1681
1695
|
|
1682
1696
|
UpdateTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
|
@@ -315,6 +315,7 @@ module Aws::DynamoDB
|
|
315
315
|
# value: "TagValueString", # required
|
316
316
|
# },
|
317
317
|
# ],
|
318
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
318
319
|
# })
|
319
320
|
# @param [Hash] options ({})
|
320
321
|
# @option options [required, Array<Types::AttributeDefinition>] :attribute_definitions
|
@@ -508,6 +509,9 @@ module Aws::DynamoDB
|
|
508
509
|
#
|
509
510
|
#
|
510
511
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
512
|
+
# @option options [String] :table_class
|
513
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
514
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
511
515
|
# @return [Table]
|
512
516
|
def create_table(options = {})
|
513
517
|
resp = @client.create_table(options)
|
@@ -356,6 +356,12 @@ module Aws::DynamoDB
|
|
356
356
|
data[:archival_summary]
|
357
357
|
end
|
358
358
|
|
359
|
+
# Contains details of the table class.
|
360
|
+
# @return [Types::TableClassSummary]
|
361
|
+
def table_class_summary
|
362
|
+
data[:table_class_summary]
|
363
|
+
end
|
364
|
+
|
359
365
|
# @!endgroup
|
360
366
|
|
361
367
|
# @return [Client]
|
@@ -1797,6 +1803,7 @@ module Aws::DynamoDB
|
|
1797
1803
|
# },
|
1798
1804
|
# },
|
1799
1805
|
# ],
|
1806
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1800
1807
|
# },
|
1801
1808
|
# update: {
|
1802
1809
|
# region_name: "RegionName", # required
|
@@ -1812,12 +1819,14 @@ module Aws::DynamoDB
|
|
1812
1819
|
# },
|
1813
1820
|
# },
|
1814
1821
|
# ],
|
1822
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1815
1823
|
# },
|
1816
1824
|
# delete: {
|
1817
1825
|
# region_name: "RegionName", # required
|
1818
1826
|
# },
|
1819
1827
|
# },
|
1820
1828
|
# ],
|
1829
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1821
1830
|
# })
|
1822
1831
|
# @param [Hash] options ({})
|
1823
1832
|
# @option options [Array<Types::AttributeDefinition>] :attribute_definitions
|
@@ -1890,6 +1899,9 @@ module Aws::DynamoDB
|
|
1890
1899
|
#
|
1891
1900
|
#
|
1892
1901
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
1902
|
+
# @option options [String] :table_class
|
1903
|
+
# The table class of the table to be updated. Valid values are
|
1904
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
1893
1905
|
# @return [Table]
|
1894
1906
|
def update(options = {})
|
1895
1907
|
options = options.merge(table_name: @name)
|
@@ -1963,6 +1963,7 @@ module Aws::DynamoDB
|
|
1963
1963
|
# },
|
1964
1964
|
# },
|
1965
1965
|
# ],
|
1966
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
1966
1967
|
# }
|
1967
1968
|
#
|
1968
1969
|
# @!attribute [rw] region_name
|
@@ -1986,13 +1987,19 @@ module Aws::DynamoDB
|
|
1986
1987
|
# Replica-specific global secondary index settings.
|
1987
1988
|
# @return [Array<Types::ReplicaGlobalSecondaryIndex>]
|
1988
1989
|
#
|
1990
|
+
# @!attribute [rw] table_class_override
|
1991
|
+
# Replica-specific table class. If not specified, uses the source
|
1992
|
+
# table's table class.
|
1993
|
+
# @return [String]
|
1994
|
+
#
|
1989
1995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateReplicationGroupMemberAction AWS API Documentation
|
1990
1996
|
#
|
1991
1997
|
class CreateReplicationGroupMemberAction < Struct.new(
|
1992
1998
|
:region_name,
|
1993
1999
|
:kms_master_key_id,
|
1994
2000
|
:provisioned_throughput_override,
|
1995
|
-
:global_secondary_indexes
|
2001
|
+
:global_secondary_indexes,
|
2002
|
+
:table_class_override)
|
1996
2003
|
SENSITIVE = []
|
1997
2004
|
include Aws::Structure
|
1998
2005
|
end
|
@@ -2070,6 +2077,7 @@ module Aws::DynamoDB
|
|
2070
2077
|
# value: "TagValueString", # required
|
2071
2078
|
# },
|
2072
2079
|
# ],
|
2080
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
2073
2081
|
# }
|
2074
2082
|
#
|
2075
2083
|
# @!attribute [rw] attribute_definitions
|
@@ -2285,6 +2293,11 @@ module Aws::DynamoDB
|
|
2285
2293
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html
|
2286
2294
|
# @return [Array<Types::Tag>]
|
2287
2295
|
#
|
2296
|
+
# @!attribute [rw] table_class
|
2297
|
+
# The table class of the new table. Valid values are `STANDARD` and
|
2298
|
+
# `STANDARD_INFREQUENT_ACCESS`.
|
2299
|
+
# @return [String]
|
2300
|
+
#
|
2288
2301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CreateTableInput AWS API Documentation
|
2289
2302
|
#
|
2290
2303
|
class CreateTableInput < Struct.new(
|
@@ -2297,7 +2310,8 @@ module Aws::DynamoDB
|
|
2297
2310
|
:provisioned_throughput,
|
2298
2311
|
:stream_specification,
|
2299
2312
|
:sse_specification,
|
2300
|
-
:tags
|
2313
|
+
:tags,
|
2314
|
+
:table_class)
|
2301
2315
|
SENSITIVE = []
|
2302
2316
|
include Aws::Structure
|
2303
2317
|
end
|
@@ -7131,6 +7145,10 @@ module Aws::DynamoDB
|
|
7131
7145
|
# property.
|
7132
7146
|
# @return [Time]
|
7133
7147
|
#
|
7148
|
+
# @!attribute [rw] replica_table_class_summary
|
7149
|
+
# Contains details of the table class.
|
7150
|
+
# @return [Types::TableClassSummary]
|
7151
|
+
#
|
7134
7152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaDescription AWS API Documentation
|
7135
7153
|
#
|
7136
7154
|
class ReplicaDescription < Struct.new(
|
@@ -7141,7 +7159,8 @@ module Aws::DynamoDB
|
|
7141
7159
|
:kms_master_key_id,
|
7142
7160
|
:provisioned_throughput_override,
|
7143
7161
|
:global_secondary_indexes,
|
7144
|
-
:replica_inaccessible_date_time
|
7162
|
+
:replica_inaccessible_date_time,
|
7163
|
+
:replica_table_class_summary)
|
7145
7164
|
SENSITIVE = []
|
7146
7165
|
include Aws::Structure
|
7147
7166
|
end
|
@@ -7453,6 +7472,10 @@ module Aws::DynamoDB
|
|
7453
7472
|
# Replica global secondary index settings for the global table.
|
7454
7473
|
# @return [Array<Types::ReplicaGlobalSecondaryIndexSettingsDescription>]
|
7455
7474
|
#
|
7475
|
+
# @!attribute [rw] replica_table_class_summary
|
7476
|
+
# Contains details of the table class.
|
7477
|
+
# @return [Types::TableClassSummary]
|
7478
|
+
#
|
7456
7479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaSettingsDescription AWS API Documentation
|
7457
7480
|
#
|
7458
7481
|
class ReplicaSettingsDescription < Struct.new(
|
@@ -7463,7 +7486,8 @@ module Aws::DynamoDB
|
|
7463
7486
|
:replica_provisioned_read_capacity_auto_scaling_settings,
|
7464
7487
|
:replica_provisioned_write_capacity_units,
|
7465
7488
|
:replica_provisioned_write_capacity_auto_scaling_settings,
|
7466
|
-
:replica_global_secondary_index_settings
|
7489
|
+
:replica_global_secondary_index_settings,
|
7490
|
+
:replica_table_class_summary)
|
7467
7491
|
SENSITIVE = []
|
7468
7492
|
include Aws::Structure
|
7469
7493
|
end
|
@@ -7513,6 +7537,7 @@ module Aws::DynamoDB
|
|
7513
7537
|
# },
|
7514
7538
|
# },
|
7515
7539
|
# ],
|
7540
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
7516
7541
|
# }
|
7517
7542
|
#
|
7518
7543
|
# @!attribute [rw] region_name
|
@@ -7540,13 +7565,19 @@ module Aws::DynamoDB
|
|
7540
7565
|
# table that will be modified.
|
7541
7566
|
# @return [Array<Types::ReplicaGlobalSecondaryIndexSettingsUpdate>]
|
7542
7567
|
#
|
7568
|
+
# @!attribute [rw] replica_table_class
|
7569
|
+
# Replica-specific table class. If not specified, uses the source
|
7570
|
+
# table's table class.
|
7571
|
+
# @return [String]
|
7572
|
+
#
|
7543
7573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ReplicaSettingsUpdate AWS API Documentation
|
7544
7574
|
#
|
7545
7575
|
class ReplicaSettingsUpdate < Struct.new(
|
7546
7576
|
:region_name,
|
7547
7577
|
:replica_provisioned_read_capacity_units,
|
7548
7578
|
:replica_provisioned_read_capacity_auto_scaling_settings_update,
|
7549
|
-
:replica_global_secondary_index_settings_update
|
7579
|
+
:replica_global_secondary_index_settings_update,
|
7580
|
+
:replica_table_class)
|
7550
7581
|
SENSITIVE = []
|
7551
7582
|
include Aws::Structure
|
7552
7583
|
end
|
@@ -7620,6 +7651,7 @@ module Aws::DynamoDB
|
|
7620
7651
|
# },
|
7621
7652
|
# },
|
7622
7653
|
# ],
|
7654
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
7623
7655
|
# },
|
7624
7656
|
# update: {
|
7625
7657
|
# region_name: "RegionName", # required
|
@@ -7635,6 +7667,7 @@ module Aws::DynamoDB
|
|
7635
7667
|
# },
|
7636
7668
|
# },
|
7637
7669
|
# ],
|
7670
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
7638
7671
|
# },
|
7639
7672
|
# delete: {
|
7640
7673
|
# region_name: "RegionName", # required
|
@@ -8718,6 +8751,26 @@ module Aws::DynamoDB
|
|
8718
8751
|
include Aws::Structure
|
8719
8752
|
end
|
8720
8753
|
|
8754
|
+
# Contains details of the table class.
|
8755
|
+
#
|
8756
|
+
# @!attribute [rw] table_class
|
8757
|
+
# The table class of the specified table. Valid values are `STANDARD`
|
8758
|
+
# and `STANDARD_INFREQUENT_ACCESS`.
|
8759
|
+
# @return [String]
|
8760
|
+
#
|
8761
|
+
# @!attribute [rw] last_update_date_time
|
8762
|
+
# The date and time at which the table class was last updated.
|
8763
|
+
# @return [Time]
|
8764
|
+
#
|
8765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableClassSummary AWS API Documentation
|
8766
|
+
#
|
8767
|
+
class TableClassSummary < Struct.new(
|
8768
|
+
:table_class,
|
8769
|
+
:last_update_date_time)
|
8770
|
+
SENSITIVE = []
|
8771
|
+
include Aws::Structure
|
8772
|
+
end
|
8773
|
+
|
8721
8774
|
# Represents the properties of a table.
|
8722
8775
|
#
|
8723
8776
|
# @!attribute [rw] attribute_definitions
|
@@ -9007,6 +9060,10 @@ module Aws::DynamoDB
|
|
9007
9060
|
# Contains information about the table archive.
|
9008
9061
|
# @return [Types::ArchivalSummary]
|
9009
9062
|
#
|
9063
|
+
# @!attribute [rw] table_class_summary
|
9064
|
+
# Contains details of the table class.
|
9065
|
+
# @return [Types::TableClassSummary]
|
9066
|
+
#
|
9010
9067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableDescription AWS API Documentation
|
9011
9068
|
#
|
9012
9069
|
class TableDescription < Struct.new(
|
@@ -9030,7 +9087,8 @@ module Aws::DynamoDB
|
|
9030
9087
|
:replicas,
|
9031
9088
|
:restore_summary,
|
9032
9089
|
:sse_description,
|
9033
|
-
:archival_summary
|
9090
|
+
:archival_summary,
|
9091
|
+
:table_class_summary)
|
9034
9092
|
SENSITIVE = []
|
9035
9093
|
include Aws::Structure
|
9036
9094
|
end
|
@@ -10108,6 +10166,7 @@ module Aws::DynamoDB
|
|
10108
10166
|
# },
|
10109
10167
|
# },
|
10110
10168
|
# ],
|
10169
|
+
# replica_table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10111
10170
|
# },
|
10112
10171
|
# ],
|
10113
10172
|
# }
|
@@ -10621,6 +10680,7 @@ module Aws::DynamoDB
|
|
10621
10680
|
# },
|
10622
10681
|
# },
|
10623
10682
|
# ],
|
10683
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10624
10684
|
# }
|
10625
10685
|
#
|
10626
10686
|
# @!attribute [rw] region_name
|
@@ -10644,13 +10704,19 @@ module Aws::DynamoDB
|
|
10644
10704
|
# Replica-specific global secondary index settings.
|
10645
10705
|
# @return [Array<Types::ReplicaGlobalSecondaryIndex>]
|
10646
10706
|
#
|
10707
|
+
# @!attribute [rw] table_class_override
|
10708
|
+
# Replica-specific table class. If not specified, uses the source
|
10709
|
+
# table's table class.
|
10710
|
+
# @return [String]
|
10711
|
+
#
|
10647
10712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateReplicationGroupMemberAction AWS API Documentation
|
10648
10713
|
#
|
10649
10714
|
class UpdateReplicationGroupMemberAction < Struct.new(
|
10650
10715
|
:region_name,
|
10651
10716
|
:kms_master_key_id,
|
10652
10717
|
:provisioned_throughput_override,
|
10653
|
-
:global_secondary_indexes
|
10718
|
+
:global_secondary_indexes,
|
10719
|
+
:table_class_override)
|
10654
10720
|
SENSITIVE = []
|
10655
10721
|
include Aws::Structure
|
10656
10722
|
end
|
@@ -10729,6 +10795,7 @@ module Aws::DynamoDB
|
|
10729
10795
|
# },
|
10730
10796
|
# },
|
10731
10797
|
# ],
|
10798
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10732
10799
|
# },
|
10733
10800
|
# update: {
|
10734
10801
|
# region_name: "RegionName", # required
|
@@ -10744,12 +10811,14 @@ module Aws::DynamoDB
|
|
10744
10811
|
# },
|
10745
10812
|
# },
|
10746
10813
|
# ],
|
10814
|
+
# table_class_override: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10747
10815
|
# },
|
10748
10816
|
# delete: {
|
10749
10817
|
# region_name: "RegionName", # required
|
10750
10818
|
# },
|
10751
10819
|
# },
|
10752
10820
|
# ],
|
10821
|
+
# table_class: "STANDARD", # accepts STANDARD, STANDARD_INFREQUENT_ACCESS
|
10753
10822
|
# }
|
10754
10823
|
#
|
10755
10824
|
# @!attribute [rw] attribute_definitions
|
@@ -10840,6 +10909,11 @@ module Aws::DynamoDB
|
|
10840
10909
|
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
|
10841
10910
|
# @return [Array<Types::ReplicationGroupUpdate>]
|
10842
10911
|
#
|
10912
|
+
# @!attribute [rw] table_class
|
10913
|
+
# The table class of the table to be updated. Valid values are
|
10914
|
+
# `STANDARD` and `STANDARD_INFREQUENT_ACCESS`.
|
10915
|
+
# @return [String]
|
10916
|
+
#
|
10843
10917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTableInput AWS API Documentation
|
10844
10918
|
#
|
10845
10919
|
class UpdateTableInput < Struct.new(
|
@@ -10850,7 +10924,8 @@ module Aws::DynamoDB
|
|
10850
10924
|
:global_secondary_index_updates,
|
10851
10925
|
:stream_specification,
|
10852
10926
|
:sse_specification,
|
10853
|
-
:replica_updates
|
10927
|
+
:replica_updates,
|
10928
|
+
:table_class)
|
10854
10929
|
SENSITIVE = []
|
10855
10930
|
include Aws::Structure
|
10856
10931
|
end
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|