aws-sdk-dynamodb 1.137.0 → 1.139.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1dc3e59f4abae8e9f7d0cd4e1ee9e7d446fe45935b3c21f54c23b8e6d281f81c
4
- data.tar.gz: 6e018c140ee9fe8025c5d34ff05b64993094c2936edc421bd0b52794ff9eaa24
3
+ metadata.gz: 92bb0ecdac55c8f4438c63232f962e882e9393c4cab8ccd98132a1f2cc0b9a75
4
+ data.tar.gz: c039e348b699f2ceebf35af6b392cb069940876316f5e254bff0c2f04caa505c
5
5
  SHA512:
6
- metadata.gz: 5c25a1aad8d32d6c9c143bf274f441f3afbc5ce69b56fdfa104f6e73bd9d68b2476261ae317c29bda90650d00557fe23015d262fda3fd8e9ae866cb383dd941a
7
- data.tar.gz: 3aaad33ae9a9a2faadf1a59482e90d0b63748ce14ce7b8dce5af61199b0b041616bb50514e9764a61fa35bf9d323e06122ed304f5b3ccc419692e0a512889632
6
+ metadata.gz: 06fe43497139f2a178d881325dc07599d4cf2174b1a632bc637a9e0088d7f7ed1f620096ad7cef35a895b4cf5369abb62f004f330ceaa1ff007df20f413702f7
7
+ data.tar.gz: 2a65ab9528d65fb061e0e6eeab475be714661d392902aa27e6eababd0d4fda9f23a523239654a669f323cfd46a97c60b2ea3315eeeceb46d5ddc90c6ceb7cb58
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.139.0 (2025-04-09)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for secondary indexes and Create_Table.
8
+
9
+ 1.138.0 (2025-03-13)
10
+ ------------------
11
+
12
+ * Feature - Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available
13
+
4
14
  1.137.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.137.0
1
+ 1.139.0
@@ -1447,7 +1447,11 @@ module Aws::DynamoDB
1447
1447
  # attributes provided in `NonKeyAttributes`, summed across all of
1448
1448
  # the secondary indexes, must not exceed 100. If you project the
1449
1449
  # same attribute into two different indexes, this counts as two
1450
- # distinct attributes when determining the total.
1450
+ # distinct attributes when determining the total. This limit only
1451
+ # applies when you specify the ProjectionType of `INCLUDE`. You
1452
+ # still can specify the ProjectionType of `ALL` to project all
1453
+ # attributes from the source table, even if the table has more than
1454
+ # 100 attributes.
1451
1455
  #
1452
1456
  # @option params [Array<Types::GlobalSecondaryIndex>] :global_secondary_indexes
1453
1457
  # One or more global secondary indexes (the maximum is 20) to be created
@@ -1483,7 +1487,11 @@ module Aws::DynamoDB
1483
1487
  # attributes provided in `NonKeyAttributes`, summed across all of
1484
1488
  # the secondary indexes, must not exceed 100. If you project the
1485
1489
  # same attribute into two different indexes, this counts as two
1486
- # distinct attributes when determining the total.
1490
+ # distinct attributes when determining the total. This limit only
1491
+ # applies when you specify the ProjectionType of `INCLUDE`. You
1492
+ # still can specify the ProjectionType of `ALL` to project all
1493
+ # attributes from the source table, even if the table has more than
1494
+ # 100 attributes.
1487
1495
  # * `ProvisionedThroughput` - The provisioned throughput settings for
1488
1496
  # the global secondary index, consisting of read and write capacity
1489
1497
  # units.
@@ -1492,18 +1500,19 @@ module Aws::DynamoDB
1492
1500
  # Controls how you are charged for read and write throughput and how you
1493
1501
  # manage capacity. This setting can be changed later.
1494
1502
  #
1495
- # * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
1496
- # workloads. `PROVISIONED` sets the billing mode to [Provisioned
1497
- # capacity mode][1].
1503
+ # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
1504
+ # DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
1505
+ # [On-demand capacity mode][1].
1498
1506
  #
1499
- # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
1500
- # unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
1501
- # [On-demand capacity mode][2].
1507
+ # * `PROVISIONED` - We recommend using `PROVISIONED` for steady
1508
+ # workloads with predictable growth where capacity requirements can be
1509
+ # reliably forecasted. `PROVISIONED` sets the billing mode to
1510
+ # [Provisioned capacity mode][2].
1502
1511
  #
1503
1512
  #
1504
1513
  #
1505
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
1506
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
1514
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
1515
+ # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
1507
1516
  #
1508
1517
  # @option params [Types::ProvisionedThroughput] :provisioned_throughput
1509
1518
  # Represents the provisioned throughput settings for a specified table
@@ -7065,8 +7074,8 @@ module Aws::DynamoDB
7065
7074
  #
7066
7075
  # `LatestRestorableDateTime` is typically 5 minutes before the current
7067
7076
  # time. You can restore your table to any point in time in the last 35
7068
- # days. You can set the recovery period to any value between 1 and 35
7069
- # days.
7077
+ # days. You can set the `RecoveryPeriodInDays` to any value between 1
7078
+ # and 35 days.
7070
7079
  #
7071
7080
  # @option params [required, String] :table_name
7072
7081
  # The name of the table. You can also provide the Amazon Resource Name
@@ -7964,18 +7973,19 @@ module Aws::DynamoDB
7964
7973
  # and write capacity of your table and global secondary indexes over the
7965
7974
  # past 30 minutes.
7966
7975
  #
7967
- # * `PROVISIONED` - We recommend using `PROVISIONED` for predictable
7968
- # workloads. `PROVISIONED` sets the billing mode to [Provisioned
7969
- # capacity mode][1].
7976
+ # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for most
7977
+ # DynamoDB workloads. `PAY_PER_REQUEST` sets the billing mode to
7978
+ # [On-demand capacity mode][1].
7970
7979
  #
7971
- # * `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for
7972
- # unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to
7973
- # [On-demand capacity mode][2].
7980
+ # * `PROVISIONED` - We recommend using `PROVISIONED` for steady
7981
+ # workloads with predictable growth where capacity requirements can be
7982
+ # reliably forecasted. `PROVISIONED` sets the billing mode to
7983
+ # [Provisioned capacity mode][2].
7974
7984
  #
7975
7985
  #
7976
7986
  #
7977
- # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
7978
- # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
7987
+ # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html
7988
+ # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html
7979
7989
  #
7980
7990
  # @option params [Types::ProvisionedThroughput] :provisioned_throughput
7981
7991
  # The new provisioned throughput settings for the specified table or
@@ -8056,7 +8066,7 @@ module Aws::DynamoDB
8056
8066
  #
8057
8067
  #
8058
8068
  # [1]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ReplicationGroupUpdate.html#DDB-Type-ReplicationGroupUpdate-Create
8059
- # [2]: https://docs.aws.amazon.com/https:/docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#DDB-UpdateTable-request-ReplicaUpdates
8069
+ # [2]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html#DDB-UpdateTable-request-ReplicaUpdates
8060
8070
  # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/PreviewFeatures.html#multi-region-strong-consistency-gt
8061
8071
  #
8062
8072
  # @option params [Types::OnDemandThroughput] :on_demand_throughput
@@ -8626,7 +8636,7 @@ module Aws::DynamoDB
8626
8636
  tracer: tracer
8627
8637
  )
8628
8638
  context[:gem_name] = 'aws-sdk-dynamodb'
8629
- context[:gem_version] = '1.137.0'
8639
+ context[:gem_version] = '1.139.0'
8630
8640
  Seahorse::Client::Request.new(handlers, context)
8631
8641
  end
8632
8642
 
@@ -709,7 +709,7 @@ module Aws::DynamoDB
709
709
  ContributorInsightsSummary.add_member(:contributor_insights_status, Shapes::ShapeRef.new(shape: ContributorInsightsStatus, location_name: "ContributorInsightsStatus"))
710
710
  ContributorInsightsSummary.struct_class = Types::ContributorInsightsSummary
711
711
 
712
- CreateBackupInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
712
+ CreateBackupInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
713
713
  CreateBackupInput.add_member(:backup_name, Shapes::ShapeRef.new(shape: BackupName, required: true, location_name: "BackupName"))
714
714
  CreateBackupInput.struct_class = Types::CreateBackupInput
715
715
 
@@ -724,7 +724,7 @@ module Aws::DynamoDB
724
724
  CreateGlobalSecondaryIndexAction.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
725
725
  CreateGlobalSecondaryIndexAction.struct_class = Types::CreateGlobalSecondaryIndexAction
726
726
 
727
- CreateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
727
+ CreateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
728
728
  CreateGlobalTableInput.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicaList, required: true, location_name: "ReplicationGroup"))
729
729
  CreateGlobalTableInput.struct_class = Types::CreateGlobalTableInput
730
730
 
@@ -743,7 +743,7 @@ module Aws::DynamoDB
743
743
  CreateReplicationGroupMemberAction.struct_class = Types::CreateReplicationGroupMemberAction
744
744
 
745
745
  CreateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, required: true, location_name: "AttributeDefinitions"))
746
- CreateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
746
+ CreateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
747
747
  CreateTableInput.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
748
748
  CreateTableInput.add_member(:local_secondary_indexes, Shapes::ShapeRef.new(shape: LocalSecondaryIndexList, location_name: "LocalSecondaryIndexes"))
749
749
  CreateTableInput.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
@@ -776,7 +776,7 @@ module Aws::DynamoDB
776
776
  Delete.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
777
777
  Delete.struct_class = Types::Delete
778
778
 
779
- DeleteBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn"))
779
+ DeleteBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
780
780
  DeleteBackupInput.struct_class = Types::DeleteBackupInput
781
781
 
782
782
  DeleteBackupOutput.add_member(:backup_description, Shapes::ShapeRef.new(shape: BackupDescription, location_name: "BackupDescription"))
@@ -785,7 +785,7 @@ module Aws::DynamoDB
785
785
  DeleteGlobalSecondaryIndexAction.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, required: true, location_name: "IndexName"))
786
786
  DeleteGlobalSecondaryIndexAction.struct_class = Types::DeleteGlobalSecondaryIndexAction
787
787
 
788
- DeleteItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
788
+ DeleteItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
789
789
  DeleteItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
790
790
  DeleteItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
791
791
  DeleteItemInput.add_member(:conditional_operator, Shapes::ShapeRef.new(shape: ConditionalOperator, location_name: "ConditionalOperator"))
@@ -812,32 +812,32 @@ module Aws::DynamoDB
812
812
  DeleteRequest.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
813
813
  DeleteRequest.struct_class = Types::DeleteRequest
814
814
 
815
- DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
815
+ DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
816
816
  DeleteResourcePolicyInput.add_member(:expected_revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "ExpectedRevisionId"))
817
817
  DeleteResourcePolicyInput.struct_class = Types::DeleteResourcePolicyInput
818
818
 
819
819
  DeleteResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
820
820
  DeleteResourcePolicyOutput.struct_class = Types::DeleteResourcePolicyOutput
821
821
 
822
- DeleteTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
822
+ DeleteTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
823
823
  DeleteTableInput.struct_class = Types::DeleteTableInput
824
824
 
825
825
  DeleteTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
826
826
  DeleteTableOutput.struct_class = Types::DeleteTableOutput
827
827
 
828
- DescribeBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn"))
828
+ DescribeBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
829
829
  DescribeBackupInput.struct_class = Types::DescribeBackupInput
830
830
 
831
831
  DescribeBackupOutput.add_member(:backup_description, Shapes::ShapeRef.new(shape: BackupDescription, location_name: "BackupDescription"))
832
832
  DescribeBackupOutput.struct_class = Types::DescribeBackupOutput
833
833
 
834
- DescribeContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
834
+ DescribeContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
835
835
  DescribeContinuousBackupsInput.struct_class = Types::DescribeContinuousBackupsInput
836
836
 
837
837
  DescribeContinuousBackupsOutput.add_member(:continuous_backups_description, Shapes::ShapeRef.new(shape: ContinuousBackupsDescription, location_name: "ContinuousBackupsDescription"))
838
838
  DescribeContinuousBackupsOutput.struct_class = Types::DescribeContinuousBackupsOutput
839
839
 
840
- DescribeContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
840
+ DescribeContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
841
841
  DescribeContributorInsightsInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
842
842
  DescribeContributorInsightsInput.struct_class = Types::DescribeContributorInsightsInput
843
843
 
@@ -854,32 +854,32 @@ module Aws::DynamoDB
854
854
  DescribeEndpointsResponse.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, required: true, location_name: "Endpoints"))
855
855
  DescribeEndpointsResponse.struct_class = Types::DescribeEndpointsResponse
856
856
 
857
- DescribeExportInput.add_member(:export_arn, Shapes::ShapeRef.new(shape: ExportArn, required: true, location_name: "ExportArn"))
857
+ DescribeExportInput.add_member(:export_arn, Shapes::ShapeRef.new(shape: ExportArn, required: true, location_name: "ExportArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
858
858
  DescribeExportInput.struct_class = Types::DescribeExportInput
859
859
 
860
860
  DescribeExportOutput.add_member(:export_description, Shapes::ShapeRef.new(shape: ExportDescription, location_name: "ExportDescription"))
861
861
  DescribeExportOutput.struct_class = Types::DescribeExportOutput
862
862
 
863
- DescribeGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
863
+ DescribeGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
864
864
  DescribeGlobalTableInput.struct_class = Types::DescribeGlobalTableInput
865
865
 
866
866
  DescribeGlobalTableOutput.add_member(:global_table_description, Shapes::ShapeRef.new(shape: GlobalTableDescription, location_name: "GlobalTableDescription"))
867
867
  DescribeGlobalTableOutput.struct_class = Types::DescribeGlobalTableOutput
868
868
 
869
- DescribeGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
869
+ DescribeGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
870
870
  DescribeGlobalTableSettingsInput.struct_class = Types::DescribeGlobalTableSettingsInput
871
871
 
872
872
  DescribeGlobalTableSettingsOutput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "GlobalTableName"))
873
873
  DescribeGlobalTableSettingsOutput.add_member(:replica_settings, Shapes::ShapeRef.new(shape: ReplicaSettingsDescriptionList, location_name: "ReplicaSettings"))
874
874
  DescribeGlobalTableSettingsOutput.struct_class = Types::DescribeGlobalTableSettingsOutput
875
875
 
876
- DescribeImportInput.add_member(:import_arn, Shapes::ShapeRef.new(shape: ImportArn, required: true, location_name: "ImportArn"))
876
+ DescribeImportInput.add_member(:import_arn, Shapes::ShapeRef.new(shape: ImportArn, required: true, location_name: "ImportArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
877
877
  DescribeImportInput.struct_class = Types::DescribeImportInput
878
878
 
879
879
  DescribeImportOutput.add_member(:import_table_description, Shapes::ShapeRef.new(shape: ImportTableDescription, required: true, location_name: "ImportTableDescription"))
880
880
  DescribeImportOutput.struct_class = Types::DescribeImportOutput
881
881
 
882
- DescribeKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
882
+ DescribeKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
883
883
  DescribeKinesisStreamingDestinationInput.struct_class = Types::DescribeKinesisStreamingDestinationInput
884
884
 
885
885
  DescribeKinesisStreamingDestinationOutput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
@@ -894,19 +894,19 @@ module Aws::DynamoDB
894
894
  DescribeLimitsOutput.add_member(:table_max_write_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "TableMaxWriteCapacityUnits"))
895
895
  DescribeLimitsOutput.struct_class = Types::DescribeLimitsOutput
896
896
 
897
- DescribeTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
897
+ DescribeTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
898
898
  DescribeTableInput.struct_class = Types::DescribeTableInput
899
899
 
900
900
  DescribeTableOutput.add_member(:table, Shapes::ShapeRef.new(shape: TableDescription, location_name: "Table"))
901
901
  DescribeTableOutput.struct_class = Types::DescribeTableOutput
902
902
 
903
- DescribeTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
903
+ DescribeTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
904
904
  DescribeTableReplicaAutoScalingInput.struct_class = Types::DescribeTableReplicaAutoScalingInput
905
905
 
906
906
  DescribeTableReplicaAutoScalingOutput.add_member(:table_auto_scaling_description, Shapes::ShapeRef.new(shape: TableAutoScalingDescription, location_name: "TableAutoScalingDescription"))
907
907
  DescribeTableReplicaAutoScalingOutput.struct_class = Types::DescribeTableReplicaAutoScalingOutput
908
908
 
909
- DescribeTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
909
+ DescribeTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
910
910
  DescribeTimeToLiveInput.struct_class = Types::DescribeTimeToLiveInput
911
911
 
912
912
  DescribeTimeToLiveOutput.add_member(:time_to_live_description, Shapes::ShapeRef.new(shape: TimeToLiveDescription, location_name: "TimeToLiveDescription"))
@@ -993,7 +993,7 @@ module Aws::DynamoDB
993
993
  ExportSummary.add_member(:export_type, Shapes::ShapeRef.new(shape: ExportType, location_name: "ExportType"))
994
994
  ExportSummary.struct_class = Types::ExportSummary
995
995
 
996
- ExportTableToPointInTimeInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableArn"))
996
+ ExportTableToPointInTimeInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
997
997
  ExportTableToPointInTimeInput.add_member(:export_time, Shapes::ShapeRef.new(shape: ExportTime, location_name: "ExportTime"))
998
998
  ExportTableToPointInTimeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
999
999
  ExportTableToPointInTimeInput.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "S3Bucket"))
@@ -1028,7 +1028,7 @@ module Aws::DynamoDB
1028
1028
  Get.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
1029
1029
  Get.struct_class = Types::Get
1030
1030
 
1031
- GetItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1031
+ GetItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1032
1032
  GetItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
1033
1033
  GetItemInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
1034
1034
  GetItemInput.add_member(:consistent_read, Shapes::ShapeRef.new(shape: ConsistentRead, location_name: "ConsistentRead"))
@@ -1041,7 +1041,7 @@ module Aws::DynamoDB
1041
1041
  GetItemOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacity, location_name: "ConsumedCapacity"))
1042
1042
  GetItemOutput.struct_class = Types::GetItemOutput
1043
1043
 
1044
- GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
1044
+ GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1045
1045
  GetResourcePolicyInput.struct_class = Types::GetResourcePolicyInput
1046
1046
 
1047
1047
  GetResourcePolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicy, location_name: "Policy"))
@@ -1252,7 +1252,7 @@ module Aws::DynamoDB
1252
1252
 
1253
1253
  KinesisDataStreamDestinations.member = Shapes::ShapeRef.new(shape: KinesisDataStreamDestination)
1254
1254
 
1255
- KinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1255
+ KinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1256
1256
  KinesisStreamingDestinationInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, required: true, location_name: "StreamArn"))
1257
1257
  KinesisStreamingDestinationInput.add_member(:enable_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: EnableKinesisStreamingConfiguration, location_name: "EnableKinesisStreamingConfiguration"))
1258
1258
  KinesisStreamingDestinationInput.struct_class = Types::KinesisStreamingDestinationInput
@@ -1268,7 +1268,7 @@ module Aws::DynamoDB
1268
1268
 
1269
1269
  ListAttributeValue.member = Shapes::ShapeRef.new(shape: AttributeValue)
1270
1270
 
1271
- ListBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName"))
1271
+ ListBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1272
1272
  ListBackupsInput.add_member(:limit, Shapes::ShapeRef.new(shape: BackupsInputLimit, location_name: "Limit"))
1273
1273
  ListBackupsInput.add_member(:time_range_lower_bound, Shapes::ShapeRef.new(shape: TimeRangeLowerBound, location_name: "TimeRangeLowerBound"))
1274
1274
  ListBackupsInput.add_member(:time_range_upper_bound, Shapes::ShapeRef.new(shape: TimeRangeUpperBound, location_name: "TimeRangeUpperBound"))
@@ -1280,7 +1280,7 @@ module Aws::DynamoDB
1280
1280
  ListBackupsOutput.add_member(:last_evaluated_backup_arn, Shapes::ShapeRef.new(shape: BackupArn, location_name: "LastEvaluatedBackupArn"))
1281
1281
  ListBackupsOutput.struct_class = Types::ListBackupsOutput
1282
1282
 
1283
- ListContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName"))
1283
+ ListContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1284
1284
  ListContributorInsightsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
1285
1285
  ListContributorInsightsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListContributorInsightsLimit, location_name: "MaxResults"))
1286
1286
  ListContributorInsightsInput.struct_class = Types::ListContributorInsightsInput
@@ -1289,7 +1289,7 @@ module Aws::DynamoDB
1289
1289
  ListContributorInsightsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
1290
1290
  ListContributorInsightsOutput.struct_class = Types::ListContributorInsightsOutput
1291
1291
 
1292
- ListExportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn"))
1292
+ ListExportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1293
1293
  ListExportsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListExportsMaxLimit, location_name: "MaxResults"))
1294
1294
  ListExportsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ExportNextToken, location_name: "NextToken"))
1295
1295
  ListExportsInput.struct_class = Types::ListExportsInput
@@ -1307,7 +1307,7 @@ module Aws::DynamoDB
1307
1307
  ListGlobalTablesOutput.add_member(:last_evaluated_global_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "LastEvaluatedGlobalTableName"))
1308
1308
  ListGlobalTablesOutput.struct_class = Types::ListGlobalTablesOutput
1309
1309
 
1310
- ListImportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn"))
1310
+ ListImportsInput.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1311
1311
  ListImportsInput.add_member(:page_size, Shapes::ShapeRef.new(shape: ListImportsMaxLimit, location_name: "PageSize"))
1312
1312
  ListImportsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ImportNextToken, location_name: "NextToken"))
1313
1313
  ListImportsInput.struct_class = Types::ListImportsInput
@@ -1324,7 +1324,7 @@ module Aws::DynamoDB
1324
1324
  ListTablesOutput.add_member(:last_evaluated_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "LastEvaluatedTableName"))
1325
1325
  ListTablesOutput.struct_class = Types::ListTablesOutput
1326
1326
 
1327
- ListTagsOfResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
1327
+ ListTagsOfResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1328
1328
  ListTagsOfResourceInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
1329
1329
  ListTagsOfResourceInput.struct_class = Types::ListTagsOfResourceInput
1330
1330
 
@@ -1428,7 +1428,7 @@ module Aws::DynamoDB
1428
1428
  Put.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
1429
1429
  Put.struct_class = Types::Put
1430
1430
 
1431
- PutItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1431
+ PutItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1432
1432
  PutItemInput.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
1433
1433
  PutItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
1434
1434
  PutItemInput.add_member(:return_values, Shapes::ShapeRef.new(shape: ReturnValue, location_name: "ReturnValues"))
@@ -1452,7 +1452,7 @@ module Aws::DynamoDB
1452
1452
  PutRequest.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
1453
1453
  PutRequest.struct_class = Types::PutRequest
1454
1454
 
1455
- PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
1455
+ PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1456
1456
  PutResourcePolicyInput.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicy, required: true, location_name: "Policy"))
1457
1457
  PutResourcePolicyInput.add_member(:expected_revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "ExpectedRevisionId"))
1458
1458
  PutResourcePolicyInput.add_member(:confirm_remove_self_resource_access, Shapes::ShapeRef.new(shape: ConfirmRemoveSelfResourceAccess, location_name: "ConfirmRemoveSelfResourceAccess"))
@@ -1461,7 +1461,7 @@ module Aws::DynamoDB
1461
1461
  PutResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
1462
1462
  PutResourcePolicyOutput.struct_class = Types::PutResourcePolicyOutput
1463
1463
 
1464
- QueryInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1464
+ QueryInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1465
1465
  QueryInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
1466
1466
  QueryInput.add_member(:select, Shapes::ShapeRef.new(shape: Select, location_name: "Select"))
1467
1467
  QueryInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
@@ -1628,7 +1628,7 @@ module Aws::DynamoDB
1628
1628
  RestoreSummary.add_member(:restore_in_progress, Shapes::ShapeRef.new(shape: RestoreInProgress, required: true, location_name: "RestoreInProgress"))
1629
1629
  RestoreSummary.struct_class = Types::RestoreSummary
1630
1630
 
1631
- RestoreTableFromBackupInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName"))
1631
+ RestoreTableFromBackupInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1632
1632
  RestoreTableFromBackupInput.add_member(:backup_arn, Shapes::ShapeRef.new(shape: BackupArn, required: true, location_name: "BackupArn"))
1633
1633
  RestoreTableFromBackupInput.add_member(:billing_mode_override, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingModeOverride"))
1634
1634
  RestoreTableFromBackupInput.add_member(:global_secondary_index_override, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexOverride"))
@@ -1643,7 +1643,7 @@ module Aws::DynamoDB
1643
1643
 
1644
1644
  RestoreTableToPointInTimeInput.add_member(:source_table_arn, Shapes::ShapeRef.new(shape: TableArn, location_name: "SourceTableArn"))
1645
1645
  RestoreTableToPointInTimeInput.add_member(:source_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "SourceTableName"))
1646
- RestoreTableToPointInTimeInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName"))
1646
+ RestoreTableToPointInTimeInput.add_member(:target_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "TargetTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1647
1647
  RestoreTableToPointInTimeInput.add_member(:use_latest_restorable_time, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "UseLatestRestorableTime"))
1648
1648
  RestoreTableToPointInTimeInput.add_member(:restore_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "RestoreDateTime"))
1649
1649
  RestoreTableToPointInTimeInput.add_member(:billing_mode_override, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingModeOverride"))
@@ -1673,7 +1673,7 @@ module Aws::DynamoDB
1673
1673
  SSESpecification.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
1674
1674
  SSESpecification.struct_class = Types::SSESpecification
1675
1675
 
1676
- ScanInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1676
+ ScanInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1677
1677
  ScanInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
1678
1678
  ScanInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
1679
1679
  ScanInput.add_member(:limit, Shapes::ShapeRef.new(shape: PositiveIntegerObject, location_name: "Limit"))
@@ -1797,7 +1797,7 @@ module Aws::DynamoDB
1797
1797
 
1798
1798
  TagList.member = Shapes::ShapeRef.new(shape: Tag)
1799
1799
 
1800
- TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
1800
+ TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1801
1801
  TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
1802
1802
  TagResourceInput.struct_class = Types::TagResourceInput
1803
1803
 
@@ -1850,7 +1850,7 @@ module Aws::DynamoDB
1850
1850
  TransactionInProgressException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
1851
1851
  TransactionInProgressException.struct_class = Types::TransactionInProgressException
1852
1852
 
1853
- UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
1853
+ UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1854
1854
  UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
1855
1855
  UntagResourceInput.struct_class = Types::UntagResourceInput
1856
1856
 
@@ -1863,14 +1863,14 @@ module Aws::DynamoDB
1863
1863
  Update.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
1864
1864
  Update.struct_class = Types::Update
1865
1865
 
1866
- UpdateContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1866
+ UpdateContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1867
1867
  UpdateContinuousBackupsInput.add_member(:point_in_time_recovery_specification, Shapes::ShapeRef.new(shape: PointInTimeRecoverySpecification, required: true, location_name: "PointInTimeRecoverySpecification"))
1868
1868
  UpdateContinuousBackupsInput.struct_class = Types::UpdateContinuousBackupsInput
1869
1869
 
1870
1870
  UpdateContinuousBackupsOutput.add_member(:continuous_backups_description, Shapes::ShapeRef.new(shape: ContinuousBackupsDescription, location_name: "ContinuousBackupsDescription"))
1871
1871
  UpdateContinuousBackupsOutput.struct_class = Types::UpdateContinuousBackupsOutput
1872
1872
 
1873
- UpdateContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1873
+ UpdateContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1874
1874
  UpdateContributorInsightsInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
1875
1875
  UpdateContributorInsightsInput.add_member(:contributor_insights_action, Shapes::ShapeRef.new(shape: ContributorInsightsAction, required: true, location_name: "ContributorInsightsAction"))
1876
1876
  UpdateContributorInsightsInput.struct_class = Types::UpdateContributorInsightsInput
@@ -1886,14 +1886,14 @@ module Aws::DynamoDB
1886
1886
  UpdateGlobalSecondaryIndexAction.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
1887
1887
  UpdateGlobalSecondaryIndexAction.struct_class = Types::UpdateGlobalSecondaryIndexAction
1888
1888
 
1889
- UpdateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
1889
+ UpdateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1890
1890
  UpdateGlobalTableInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicaUpdateList, required: true, location_name: "ReplicaUpdates"))
1891
1891
  UpdateGlobalTableInput.struct_class = Types::UpdateGlobalTableInput
1892
1892
 
1893
1893
  UpdateGlobalTableOutput.add_member(:global_table_description, Shapes::ShapeRef.new(shape: GlobalTableDescription, location_name: "GlobalTableDescription"))
1894
1894
  UpdateGlobalTableOutput.struct_class = Types::UpdateGlobalTableOutput
1895
1895
 
1896
- UpdateGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
1896
+ UpdateGlobalTableSettingsInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1897
1897
  UpdateGlobalTableSettingsInput.add_member(:global_table_billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "GlobalTableBillingMode"))
1898
1898
  UpdateGlobalTableSettingsInput.add_member(:global_table_provisioned_write_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "GlobalTableProvisionedWriteCapacityUnits"))
1899
1899
  UpdateGlobalTableSettingsInput.add_member(:global_table_provisioned_write_capacity_auto_scaling_settings_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate"))
@@ -1905,7 +1905,7 @@ module Aws::DynamoDB
1905
1905
  UpdateGlobalTableSettingsOutput.add_member(:replica_settings, Shapes::ShapeRef.new(shape: ReplicaSettingsDescriptionList, location_name: "ReplicaSettings"))
1906
1906
  UpdateGlobalTableSettingsOutput.struct_class = Types::UpdateGlobalTableSettingsOutput
1907
1907
 
1908
- UpdateItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1908
+ UpdateItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1909
1909
  UpdateItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
1910
1910
  UpdateItemInput.add_member(:attribute_updates, Shapes::ShapeRef.new(shape: AttributeUpdates, location_name: "AttributeUpdates"))
1911
1911
  UpdateItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
@@ -1928,7 +1928,7 @@ module Aws::DynamoDB
1928
1928
  UpdateKinesisStreamingConfiguration.add_member(:approximate_creation_date_time_precision, Shapes::ShapeRef.new(shape: ApproximateCreationDateTimePrecision, location_name: "ApproximateCreationDateTimePrecision"))
1929
1929
  UpdateKinesisStreamingConfiguration.struct_class = Types::UpdateKinesisStreamingConfiguration
1930
1930
 
1931
- UpdateKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1931
+ UpdateKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1932
1932
  UpdateKinesisStreamingDestinationInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, required: true, location_name: "StreamArn"))
1933
1933
  UpdateKinesisStreamingDestinationInput.add_member(:update_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: UpdateKinesisStreamingConfiguration, location_name: "UpdateKinesisStreamingConfiguration"))
1934
1934
  UpdateKinesisStreamingDestinationInput.struct_class = Types::UpdateKinesisStreamingDestinationInput
@@ -1948,7 +1948,7 @@ module Aws::DynamoDB
1948
1948
  UpdateReplicationGroupMemberAction.struct_class = Types::UpdateReplicationGroupMemberAction
1949
1949
 
1950
1950
  UpdateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
1951
- UpdateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1951
+ UpdateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1952
1952
  UpdateTableInput.add_member(:billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingMode"))
1953
1953
  UpdateTableInput.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
1954
1954
  UpdateTableInput.add_member(:global_secondary_index_updates, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexUpdateList, location_name: "GlobalSecondaryIndexUpdates"))
@@ -1966,7 +1966,7 @@ module Aws::DynamoDB
1966
1966
  UpdateTableOutput.struct_class = Types::UpdateTableOutput
1967
1967
 
1968
1968
  UpdateTableReplicaAutoScalingInput.add_member(:global_secondary_index_updates, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexAutoScalingUpdateList, location_name: "GlobalSecondaryIndexUpdates"))
1969
- UpdateTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1969
+ UpdateTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1970
1970
  UpdateTableReplicaAutoScalingInput.add_member(:provisioned_write_capacity_auto_scaling_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "ProvisionedWriteCapacityAutoScalingUpdate"))
1971
1971
  UpdateTableReplicaAutoScalingInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicaAutoScalingUpdateList, location_name: "ReplicaUpdates"))
1972
1972
  UpdateTableReplicaAutoScalingInput.struct_class = Types::UpdateTableReplicaAutoScalingInput
@@ -1974,7 +1974,7 @@ module Aws::DynamoDB
1974
1974
  UpdateTableReplicaAutoScalingOutput.add_member(:table_auto_scaling_description, Shapes::ShapeRef.new(shape: TableAutoScalingDescription, location_name: "TableAutoScalingDescription"))
1975
1975
  UpdateTableReplicaAutoScalingOutput.struct_class = Types::UpdateTableReplicaAutoScalingOutput
1976
1976
 
1977
- UpdateTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
1977
+ UpdateTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName", metadata: {"contextParam"=>{"name"=>"ResourceArn"}}))
1978
1978
  UpdateTimeToLiveInput.add_member(:time_to_live_specification, Shapes::ShapeRef.new(shape: TimeToLiveSpecification, required: true, location_name: "TimeToLiveSpecification"))
1979
1979
  UpdateTimeToLiveInput.struct_class = Types::UpdateTimeToLiveInput
1980
1980
 
@@ -40,6 +40,16 @@ module Aws::DynamoDB
40
40
  #
41
41
  # @return [String]
42
42
  #
43
+ # @!attribute resource_arn
44
+ # ResourceArn containing arn of resource
45
+ #
46
+ # @return [String]
47
+ #
48
+ # @!attribute resource_arn_list
49
+ # ResourceArnList containing list of resource arns
50
+ #
51
+ # @return [stringArray]
52
+ #
43
53
  EndpointParameters = Struct.new(
44
54
  :region,
45
55
  :use_dual_stack,
@@ -47,6 +57,8 @@ module Aws::DynamoDB
47
57
  :endpoint,
48
58
  :account_id,
49
59
  :account_id_endpoint_mode,
60
+ :resource_arn,
61
+ :resource_arn_list,
50
62
  ) do
51
63
  include Aws::Structure
52
64
 
@@ -59,6 +71,8 @@ module Aws::DynamoDB
59
71
  'Endpoint' => :endpoint,
60
72
  'AccountId' => :account_id,
61
73
  'AccountIdEndpointMode' => :account_id_endpoint_mode,
74
+ 'ResourceArn' => :resource_arn,
75
+ 'ResourceArnList' => :resource_arn_list,
62
76
  }.freeze
63
77
  end
64
78
 
@@ -71,6 +85,8 @@ module Aws::DynamoDB
71
85
  self[:endpoint] = options[:endpoint]
72
86
  self[:account_id] = options[:account_id]
73
87
  self[:account_id_endpoint_mode] = options[:account_id_endpoint_mode]
88
+ self[:resource_arn] = options[:resource_arn]
89
+ self[:resource_arn_list] = options[:resource_arn_list]
74
90
  end
75
91
 
76
92
  def self.create(config, options={})