aws-sdk-dynamodb 1.96.0 → 1.132.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 +4 -4
- data/CHANGELOG.md +182 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +1054 -319
- data/lib/aws-sdk-dynamodb/client_api.rb +218 -34
- data/lib/aws-sdk-dynamodb/endpoint_parameters.rb +27 -6
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +42 -10
- data/lib/aws-sdk-dynamodb/endpoints.rb +2 -740
- data/lib/aws-sdk-dynamodb/errors.rb +32 -0
- data/lib/aws-sdk-dynamodb/plugins/endpoints.rb +48 -120
- data/lib/aws-sdk-dynamodb/plugins/simple_attributes.rb +26 -0
- data/lib/aws-sdk-dynamodb/resource.rb +66 -27
- data/lib/aws-sdk-dynamodb/table.rb +147 -49
- data/lib/aws-sdk-dynamodb/types.rb +880 -182
- data/lib/aws-sdk-dynamodb.rb +17 -13
- data/sig/client.rbs +1531 -0
- data/sig/errors.rbs +117 -0
- data/sig/resource.rbs +217 -0
- data/sig/table.rbs +378 -0
- data/sig/types.rbs +1847 -0
- data/sig/waiters.rbs +33 -0
- metadata +17 -11
| @@ -7,12 +7,14 @@ | |
| 7 7 | 
             
            #
         | 
| 8 8 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 9 9 |  | 
| 10 | 
            +
             | 
| 10 11 | 
             
            module Aws::DynamoDB
         | 
| 11 12 | 
             
              # @api private
         | 
| 12 13 | 
             
              module ClientApi
         | 
| 13 14 |  | 
| 14 15 | 
             
                include Seahorse::Model
         | 
| 15 16 |  | 
| 17 | 
            +
                ApproximateCreationDateTimePrecision = Shapes::StringShape.new(name: 'ApproximateCreationDateTimePrecision')
         | 
| 16 18 | 
             
                ArchivalReason = Shapes::StringShape.new(name: 'ArchivalReason')
         | 
| 17 19 | 
             
                ArchivalSummary = Shapes::StructureShape.new(name: 'ArchivalSummary')
         | 
| 18 20 | 
             
                AttributeAction = Shapes::StringShape.new(name: 'AttributeAction')
         | 
| @@ -82,6 +84,7 @@ module Aws::DynamoDB | |
| 82 84 | 
             
                ConditionExpression = Shapes::StringShape.new(name: 'ConditionExpression')
         | 
| 83 85 | 
             
                ConditionalCheckFailedException = Shapes::StructureShape.new(name: 'ConditionalCheckFailedException')
         | 
| 84 86 | 
             
                ConditionalOperator = Shapes::StringShape.new(name: 'ConditionalOperator')
         | 
| 87 | 
            +
                ConfirmRemoveSelfResourceAccess = Shapes::BooleanShape.new(name: 'ConfirmRemoveSelfResourceAccess')
         | 
| 85 88 | 
             
                ConsistentRead = Shapes::BooleanShape.new(name: 'ConsistentRead')
         | 
| 86 89 | 
             
                ConsumedCapacity = Shapes::StructureShape.new(name: 'ConsumedCapacity')
         | 
| 87 90 | 
             
                ConsumedCapacityMultiple = Shapes::ListShape.new(name: 'ConsumedCapacityMultiple')
         | 
| @@ -118,6 +121,8 @@ module Aws::DynamoDB | |
| 118 121 | 
             
                DeleteReplicaAction = Shapes::StructureShape.new(name: 'DeleteReplicaAction')
         | 
| 119 122 | 
             
                DeleteReplicationGroupMemberAction = Shapes::StructureShape.new(name: 'DeleteReplicationGroupMemberAction')
         | 
| 120 123 | 
             
                DeleteRequest = Shapes::StructureShape.new(name: 'DeleteRequest')
         | 
| 124 | 
            +
                DeleteResourcePolicyInput = Shapes::StructureShape.new(name: 'DeleteResourcePolicyInput')
         | 
| 125 | 
            +
                DeleteResourcePolicyOutput = Shapes::StructureShape.new(name: 'DeleteResourcePolicyOutput')
         | 
| 121 126 | 
             
                DeleteTableInput = Shapes::StructureShape.new(name: 'DeleteTableInput')
         | 
| 122 127 | 
             
                DeleteTableOutput = Shapes::StructureShape.new(name: 'DeleteTableOutput')
         | 
| 123 128 | 
             
                DeletionProtectionEnabled = Shapes::BooleanShape.new(name: 'DeletionProtectionEnabled')
         | 
| @@ -150,6 +155,7 @@ module Aws::DynamoDB | |
| 150 155 | 
             
                DestinationStatus = Shapes::StringShape.new(name: 'DestinationStatus')
         | 
| 151 156 | 
             
                DoubleObject = Shapes::FloatShape.new(name: 'DoubleObject')
         | 
| 152 157 | 
             
                DuplicateItemException = Shapes::StructureShape.new(name: 'DuplicateItemException')
         | 
| 158 | 
            +
                EnableKinesisStreamingConfiguration = Shapes::StructureShape.new(name: 'EnableKinesisStreamingConfiguration')
         | 
| 153 159 | 
             
                Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
         | 
| 154 160 | 
             
                Endpoints = Shapes::ListShape.new(name: 'Endpoints')
         | 
| 155 161 | 
             
                ErrorCount = Shapes::IntegerShape.new(name: 'ErrorCount')
         | 
| @@ -192,6 +198,8 @@ module Aws::DynamoDB | |
| 192 198 | 
             
                Get = Shapes::StructureShape.new(name: 'Get')
         | 
| 193 199 | 
             
                GetItemInput = Shapes::StructureShape.new(name: 'GetItemInput')
         | 
| 194 200 | 
             
                GetItemOutput = Shapes::StructureShape.new(name: 'GetItemOutput')
         | 
| 201 | 
            +
                GetResourcePolicyInput = Shapes::StructureShape.new(name: 'GetResourcePolicyInput')
         | 
| 202 | 
            +
                GetResourcePolicyOutput = Shapes::StructureShape.new(name: 'GetResourcePolicyOutput')
         | 
| 195 203 | 
             
                GlobalSecondaryIndex = Shapes::StructureShape.new(name: 'GlobalSecondaryIndex')
         | 
| 196 204 | 
             
                GlobalSecondaryIndexAutoScalingUpdate = Shapes::StructureShape.new(name: 'GlobalSecondaryIndexAutoScalingUpdate')
         | 
| 197 205 | 
             
                GlobalSecondaryIndexAutoScalingUpdateList = Shapes::ListShape.new(name: 'GlobalSecondaryIndexAutoScalingUpdateList')
         | 
| @@ -201,6 +209,7 @@ module Aws::DynamoDB | |
| 201 209 | 
             
                GlobalSecondaryIndexList = Shapes::ListShape.new(name: 'GlobalSecondaryIndexList')
         | 
| 202 210 | 
             
                GlobalSecondaryIndexUpdate = Shapes::StructureShape.new(name: 'GlobalSecondaryIndexUpdate')
         | 
| 203 211 | 
             
                GlobalSecondaryIndexUpdateList = Shapes::ListShape.new(name: 'GlobalSecondaryIndexUpdateList')
         | 
| 212 | 
            +
                GlobalSecondaryIndexWarmThroughputDescription = Shapes::StructureShape.new(name: 'GlobalSecondaryIndexWarmThroughputDescription')
         | 
| 204 213 | 
             
                GlobalSecondaryIndexes = Shapes::ListShape.new(name: 'GlobalSecondaryIndexes')
         | 
| 205 214 | 
             
                GlobalTable = Shapes::StructureShape.new(name: 'GlobalTable')
         | 
| 206 215 | 
             
                GlobalTableAlreadyExistsException = Shapes::StructureShape.new(name: 'GlobalTableAlreadyExistsException')
         | 
| @@ -293,6 +302,7 @@ module Aws::DynamoDB | |
| 293 302 | 
             
                Long = Shapes::IntegerShape.new(name: 'Long')
         | 
| 294 303 | 
             
                LongObject = Shapes::IntegerShape.new(name: 'LongObject')
         | 
| 295 304 | 
             
                MapAttributeValue = Shapes::MapShape.new(name: 'MapAttributeValue')
         | 
| 305 | 
            +
                MultiRegionConsistency = Shapes::StringShape.new(name: 'MultiRegionConsistency')
         | 
| 296 306 | 
             
                NextTokenString = Shapes::StringShape.new(name: 'NextTokenString')
         | 
| 297 307 | 
             
                NonKeyAttributeName = Shapes::StringShape.new(name: 'NonKeyAttributeName')
         | 
| 298 308 | 
             
                NonKeyAttributeNameList = Shapes::ListShape.new(name: 'NonKeyAttributeNameList')
         | 
| @@ -300,6 +310,8 @@ module Aws::DynamoDB | |
| 300 310 | 
             
                NullAttributeValue = Shapes::BooleanShape.new(name: 'NullAttributeValue')
         | 
| 301 311 | 
             
                NumberAttributeValue = Shapes::StringShape.new(name: 'NumberAttributeValue')
         | 
| 302 312 | 
             
                NumberSetAttributeValue = Shapes::ListShape.new(name: 'NumberSetAttributeValue')
         | 
| 313 | 
            +
                OnDemandThroughput = Shapes::StructureShape.new(name: 'OnDemandThroughput')
         | 
| 314 | 
            +
                OnDemandThroughputOverride = Shapes::StructureShape.new(name: 'OnDemandThroughputOverride')
         | 
| 303 315 | 
             
                ParameterizedStatement = Shapes::StructureShape.new(name: 'ParameterizedStatement')
         | 
| 304 316 | 
             
                ParameterizedStatements = Shapes::ListShape.new(name: 'ParameterizedStatements')
         | 
| 305 317 | 
             
                PartiQLBatchRequest = Shapes::ListShape.new(name: 'PartiQLBatchRequest')
         | 
| @@ -310,6 +322,8 @@ module Aws::DynamoDB | |
| 310 322 | 
             
                PointInTimeRecoverySpecification = Shapes::StructureShape.new(name: 'PointInTimeRecoverySpecification')
         | 
| 311 323 | 
             
                PointInTimeRecoveryStatus = Shapes::StringShape.new(name: 'PointInTimeRecoveryStatus')
         | 
| 312 324 | 
             
                PointInTimeRecoveryUnavailableException = Shapes::StructureShape.new(name: 'PointInTimeRecoveryUnavailableException')
         | 
| 325 | 
            +
                PolicyNotFoundException = Shapes::StructureShape.new(name: 'PolicyNotFoundException')
         | 
| 326 | 
            +
                PolicyRevisionId = Shapes::StringShape.new(name: 'PolicyRevisionId')
         | 
| 313 327 | 
             
                PositiveIntegerObject = Shapes::IntegerShape.new(name: 'PositiveIntegerObject')
         | 
| 314 328 | 
             
                PositiveLongObject = Shapes::IntegerShape.new(name: 'PositiveLongObject')
         | 
| 315 329 | 
             
                PreparedStatementParameters = Shapes::ListShape.new(name: 'PreparedStatementParameters')
         | 
| @@ -326,6 +340,8 @@ module Aws::DynamoDB | |
| 326 340 | 
             
                PutItemInputAttributeMap = Shapes::MapShape.new(name: 'PutItemInputAttributeMap')
         | 
| 327 341 | 
             
                PutItemOutput = Shapes::StructureShape.new(name: 'PutItemOutput')
         | 
| 328 342 | 
             
                PutRequest = Shapes::StructureShape.new(name: 'PutRequest')
         | 
| 343 | 
            +
                PutResourcePolicyInput = Shapes::StructureShape.new(name: 'PutResourcePolicyInput')
         | 
| 344 | 
            +
                PutResourcePolicyOutput = Shapes::StructureShape.new(name: 'PutResourcePolicyOutput')
         | 
| 329 345 | 
             
                QueryInput = Shapes::StructureShape.new(name: 'QueryInput')
         | 
| 330 346 | 
             
                QueryOutput = Shapes::StructureShape.new(name: 'QueryOutput')
         | 
| 331 347 | 
             
                RegionName = Shapes::StringShape.new(name: 'RegionName')
         | 
| @@ -360,12 +376,14 @@ module Aws::DynamoDB | |
| 360 376 | 
             
                ReplicaStatusPercentProgress = Shapes::StringShape.new(name: 'ReplicaStatusPercentProgress')
         | 
| 361 377 | 
             
                ReplicaUpdate = Shapes::StructureShape.new(name: 'ReplicaUpdate')
         | 
| 362 378 | 
             
                ReplicaUpdateList = Shapes::ListShape.new(name: 'ReplicaUpdateList')
         | 
| 379 | 
            +
                ReplicatedWriteConflictException = Shapes::StructureShape.new(name: 'ReplicatedWriteConflictException')
         | 
| 363 380 | 
             
                ReplicationGroupUpdate = Shapes::StructureShape.new(name: 'ReplicationGroupUpdate')
         | 
| 364 381 | 
             
                ReplicationGroupUpdateList = Shapes::ListShape.new(name: 'ReplicationGroupUpdateList')
         | 
| 365 382 | 
             
                RequestLimitExceeded = Shapes::StructureShape.new(name: 'RequestLimitExceeded')
         | 
| 366 383 | 
             
                ResourceArnString = Shapes::StringShape.new(name: 'ResourceArnString')
         | 
| 367 384 | 
             
                ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
         | 
| 368 385 | 
             
                ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
         | 
| 386 | 
            +
                ResourcePolicy = Shapes::StringShape.new(name: 'ResourcePolicy')
         | 
| 369 387 | 
             
                RestoreInProgress = Shapes::BooleanShape.new(name: 'RestoreInProgress')
         | 
| 370 388 | 
             
                RestoreSummary = Shapes::StructureShape.new(name: 'RestoreSummary')
         | 
| 371 389 | 
             
                RestoreTableFromBackupInput = Shapes::StructureShape.new(name: 'RestoreTableFromBackupInput')
         | 
| @@ -417,6 +435,7 @@ module Aws::DynamoDB | |
| 417 435 | 
             
                TableNameList = Shapes::ListShape.new(name: 'TableNameList')
         | 
| 418 436 | 
             
                TableNotFoundException = Shapes::StructureShape.new(name: 'TableNotFoundException')
         | 
| 419 437 | 
             
                TableStatus = Shapes::StringShape.new(name: 'TableStatus')
         | 
| 438 | 
            +
                TableWarmThroughputDescription = Shapes::StructureShape.new(name: 'TableWarmThroughputDescription')
         | 
| 420 439 | 
             
                Tag = Shapes::StructureShape.new(name: 'Tag')
         | 
| 421 440 | 
             
                TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
         | 
| 422 441 | 
             
                TagKeyString = Shapes::StringShape.new(name: 'TagKeyString')
         | 
| @@ -455,6 +474,9 @@ module Aws::DynamoDB | |
| 455 474 | 
             
                UpdateGlobalTableSettingsOutput = Shapes::StructureShape.new(name: 'UpdateGlobalTableSettingsOutput')
         | 
| 456 475 | 
             
                UpdateItemInput = Shapes::StructureShape.new(name: 'UpdateItemInput')
         | 
| 457 476 | 
             
                UpdateItemOutput = Shapes::StructureShape.new(name: 'UpdateItemOutput')
         | 
| 477 | 
            +
                UpdateKinesisStreamingConfiguration = Shapes::StructureShape.new(name: 'UpdateKinesisStreamingConfiguration')
         | 
| 478 | 
            +
                UpdateKinesisStreamingDestinationInput = Shapes::StructureShape.new(name: 'UpdateKinesisStreamingDestinationInput')
         | 
| 479 | 
            +
                UpdateKinesisStreamingDestinationOutput = Shapes::StructureShape.new(name: 'UpdateKinesisStreamingDestinationOutput')
         | 
| 458 480 | 
             
                UpdateReplicationGroupMemberAction = Shapes::StructureShape.new(name: 'UpdateReplicationGroupMemberAction')
         | 
| 459 481 | 
             
                UpdateTableInput = Shapes::StructureShape.new(name: 'UpdateTableInput')
         | 
| 460 482 | 
             
                UpdateTableOutput = Shapes::StructureShape.new(name: 'UpdateTableOutput')
         | 
| @@ -462,6 +484,7 @@ module Aws::DynamoDB | |
| 462 484 | 
             
                UpdateTableReplicaAutoScalingOutput = Shapes::StructureShape.new(name: 'UpdateTableReplicaAutoScalingOutput')
         | 
| 463 485 | 
             
                UpdateTimeToLiveInput = Shapes::StructureShape.new(name: 'UpdateTimeToLiveInput')
         | 
| 464 486 | 
             
                UpdateTimeToLiveOutput = Shapes::StructureShape.new(name: 'UpdateTimeToLiveOutput')
         | 
| 487 | 
            +
                WarmThroughput = Shapes::StructureShape.new(name: 'WarmThroughput')
         | 
| 465 488 | 
             
                WriteRequest = Shapes::StructureShape.new(name: 'WriteRequest')
         | 
| 466 489 | 
             
                WriteRequests = Shapes::ListShape.new(name: 'WriteRequests')
         | 
| 467 490 |  | 
| @@ -589,10 +612,10 @@ module Aws::DynamoDB | |
| 589 612 | 
             
                BatchGetItemOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacityMultiple, location_name: "ConsumedCapacity"))
         | 
| 590 613 | 
             
                BatchGetItemOutput.struct_class = Types::BatchGetItemOutput
         | 
| 591 614 |  | 
| 592 | 
            -
                BatchGetRequestMap.key = Shapes::ShapeRef.new(shape:  | 
| 615 | 
            +
                BatchGetRequestMap.key = Shapes::ShapeRef.new(shape: TableArn)
         | 
| 593 616 | 
             
                BatchGetRequestMap.value = Shapes::ShapeRef.new(shape: KeysAndAttributes)
         | 
| 594 617 |  | 
| 595 | 
            -
                BatchGetResponseMap.key = Shapes::ShapeRef.new(shape:  | 
| 618 | 
            +
                BatchGetResponseMap.key = Shapes::ShapeRef.new(shape: TableArn)
         | 
| 596 619 | 
             
                BatchGetResponseMap.value = Shapes::ShapeRef.new(shape: ItemList)
         | 
| 597 620 |  | 
| 598 621 | 
             
                BatchStatementError.add_member(:code, Shapes::ShapeRef.new(shape: BatchStatementErrorCodeEnum, location_name: "Code"))
         | 
| @@ -621,7 +644,7 @@ module Aws::DynamoDB | |
| 621 644 | 
             
                BatchWriteItemOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacityMultiple, location_name: "ConsumedCapacity"))
         | 
| 622 645 | 
             
                BatchWriteItemOutput.struct_class = Types::BatchWriteItemOutput
         | 
| 623 646 |  | 
| 624 | 
            -
                BatchWriteItemRequestMap.key = Shapes::ShapeRef.new(shape:  | 
| 647 | 
            +
                BatchWriteItemRequestMap.key = Shapes::ShapeRef.new(shape: TableArn)
         | 
| 625 648 | 
             
                BatchWriteItemRequestMap.value = Shapes::ShapeRef.new(shape: WriteRequests)
         | 
| 626 649 |  | 
| 627 650 | 
             
                BillingModeSummary.add_member(:billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingMode"))
         | 
| @@ -647,7 +670,7 @@ module Aws::DynamoDB | |
| 647 670 | 
             
                Condition.struct_class = Types::Condition
         | 
| 648 671 |  | 
| 649 672 | 
             
                ConditionCheck.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 650 | 
            -
                ConditionCheck.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 673 | 
            +
                ConditionCheck.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 651 674 | 
             
                ConditionCheck.add_member(:condition_expression, Shapes::ShapeRef.new(shape: ConditionExpression, required: true, location_name: "ConditionExpression"))
         | 
| 652 675 | 
             
                ConditionCheck.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
         | 
| 653 676 | 
             
                ConditionCheck.add_member(:expression_attribute_values, Shapes::ShapeRef.new(shape: ExpressionAttributeValueMap, location_name: "ExpressionAttributeValues"))
         | 
| @@ -658,7 +681,7 @@ module Aws::DynamoDB | |
| 658 681 | 
             
                ConditionalCheckFailedException.add_member(:item, Shapes::ShapeRef.new(shape: AttributeMap, location_name: "Item"))
         | 
| 659 682 | 
             
                ConditionalCheckFailedException.struct_class = Types::ConditionalCheckFailedException
         | 
| 660 683 |  | 
| 661 | 
            -
                ConsumedCapacity.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 684 | 
            +
                ConsumedCapacity.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName"))
         | 
| 662 685 | 
             
                ConsumedCapacity.add_member(:capacity_units, Shapes::ShapeRef.new(shape: ConsumedCapacityUnits, location_name: "CapacityUnits"))
         | 
| 663 686 | 
             
                ConsumedCapacity.add_member(:read_capacity_units, Shapes::ShapeRef.new(shape: ConsumedCapacityUnits, location_name: "ReadCapacityUnits"))
         | 
| 664 687 | 
             
                ConsumedCapacity.add_member(:write_capacity_units, Shapes::ShapeRef.new(shape: ConsumedCapacityUnits, location_name: "WriteCapacityUnits"))
         | 
| @@ -685,7 +708,7 @@ module Aws::DynamoDB | |
| 685 708 | 
             
                ContributorInsightsSummary.add_member(:contributor_insights_status, Shapes::ShapeRef.new(shape: ContributorInsightsStatus, location_name: "ContributorInsightsStatus"))
         | 
| 686 709 | 
             
                ContributorInsightsSummary.struct_class = Types::ContributorInsightsSummary
         | 
| 687 710 |  | 
| 688 | 
            -
                CreateBackupInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 711 | 
            +
                CreateBackupInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 689 712 | 
             
                CreateBackupInput.add_member(:backup_name, Shapes::ShapeRef.new(shape: BackupName, required: true, location_name: "BackupName"))
         | 
| 690 713 | 
             
                CreateBackupInput.struct_class = Types::CreateBackupInput
         | 
| 691 714 |  | 
| @@ -696,6 +719,8 @@ module Aws::DynamoDB | |
| 696 719 | 
             
                CreateGlobalSecondaryIndexAction.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
         | 
| 697 720 | 
             
                CreateGlobalSecondaryIndexAction.add_member(:projection, Shapes::ShapeRef.new(shape: Projection, required: true, location_name: "Projection"))
         | 
| 698 721 | 
             
                CreateGlobalSecondaryIndexAction.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
         | 
| 722 | 
            +
                CreateGlobalSecondaryIndexAction.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 723 | 
            +
                CreateGlobalSecondaryIndexAction.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
         | 
| 699 724 | 
             
                CreateGlobalSecondaryIndexAction.struct_class = Types::CreateGlobalSecondaryIndexAction
         | 
| 700 725 |  | 
| 701 726 | 
             
                CreateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
         | 
| @@ -711,12 +736,13 @@ module Aws::DynamoDB | |
| 711 736 | 
             
                CreateReplicationGroupMemberAction.add_member(:region_name, Shapes::ShapeRef.new(shape: RegionName, required: true, location_name: "RegionName"))
         | 
| 712 737 | 
             
                CreateReplicationGroupMemberAction.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
         | 
| 713 738 | 
             
                CreateReplicationGroupMemberAction.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
         | 
| 739 | 
            +
                CreateReplicationGroupMemberAction.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughputOverride, location_name: "OnDemandThroughputOverride"))
         | 
| 714 740 | 
             
                CreateReplicationGroupMemberAction.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
         | 
| 715 741 | 
             
                CreateReplicationGroupMemberAction.add_member(:table_class_override, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClassOverride"))
         | 
| 716 742 | 
             
                CreateReplicationGroupMemberAction.struct_class = Types::CreateReplicationGroupMemberAction
         | 
| 717 743 |  | 
| 718 744 | 
             
                CreateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, required: true, location_name: "AttributeDefinitions"))
         | 
| 719 | 
            -
                CreateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 745 | 
            +
                CreateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 720 746 | 
             
                CreateTableInput.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
         | 
| 721 747 | 
             
                CreateTableInput.add_member(:local_secondary_indexes, Shapes::ShapeRef.new(shape: LocalSecondaryIndexList, location_name: "LocalSecondaryIndexes"))
         | 
| 722 748 | 
             
                CreateTableInput.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
         | 
| @@ -727,6 +753,9 @@ module Aws::DynamoDB | |
| 727 753 | 
             
                CreateTableInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
         | 
| 728 754 | 
             
                CreateTableInput.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
         | 
| 729 755 | 
             
                CreateTableInput.add_member(:deletion_protection_enabled, Shapes::ShapeRef.new(shape: DeletionProtectionEnabled, location_name: "DeletionProtectionEnabled"))
         | 
| 756 | 
            +
                CreateTableInput.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
         | 
| 757 | 
            +
                CreateTableInput.add_member(:resource_policy, Shapes::ShapeRef.new(shape: ResourcePolicy, location_name: "ResourcePolicy"))
         | 
| 758 | 
            +
                CreateTableInput.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 730 759 | 
             
                CreateTableInput.struct_class = Types::CreateTableInput
         | 
| 731 760 |  | 
| 732 761 | 
             
                CreateTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
         | 
| @@ -739,7 +768,7 @@ module Aws::DynamoDB | |
| 739 768 | 
             
                CsvOptions.struct_class = Types::CsvOptions
         | 
| 740 769 |  | 
| 741 770 | 
             
                Delete.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 742 | 
            -
                Delete.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 771 | 
            +
                Delete.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 743 772 | 
             
                Delete.add_member(:condition_expression, Shapes::ShapeRef.new(shape: ConditionExpression, location_name: "ConditionExpression"))
         | 
| 744 773 | 
             
                Delete.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
         | 
| 745 774 | 
             
                Delete.add_member(:expression_attribute_values, Shapes::ShapeRef.new(shape: ExpressionAttributeValueMap, location_name: "ExpressionAttributeValues"))
         | 
| @@ -755,7 +784,7 @@ module Aws::DynamoDB | |
| 755 784 | 
             
                DeleteGlobalSecondaryIndexAction.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, required: true, location_name: "IndexName"))
         | 
| 756 785 | 
             
                DeleteGlobalSecondaryIndexAction.struct_class = Types::DeleteGlobalSecondaryIndexAction
         | 
| 757 786 |  | 
| 758 | 
            -
                DeleteItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 787 | 
            +
                DeleteItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 759 788 | 
             
                DeleteItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 760 789 | 
             
                DeleteItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
         | 
| 761 790 | 
             
                DeleteItemInput.add_member(:conditional_operator, Shapes::ShapeRef.new(shape: ConditionalOperator, location_name: "ConditionalOperator"))
         | 
| @@ -782,7 +811,14 @@ module Aws::DynamoDB | |
| 782 811 | 
             
                DeleteRequest.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 783 812 | 
             
                DeleteRequest.struct_class = Types::DeleteRequest
         | 
| 784 813 |  | 
| 785 | 
            -
                 | 
| 814 | 
            +
                DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
         | 
| 815 | 
            +
                DeleteResourcePolicyInput.add_member(:expected_revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "ExpectedRevisionId"))
         | 
| 816 | 
            +
                DeleteResourcePolicyInput.struct_class = Types::DeleteResourcePolicyInput
         | 
| 817 | 
            +
             | 
| 818 | 
            +
                DeleteResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
         | 
| 819 | 
            +
                DeleteResourcePolicyOutput.struct_class = Types::DeleteResourcePolicyOutput
         | 
| 820 | 
            +
             | 
| 821 | 
            +
                DeleteTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 786 822 | 
             
                DeleteTableInput.struct_class = Types::DeleteTableInput
         | 
| 787 823 |  | 
| 788 824 | 
             
                DeleteTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
         | 
| @@ -794,13 +830,13 @@ module Aws::DynamoDB | |
| 794 830 | 
             
                DescribeBackupOutput.add_member(:backup_description, Shapes::ShapeRef.new(shape: BackupDescription, location_name: "BackupDescription"))
         | 
| 795 831 | 
             
                DescribeBackupOutput.struct_class = Types::DescribeBackupOutput
         | 
| 796 832 |  | 
| 797 | 
            -
                DescribeContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 833 | 
            +
                DescribeContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 798 834 | 
             
                DescribeContinuousBackupsInput.struct_class = Types::DescribeContinuousBackupsInput
         | 
| 799 835 |  | 
| 800 836 | 
             
                DescribeContinuousBackupsOutput.add_member(:continuous_backups_description, Shapes::ShapeRef.new(shape: ContinuousBackupsDescription, location_name: "ContinuousBackupsDescription"))
         | 
| 801 837 | 
             
                DescribeContinuousBackupsOutput.struct_class = Types::DescribeContinuousBackupsOutput
         | 
| 802 838 |  | 
| 803 | 
            -
                DescribeContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 839 | 
            +
                DescribeContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 804 840 | 
             
                DescribeContributorInsightsInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| 805 841 | 
             
                DescribeContributorInsightsInput.struct_class = Types::DescribeContributorInsightsInput
         | 
| 806 842 |  | 
| @@ -842,7 +878,7 @@ module Aws::DynamoDB | |
| 842 878 | 
             
                DescribeImportOutput.add_member(:import_table_description, Shapes::ShapeRef.new(shape: ImportTableDescription, required: true, location_name: "ImportTableDescription"))
         | 
| 843 879 | 
             
                DescribeImportOutput.struct_class = Types::DescribeImportOutput
         | 
| 844 880 |  | 
| 845 | 
            -
                DescribeKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 881 | 
            +
                DescribeKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 846 882 | 
             
                DescribeKinesisStreamingDestinationInput.struct_class = Types::DescribeKinesisStreamingDestinationInput
         | 
| 847 883 |  | 
| 848 884 | 
             
                DescribeKinesisStreamingDestinationOutput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
         | 
| @@ -857,19 +893,19 @@ module Aws::DynamoDB | |
| 857 893 | 
             
                DescribeLimitsOutput.add_member(:table_max_write_capacity_units, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "TableMaxWriteCapacityUnits"))
         | 
| 858 894 | 
             
                DescribeLimitsOutput.struct_class = Types::DescribeLimitsOutput
         | 
| 859 895 |  | 
| 860 | 
            -
                DescribeTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 896 | 
            +
                DescribeTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 861 897 | 
             
                DescribeTableInput.struct_class = Types::DescribeTableInput
         | 
| 862 898 |  | 
| 863 899 | 
             
                DescribeTableOutput.add_member(:table, Shapes::ShapeRef.new(shape: TableDescription, location_name: "Table"))
         | 
| 864 900 | 
             
                DescribeTableOutput.struct_class = Types::DescribeTableOutput
         | 
| 865 901 |  | 
| 866 | 
            -
                DescribeTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 902 | 
            +
                DescribeTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 867 903 | 
             
                DescribeTableReplicaAutoScalingInput.struct_class = Types::DescribeTableReplicaAutoScalingInput
         | 
| 868 904 |  | 
| 869 905 | 
             
                DescribeTableReplicaAutoScalingOutput.add_member(:table_auto_scaling_description, Shapes::ShapeRef.new(shape: TableAutoScalingDescription, location_name: "TableAutoScalingDescription"))
         | 
| 870 906 | 
             
                DescribeTableReplicaAutoScalingOutput.struct_class = Types::DescribeTableReplicaAutoScalingOutput
         | 
| 871 907 |  | 
| 872 | 
            -
                DescribeTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 908 | 
            +
                DescribeTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 873 909 | 
             
                DescribeTimeToLiveInput.struct_class = Types::DescribeTimeToLiveInput
         | 
| 874 910 |  | 
| 875 911 | 
             
                DescribeTimeToLiveOutput.add_member(:time_to_live_description, Shapes::ShapeRef.new(shape: TimeToLiveDescription, location_name: "TimeToLiveDescription"))
         | 
| @@ -878,6 +914,9 @@ module Aws::DynamoDB | |
| 878 914 | 
             
                DuplicateItemException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| 879 915 | 
             
                DuplicateItemException.struct_class = Types::DuplicateItemException
         | 
| 880 916 |  | 
| 917 | 
            +
                EnableKinesisStreamingConfiguration.add_member(:approximate_creation_date_time_precision, Shapes::ShapeRef.new(shape: ApproximateCreationDateTimePrecision, location_name: "ApproximateCreationDateTimePrecision"))
         | 
| 918 | 
            +
                EnableKinesisStreamingConfiguration.struct_class = Types::EnableKinesisStreamingConfiguration
         | 
| 919 | 
            +
             | 
| 881 920 | 
             
                Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Address"))
         | 
| 882 921 | 
             
                Endpoint.add_member(:cache_period_in_minutes, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "CachePeriodInMinutes"))
         | 
| 883 922 | 
             
                Endpoint.struct_class = Types::Endpoint
         | 
| @@ -983,12 +1022,12 @@ module Aws::DynamoDB | |
| 983 1022 | 
             
                FilterConditionMap.value = Shapes::ShapeRef.new(shape: Condition)
         | 
| 984 1023 |  | 
| 985 1024 | 
             
                Get.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 986 | 
            -
                Get.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1025 | 
            +
                Get.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 987 1026 | 
             
                Get.add_member(:projection_expression, Shapes::ShapeRef.new(shape: ProjectionExpression, location_name: "ProjectionExpression"))
         | 
| 988 1027 | 
             
                Get.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
         | 
| 989 1028 | 
             
                Get.struct_class = Types::Get
         | 
| 990 1029 |  | 
| 991 | 
            -
                GetItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1030 | 
            +
                GetItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 992 1031 | 
             
                GetItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 993 1032 | 
             
                GetItemInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
         | 
| 994 1033 | 
             
                GetItemInput.add_member(:consistent_read, Shapes::ShapeRef.new(shape: ConsistentRead, location_name: "ConsistentRead"))
         | 
| @@ -1001,10 +1040,19 @@ module Aws::DynamoDB | |
| 1001 1040 | 
             
                GetItemOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacity, location_name: "ConsumedCapacity"))
         | 
| 1002 1041 | 
             
                GetItemOutput.struct_class = Types::GetItemOutput
         | 
| 1003 1042 |  | 
| 1043 | 
            +
                GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
         | 
| 1044 | 
            +
                GetResourcePolicyInput.struct_class = Types::GetResourcePolicyInput
         | 
| 1045 | 
            +
             | 
| 1046 | 
            +
                GetResourcePolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicy, location_name: "Policy"))
         | 
| 1047 | 
            +
                GetResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
         | 
| 1048 | 
            +
                GetResourcePolicyOutput.struct_class = Types::GetResourcePolicyOutput
         | 
| 1049 | 
            +
             | 
| 1004 1050 | 
             
                GlobalSecondaryIndex.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, required: true, location_name: "IndexName"))
         | 
| 1005 1051 | 
             
                GlobalSecondaryIndex.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
         | 
| 1006 1052 | 
             
                GlobalSecondaryIndex.add_member(:projection, Shapes::ShapeRef.new(shape: Projection, required: true, location_name: "Projection"))
         | 
| 1007 1053 | 
             
                GlobalSecondaryIndex.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
         | 
| 1054 | 
            +
                GlobalSecondaryIndex.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1055 | 
            +
                GlobalSecondaryIndex.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
         | 
| 1008 1056 | 
             
                GlobalSecondaryIndex.struct_class = Types::GlobalSecondaryIndex
         | 
| 1009 1057 |  | 
| 1010 1058 | 
             
                GlobalSecondaryIndexAutoScalingUpdate.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| @@ -1022,6 +1070,8 @@ module Aws::DynamoDB | |
| 1022 1070 | 
             
                GlobalSecondaryIndexDescription.add_member(:index_size_bytes, Shapes::ShapeRef.new(shape: LongObject, location_name: "IndexSizeBytes"))
         | 
| 1023 1071 | 
             
                GlobalSecondaryIndexDescription.add_member(:item_count, Shapes::ShapeRef.new(shape: LongObject, location_name: "ItemCount"))
         | 
| 1024 1072 | 
             
                GlobalSecondaryIndexDescription.add_member(:index_arn, Shapes::ShapeRef.new(shape: String, location_name: "IndexArn"))
         | 
| 1073 | 
            +
                GlobalSecondaryIndexDescription.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1074 | 
            +
                GlobalSecondaryIndexDescription.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexWarmThroughputDescription, location_name: "WarmThroughput"))
         | 
| 1025 1075 | 
             
                GlobalSecondaryIndexDescription.struct_class = Types::GlobalSecondaryIndexDescription
         | 
| 1026 1076 |  | 
| 1027 1077 | 
             
                GlobalSecondaryIndexDescriptionList.member = Shapes::ShapeRef.new(shape: GlobalSecondaryIndexDescription)
         | 
| @@ -1030,6 +1080,7 @@ module Aws::DynamoDB | |
| 1030 1080 | 
             
                GlobalSecondaryIndexInfo.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, location_name: "KeySchema"))
         | 
| 1031 1081 | 
             
                GlobalSecondaryIndexInfo.add_member(:projection, Shapes::ShapeRef.new(shape: Projection, location_name: "Projection"))
         | 
| 1032 1082 | 
             
                GlobalSecondaryIndexInfo.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
         | 
| 1083 | 
            +
                GlobalSecondaryIndexInfo.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1033 1084 | 
             
                GlobalSecondaryIndexInfo.struct_class = Types::GlobalSecondaryIndexInfo
         | 
| 1034 1085 |  | 
| 1035 1086 | 
             
                GlobalSecondaryIndexList.member = Shapes::ShapeRef.new(shape: GlobalSecondaryIndex)
         | 
| @@ -1041,6 +1092,11 @@ module Aws::DynamoDB | |
| 1041 1092 |  | 
| 1042 1093 | 
             
                GlobalSecondaryIndexUpdateList.member = Shapes::ShapeRef.new(shape: GlobalSecondaryIndexUpdate)
         | 
| 1043 1094 |  | 
| 1095 | 
            +
                GlobalSecondaryIndexWarmThroughputDescription.add_member(:read_units_per_second, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "ReadUnitsPerSecond"))
         | 
| 1096 | 
            +
                GlobalSecondaryIndexWarmThroughputDescription.add_member(:write_units_per_second, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "WriteUnitsPerSecond"))
         | 
| 1097 | 
            +
                GlobalSecondaryIndexWarmThroughputDescription.add_member(:status, Shapes::ShapeRef.new(shape: IndexStatus, location_name: "Status"))
         | 
| 1098 | 
            +
                GlobalSecondaryIndexWarmThroughputDescription.struct_class = Types::GlobalSecondaryIndexWarmThroughputDescription
         | 
| 1099 | 
            +
             | 
| 1044 1100 | 
             
                GlobalSecondaryIndexes.member = Shapes::ShapeRef.new(shape: GlobalSecondaryIndexInfo)
         | 
| 1045 1101 |  | 
| 1046 1102 | 
             
                GlobalTable.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "GlobalTableName"))
         | 
| @@ -1151,7 +1207,7 @@ module Aws::DynamoDB | |
| 1151 1207 |  | 
| 1152 1208 | 
             
                ItemCollectionMetricsMultiple.member = Shapes::ShapeRef.new(shape: ItemCollectionMetrics)
         | 
| 1153 1209 |  | 
| 1154 | 
            -
                ItemCollectionMetricsPerTable.key = Shapes::ShapeRef.new(shape:  | 
| 1210 | 
            +
                ItemCollectionMetricsPerTable.key = Shapes::ShapeRef.new(shape: TableArn)
         | 
| 1155 1211 | 
             
                ItemCollectionMetricsPerTable.value = Shapes::ShapeRef.new(shape: ItemCollectionMetricsMultiple)
         | 
| 1156 1212 |  | 
| 1157 1213 | 
             
                ItemCollectionSizeEstimateRange.member = Shapes::ShapeRef.new(shape: ItemCollectionSizeEstimateBound)
         | 
| @@ -1190,17 +1246,20 @@ module Aws::DynamoDB | |
| 1190 1246 | 
             
                KinesisDataStreamDestination.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, location_name: "StreamArn"))
         | 
| 1191 1247 | 
             
                KinesisDataStreamDestination.add_member(:destination_status, Shapes::ShapeRef.new(shape: DestinationStatus, location_name: "DestinationStatus"))
         | 
| 1192 1248 | 
             
                KinesisDataStreamDestination.add_member(:destination_status_description, Shapes::ShapeRef.new(shape: String, location_name: "DestinationStatusDescription"))
         | 
| 1249 | 
            +
                KinesisDataStreamDestination.add_member(:approximate_creation_date_time_precision, Shapes::ShapeRef.new(shape: ApproximateCreationDateTimePrecision, location_name: "ApproximateCreationDateTimePrecision"))
         | 
| 1193 1250 | 
             
                KinesisDataStreamDestination.struct_class = Types::KinesisDataStreamDestination
         | 
| 1194 1251 |  | 
| 1195 1252 | 
             
                KinesisDataStreamDestinations.member = Shapes::ShapeRef.new(shape: KinesisDataStreamDestination)
         | 
| 1196 1253 |  | 
| 1197 | 
            -
                KinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1254 | 
            +
                KinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1198 1255 | 
             
                KinesisStreamingDestinationInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, required: true, location_name: "StreamArn"))
         | 
| 1256 | 
            +
                KinesisStreamingDestinationInput.add_member(:enable_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: EnableKinesisStreamingConfiguration, location_name: "EnableKinesisStreamingConfiguration"))
         | 
| 1199 1257 | 
             
                KinesisStreamingDestinationInput.struct_class = Types::KinesisStreamingDestinationInput
         | 
| 1200 1258 |  | 
| 1201 1259 | 
             
                KinesisStreamingDestinationOutput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
         | 
| 1202 1260 | 
             
                KinesisStreamingDestinationOutput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, location_name: "StreamArn"))
         | 
| 1203 1261 | 
             
                KinesisStreamingDestinationOutput.add_member(:destination_status, Shapes::ShapeRef.new(shape: DestinationStatus, location_name: "DestinationStatus"))
         | 
| 1262 | 
            +
                KinesisStreamingDestinationOutput.add_member(:enable_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: EnableKinesisStreamingConfiguration, location_name: "EnableKinesisStreamingConfiguration"))
         | 
| 1204 1263 | 
             
                KinesisStreamingDestinationOutput.struct_class = Types::KinesisStreamingDestinationOutput
         | 
| 1205 1264 |  | 
| 1206 1265 | 
             
                LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| @@ -1208,7 +1267,7 @@ module Aws::DynamoDB | |
| 1208 1267 |  | 
| 1209 1268 | 
             
                ListAttributeValue.member = Shapes::ShapeRef.new(shape: AttributeValue)
         | 
| 1210 1269 |  | 
| 1211 | 
            -
                ListBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1270 | 
            +
                ListBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName"))
         | 
| 1212 1271 | 
             
                ListBackupsInput.add_member(:limit, Shapes::ShapeRef.new(shape: BackupsInputLimit, location_name: "Limit"))
         | 
| 1213 1272 | 
             
                ListBackupsInput.add_member(:time_range_lower_bound, Shapes::ShapeRef.new(shape: TimeRangeLowerBound, location_name: "TimeRangeLowerBound"))
         | 
| 1214 1273 | 
             
                ListBackupsInput.add_member(:time_range_upper_bound, Shapes::ShapeRef.new(shape: TimeRangeUpperBound, location_name: "TimeRangeUpperBound"))
         | 
| @@ -1220,7 +1279,7 @@ module Aws::DynamoDB | |
| 1220 1279 | 
             
                ListBackupsOutput.add_member(:last_evaluated_backup_arn, Shapes::ShapeRef.new(shape: BackupArn, location_name: "LastEvaluatedBackupArn"))
         | 
| 1221 1280 | 
             
                ListBackupsOutput.struct_class = Types::ListBackupsOutput
         | 
| 1222 1281 |  | 
| 1223 | 
            -
                ListContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1282 | 
            +
                ListContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, location_name: "TableName"))
         | 
| 1224 1283 | 
             
                ListContributorInsightsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenString, location_name: "NextToken"))
         | 
| 1225 1284 | 
             
                ListContributorInsightsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListContributorInsightsLimit, location_name: "MaxResults"))
         | 
| 1226 1285 | 
             
                ListContributorInsightsInput.struct_class = Types::ListContributorInsightsInput
         | 
| @@ -1303,6 +1362,13 @@ module Aws::DynamoDB | |
| 1303 1362 |  | 
| 1304 1363 | 
             
                NumberSetAttributeValue.member = Shapes::ShapeRef.new(shape: NumberAttributeValue)
         | 
| 1305 1364 |  | 
| 1365 | 
            +
                OnDemandThroughput.add_member(:max_read_request_units, Shapes::ShapeRef.new(shape: LongObject, location_name: "MaxReadRequestUnits"))
         | 
| 1366 | 
            +
                OnDemandThroughput.add_member(:max_write_request_units, Shapes::ShapeRef.new(shape: LongObject, location_name: "MaxWriteRequestUnits"))
         | 
| 1367 | 
            +
                OnDemandThroughput.struct_class = Types::OnDemandThroughput
         | 
| 1368 | 
            +
             | 
| 1369 | 
            +
                OnDemandThroughputOverride.add_member(:max_read_request_units, Shapes::ShapeRef.new(shape: LongObject, location_name: "MaxReadRequestUnits"))
         | 
| 1370 | 
            +
                OnDemandThroughputOverride.struct_class = Types::OnDemandThroughputOverride
         | 
| 1371 | 
            +
             | 
| 1306 1372 | 
             
                ParameterizedStatement.add_member(:statement, Shapes::ShapeRef.new(shape: PartiQLStatement, required: true, location_name: "Statement"))
         | 
| 1307 1373 | 
             
                ParameterizedStatement.add_member(:parameters, Shapes::ShapeRef.new(shape: PreparedStatementParameters, location_name: "Parameters"))
         | 
| 1308 1374 | 
             
                ParameterizedStatement.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
         | 
| @@ -1325,6 +1391,9 @@ module Aws::DynamoDB | |
| 1325 1391 | 
             
                PointInTimeRecoveryUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| 1326 1392 | 
             
                PointInTimeRecoveryUnavailableException.struct_class = Types::PointInTimeRecoveryUnavailableException
         | 
| 1327 1393 |  | 
| 1394 | 
            +
                PolicyNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| 1395 | 
            +
                PolicyNotFoundException.struct_class = Types::PolicyNotFoundException
         | 
| 1396 | 
            +
             | 
| 1328 1397 | 
             
                PreparedStatementParameters.member = Shapes::ShapeRef.new(shape: AttributeValue)
         | 
| 1329 1398 |  | 
| 1330 1399 | 
             
                Projection.add_member(:projection_type, Shapes::ShapeRef.new(shape: ProjectionType, location_name: "ProjectionType"))
         | 
| @@ -1349,14 +1418,14 @@ module Aws::DynamoDB | |
| 1349 1418 | 
             
                ProvisionedThroughputOverride.struct_class = Types::ProvisionedThroughputOverride
         | 
| 1350 1419 |  | 
| 1351 1420 | 
             
                Put.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
         | 
| 1352 | 
            -
                Put.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1421 | 
            +
                Put.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1353 1422 | 
             
                Put.add_member(:condition_expression, Shapes::ShapeRef.new(shape: ConditionExpression, location_name: "ConditionExpression"))
         | 
| 1354 1423 | 
             
                Put.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
         | 
| 1355 1424 | 
             
                Put.add_member(:expression_attribute_values, Shapes::ShapeRef.new(shape: ExpressionAttributeValueMap, location_name: "ExpressionAttributeValues"))
         | 
| 1356 1425 | 
             
                Put.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
         | 
| 1357 1426 | 
             
                Put.struct_class = Types::Put
         | 
| 1358 1427 |  | 
| 1359 | 
            -
                PutItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1428 | 
            +
                PutItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1360 1429 | 
             
                PutItemInput.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
         | 
| 1361 1430 | 
             
                PutItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
         | 
| 1362 1431 | 
             
                PutItemInput.add_member(:return_values, Shapes::ShapeRef.new(shape: ReturnValue, location_name: "ReturnValues"))
         | 
| @@ -1380,7 +1449,16 @@ module Aws::DynamoDB | |
| 1380 1449 | 
             
                PutRequest.add_member(:item, Shapes::ShapeRef.new(shape: PutItemInputAttributeMap, required: true, location_name: "Item"))
         | 
| 1381 1450 | 
             
                PutRequest.struct_class = Types::PutRequest
         | 
| 1382 1451 |  | 
| 1383 | 
            -
                 | 
| 1452 | 
            +
                PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
         | 
| 1453 | 
            +
                PutResourcePolicyInput.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicy, required: true, location_name: "Policy"))
         | 
| 1454 | 
            +
                PutResourcePolicyInput.add_member(:expected_revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "ExpectedRevisionId"))
         | 
| 1455 | 
            +
                PutResourcePolicyInput.add_member(:confirm_remove_self_resource_access, Shapes::ShapeRef.new(shape: ConfirmRemoveSelfResourceAccess, location_name: "ConfirmRemoveSelfResourceAccess"))
         | 
| 1456 | 
            +
                PutResourcePolicyInput.struct_class = Types::PutResourcePolicyInput
         | 
| 1457 | 
            +
             | 
| 1458 | 
            +
                PutResourcePolicyOutput.add_member(:revision_id, Shapes::ShapeRef.new(shape: PolicyRevisionId, location_name: "RevisionId"))
         | 
| 1459 | 
            +
                PutResourcePolicyOutput.struct_class = Types::PutResourcePolicyOutput
         | 
| 1460 | 
            +
             | 
| 1461 | 
            +
                QueryInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1384 1462 | 
             
                QueryInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| 1385 1463 | 
             
                QueryInput.add_member(:select, Shapes::ShapeRef.new(shape: Select, location_name: "Select"))
         | 
| 1386 1464 | 
             
                QueryInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
         | 
| @@ -1434,6 +1512,8 @@ module Aws::DynamoDB | |
| 1434 1512 | 
             
                ReplicaDescription.add_member(:replica_status_percent_progress, Shapes::ShapeRef.new(shape: ReplicaStatusPercentProgress, location_name: "ReplicaStatusPercentProgress"))
         | 
| 1435 1513 | 
             
                ReplicaDescription.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
         | 
| 1436 1514 | 
             
                ReplicaDescription.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
         | 
| 1515 | 
            +
                ReplicaDescription.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughputOverride, location_name: "OnDemandThroughputOverride"))
         | 
| 1516 | 
            +
                ReplicaDescription.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: TableWarmThroughputDescription, location_name: "WarmThroughput"))
         | 
| 1437 1517 | 
             
                ReplicaDescription.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexDescriptionList, location_name: "GlobalSecondaryIndexes"))
         | 
| 1438 1518 | 
             
                ReplicaDescription.add_member(:replica_inaccessible_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "ReplicaInaccessibleDateTime"))
         | 
| 1439 1519 | 
             
                ReplicaDescription.add_member(:replica_table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "ReplicaTableClassSummary"))
         | 
| @@ -1443,6 +1523,7 @@ module Aws::DynamoDB | |
| 1443 1523 |  | 
| 1444 1524 | 
             
                ReplicaGlobalSecondaryIndex.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, required: true, location_name: "IndexName"))
         | 
| 1445 1525 | 
             
                ReplicaGlobalSecondaryIndex.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
         | 
| 1526 | 
            +
                ReplicaGlobalSecondaryIndex.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughputOverride, location_name: "OnDemandThroughputOverride"))
         | 
| 1446 1527 | 
             
                ReplicaGlobalSecondaryIndex.struct_class = Types::ReplicaGlobalSecondaryIndex
         | 
| 1447 1528 |  | 
| 1448 1529 | 
             
                ReplicaGlobalSecondaryIndexAutoScalingDescription.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| @@ -1461,6 +1542,8 @@ module Aws::DynamoDB | |
| 1461 1542 |  | 
| 1462 1543 | 
             
                ReplicaGlobalSecondaryIndexDescription.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| 1463 1544 | 
             
                ReplicaGlobalSecondaryIndexDescription.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
         | 
| 1545 | 
            +
                ReplicaGlobalSecondaryIndexDescription.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughputOverride, location_name: "OnDemandThroughputOverride"))
         | 
| 1546 | 
            +
                ReplicaGlobalSecondaryIndexDescription.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexWarmThroughputDescription, location_name: "WarmThroughput"))
         | 
| 1464 1547 | 
             
                ReplicaGlobalSecondaryIndexDescription.struct_class = Types::ReplicaGlobalSecondaryIndexDescription
         | 
| 1465 1548 |  | 
| 1466 1549 | 
             
                ReplicaGlobalSecondaryIndexDescriptionList.member = Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexDescription)
         | 
| @@ -1517,6 +1600,9 @@ module Aws::DynamoDB | |
| 1517 1600 |  | 
| 1518 1601 | 
             
                ReplicaUpdateList.member = Shapes::ShapeRef.new(shape: ReplicaUpdate)
         | 
| 1519 1602 |  | 
| 1603 | 
            +
                ReplicatedWriteConflictException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| 1604 | 
            +
                ReplicatedWriteConflictException.struct_class = Types::ReplicatedWriteConflictException
         | 
| 1605 | 
            +
             | 
| 1520 1606 | 
             
                ReplicationGroupUpdate.add_member(:create, Shapes::ShapeRef.new(shape: CreateReplicationGroupMemberAction, location_name: "Create"))
         | 
| 1521 1607 | 
             
                ReplicationGroupUpdate.add_member(:update, Shapes::ShapeRef.new(shape: UpdateReplicationGroupMemberAction, location_name: "Update"))
         | 
| 1522 1608 | 
             
                ReplicationGroupUpdate.add_member(:delete, Shapes::ShapeRef.new(shape: DeleteReplicationGroupMemberAction, location_name: "Delete"))
         | 
| @@ -1545,6 +1631,7 @@ module Aws::DynamoDB | |
| 1545 1631 | 
             
                RestoreTableFromBackupInput.add_member(:global_secondary_index_override, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexOverride"))
         | 
| 1546 1632 | 
             
                RestoreTableFromBackupInput.add_member(:local_secondary_index_override, Shapes::ShapeRef.new(shape: LocalSecondaryIndexList, location_name: "LocalSecondaryIndexOverride"))
         | 
| 1547 1633 | 
             
                RestoreTableFromBackupInput.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughputOverride"))
         | 
| 1634 | 
            +
                RestoreTableFromBackupInput.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughputOverride"))
         | 
| 1548 1635 | 
             
                RestoreTableFromBackupInput.add_member(:sse_specification_override, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecificationOverride"))
         | 
| 1549 1636 | 
             
                RestoreTableFromBackupInput.struct_class = Types::RestoreTableFromBackupInput
         | 
| 1550 1637 |  | 
| @@ -1560,6 +1647,7 @@ module Aws::DynamoDB | |
| 1560 1647 | 
             
                RestoreTableToPointInTimeInput.add_member(:global_secondary_index_override, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexOverride"))
         | 
| 1561 1648 | 
             
                RestoreTableToPointInTimeInput.add_member(:local_secondary_index_override, Shapes::ShapeRef.new(shape: LocalSecondaryIndexList, location_name: "LocalSecondaryIndexOverride"))
         | 
| 1562 1649 | 
             
                RestoreTableToPointInTimeInput.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughputOverride"))
         | 
| 1650 | 
            +
                RestoreTableToPointInTimeInput.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughputOverride"))
         | 
| 1563 1651 | 
             
                RestoreTableToPointInTimeInput.add_member(:sse_specification_override, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecificationOverride"))
         | 
| 1564 1652 | 
             
                RestoreTableToPointInTimeInput.struct_class = Types::RestoreTableToPointInTimeInput
         | 
| 1565 1653 |  | 
| @@ -1582,7 +1670,7 @@ module Aws::DynamoDB | |
| 1582 1670 | 
             
                SSESpecification.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
         | 
| 1583 1671 | 
             
                SSESpecification.struct_class = Types::SSESpecification
         | 
| 1584 1672 |  | 
| 1585 | 
            -
                ScanInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1673 | 
            +
                ScanInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1586 1674 | 
             
                ScanInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| 1587 1675 | 
             
                ScanInput.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributesToGet"))
         | 
| 1588 1676 | 
             
                ScanInput.add_member(:limit, Shapes::ShapeRef.new(shape: PositiveIntegerObject, location_name: "Limit"))
         | 
| @@ -1617,6 +1705,7 @@ module Aws::DynamoDB | |
| 1617 1705 | 
             
                SourceTableDetails.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
         | 
| 1618 1706 | 
             
                SourceTableDetails.add_member(:table_creation_date_time, Shapes::ShapeRef.new(shape: TableCreationDateTime, required: true, location_name: "TableCreationDateTime"))
         | 
| 1619 1707 | 
             
                SourceTableDetails.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, required: true, location_name: "ProvisionedThroughput"))
         | 
| 1708 | 
            +
                SourceTableDetails.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1620 1709 | 
             
                SourceTableDetails.add_member(:item_count, Shapes::ShapeRef.new(shape: ItemCount, location_name: "ItemCount"))
         | 
| 1621 1710 | 
             
                SourceTableDetails.add_member(:billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingMode"))
         | 
| 1622 1711 | 
             
                SourceTableDetails.struct_class = Types::SourceTableDetails
         | 
| @@ -1651,6 +1740,7 @@ module Aws::DynamoDB | |
| 1651 1740 | 
             
                TableCreationParameters.add_member(:key_schema, Shapes::ShapeRef.new(shape: KeySchema, required: true, location_name: "KeySchema"))
         | 
| 1652 1741 | 
             
                TableCreationParameters.add_member(:billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingMode"))
         | 
| 1653 1742 | 
             
                TableCreationParameters.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
         | 
| 1743 | 
            +
                TableCreationParameters.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1654 1744 | 
             
                TableCreationParameters.add_member(:sse_specification, Shapes::ShapeRef.new(shape: SSESpecification, location_name: "SSESpecification"))
         | 
| 1655 1745 | 
             
                TableCreationParameters.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
         | 
| 1656 1746 | 
             
                TableCreationParameters.struct_class = Types::TableCreationParameters
         | 
| @@ -1678,6 +1768,9 @@ module Aws::DynamoDB | |
| 1678 1768 | 
             
                TableDescription.add_member(:archival_summary, Shapes::ShapeRef.new(shape: ArchivalSummary, location_name: "ArchivalSummary"))
         | 
| 1679 1769 | 
             
                TableDescription.add_member(:table_class_summary, Shapes::ShapeRef.new(shape: TableClassSummary, location_name: "TableClassSummary"))
         | 
| 1680 1770 | 
             
                TableDescription.add_member(:deletion_protection_enabled, Shapes::ShapeRef.new(shape: DeletionProtectionEnabled, location_name: "DeletionProtectionEnabled"))
         | 
| 1771 | 
            +
                TableDescription.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1772 | 
            +
                TableDescription.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: TableWarmThroughputDescription, location_name: "WarmThroughput"))
         | 
| 1773 | 
            +
                TableDescription.add_member(:multi_region_consistency, Shapes::ShapeRef.new(shape: MultiRegionConsistency, location_name: "MultiRegionConsistency"))
         | 
| 1681 1774 | 
             
                TableDescription.struct_class = Types::TableDescription
         | 
| 1682 1775 |  | 
| 1683 1776 | 
             
                TableInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| @@ -1688,6 +1781,11 @@ module Aws::DynamoDB | |
| 1688 1781 | 
             
                TableNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
         | 
| 1689 1782 | 
             
                TableNotFoundException.struct_class = Types::TableNotFoundException
         | 
| 1690 1783 |  | 
| 1784 | 
            +
                TableWarmThroughputDescription.add_member(:read_units_per_second, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "ReadUnitsPerSecond"))
         | 
| 1785 | 
            +
                TableWarmThroughputDescription.add_member(:write_units_per_second, Shapes::ShapeRef.new(shape: PositiveLongObject, location_name: "WriteUnitsPerSecond"))
         | 
| 1786 | 
            +
                TableWarmThroughputDescription.add_member(:status, Shapes::ShapeRef.new(shape: TableStatus, location_name: "Status"))
         | 
| 1787 | 
            +
                TableWarmThroughputDescription.struct_class = Types::TableWarmThroughputDescription
         | 
| 1788 | 
            +
             | 
| 1691 1789 | 
             
                Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKeyString, required: true, location_name: "Key"))
         | 
| 1692 1790 | 
             
                Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValueString, required: true, location_name: "Value"))
         | 
| 1693 1791 | 
             
                Tag.struct_class = Types::Tag
         | 
| @@ -1755,21 +1853,21 @@ module Aws::DynamoDB | |
| 1755 1853 |  | 
| 1756 1854 | 
             
                Update.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 1757 1855 | 
             
                Update.add_member(:update_expression, Shapes::ShapeRef.new(shape: UpdateExpression, required: true, location_name: "UpdateExpression"))
         | 
| 1758 | 
            -
                Update.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1856 | 
            +
                Update.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1759 1857 | 
             
                Update.add_member(:condition_expression, Shapes::ShapeRef.new(shape: ConditionExpression, location_name: "ConditionExpression"))
         | 
| 1760 1858 | 
             
                Update.add_member(:expression_attribute_names, Shapes::ShapeRef.new(shape: ExpressionAttributeNameMap, location_name: "ExpressionAttributeNames"))
         | 
| 1761 1859 | 
             
                Update.add_member(:expression_attribute_values, Shapes::ShapeRef.new(shape: ExpressionAttributeValueMap, location_name: "ExpressionAttributeValues"))
         | 
| 1762 1860 | 
             
                Update.add_member(:return_values_on_condition_check_failure, Shapes::ShapeRef.new(shape: ReturnValuesOnConditionCheckFailure, location_name: "ReturnValuesOnConditionCheckFailure"))
         | 
| 1763 1861 | 
             
                Update.struct_class = Types::Update
         | 
| 1764 1862 |  | 
| 1765 | 
            -
                UpdateContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1863 | 
            +
                UpdateContinuousBackupsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1766 1864 | 
             
                UpdateContinuousBackupsInput.add_member(:point_in_time_recovery_specification, Shapes::ShapeRef.new(shape: PointInTimeRecoverySpecification, required: true, location_name: "PointInTimeRecoverySpecification"))
         | 
| 1767 1865 | 
             
                UpdateContinuousBackupsInput.struct_class = Types::UpdateContinuousBackupsInput
         | 
| 1768 1866 |  | 
| 1769 1867 | 
             
                UpdateContinuousBackupsOutput.add_member(:continuous_backups_description, Shapes::ShapeRef.new(shape: ContinuousBackupsDescription, location_name: "ContinuousBackupsDescription"))
         | 
| 1770 1868 | 
             
                UpdateContinuousBackupsOutput.struct_class = Types::UpdateContinuousBackupsOutput
         | 
| 1771 1869 |  | 
| 1772 | 
            -
                UpdateContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1870 | 
            +
                UpdateContributorInsightsInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1773 1871 | 
             
                UpdateContributorInsightsInput.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "IndexName"))
         | 
| 1774 1872 | 
             
                UpdateContributorInsightsInput.add_member(:contributor_insights_action, Shapes::ShapeRef.new(shape: ContributorInsightsAction, required: true, location_name: "ContributorInsightsAction"))
         | 
| 1775 1873 | 
             
                UpdateContributorInsightsInput.struct_class = Types::UpdateContributorInsightsInput
         | 
| @@ -1780,7 +1878,9 @@ module Aws::DynamoDB | |
| 1780 1878 | 
             
                UpdateContributorInsightsOutput.struct_class = Types::UpdateContributorInsightsOutput
         | 
| 1781 1879 |  | 
| 1782 1880 | 
             
                UpdateGlobalSecondaryIndexAction.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, required: true, location_name: "IndexName"))
         | 
| 1783 | 
            -
                UpdateGlobalSecondaryIndexAction.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput,  | 
| 1881 | 
            +
                UpdateGlobalSecondaryIndexAction.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
         | 
| 1882 | 
            +
                UpdateGlobalSecondaryIndexAction.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1883 | 
            +
                UpdateGlobalSecondaryIndexAction.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
         | 
| 1784 1884 | 
             
                UpdateGlobalSecondaryIndexAction.struct_class = Types::UpdateGlobalSecondaryIndexAction
         | 
| 1785 1885 |  | 
| 1786 1886 | 
             
                UpdateGlobalTableInput.add_member(:global_table_name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "GlobalTableName"))
         | 
| @@ -1802,7 +1902,7 @@ module Aws::DynamoDB | |
| 1802 1902 | 
             
                UpdateGlobalTableSettingsOutput.add_member(:replica_settings, Shapes::ShapeRef.new(shape: ReplicaSettingsDescriptionList, location_name: "ReplicaSettings"))
         | 
| 1803 1903 | 
             
                UpdateGlobalTableSettingsOutput.struct_class = Types::UpdateGlobalTableSettingsOutput
         | 
| 1804 1904 |  | 
| 1805 | 
            -
                UpdateItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1905 | 
            +
                UpdateItemInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1806 1906 | 
             
                UpdateItemInput.add_member(:key, Shapes::ShapeRef.new(shape: Key, required: true, location_name: "Key"))
         | 
| 1807 1907 | 
             
                UpdateItemInput.add_member(:attribute_updates, Shapes::ShapeRef.new(shape: AttributeUpdates, location_name: "AttributeUpdates"))
         | 
| 1808 1908 | 
             
                UpdateItemInput.add_member(:expected, Shapes::ShapeRef.new(shape: ExpectedAttributeMap, location_name: "Expected"))
         | 
| @@ -1822,15 +1922,30 @@ module Aws::DynamoDB | |
| 1822 1922 | 
             
                UpdateItemOutput.add_member(:item_collection_metrics, Shapes::ShapeRef.new(shape: ItemCollectionMetrics, location_name: "ItemCollectionMetrics"))
         | 
| 1823 1923 | 
             
                UpdateItemOutput.struct_class = Types::UpdateItemOutput
         | 
| 1824 1924 |  | 
| 1925 | 
            +
                UpdateKinesisStreamingConfiguration.add_member(:approximate_creation_date_time_precision, Shapes::ShapeRef.new(shape: ApproximateCreationDateTimePrecision, location_name: "ApproximateCreationDateTimePrecision"))
         | 
| 1926 | 
            +
                UpdateKinesisStreamingConfiguration.struct_class = Types::UpdateKinesisStreamingConfiguration
         | 
| 1927 | 
            +
             | 
| 1928 | 
            +
                UpdateKinesisStreamingDestinationInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1929 | 
            +
                UpdateKinesisStreamingDestinationInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, required: true, location_name: "StreamArn"))
         | 
| 1930 | 
            +
                UpdateKinesisStreamingDestinationInput.add_member(:update_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: UpdateKinesisStreamingConfiguration, location_name: "UpdateKinesisStreamingConfiguration"))
         | 
| 1931 | 
            +
                UpdateKinesisStreamingDestinationInput.struct_class = Types::UpdateKinesisStreamingDestinationInput
         | 
| 1932 | 
            +
             | 
| 1933 | 
            +
                UpdateKinesisStreamingDestinationOutput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableName, location_name: "TableName"))
         | 
| 1934 | 
            +
                UpdateKinesisStreamingDestinationOutput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamArn, location_name: "StreamArn"))
         | 
| 1935 | 
            +
                UpdateKinesisStreamingDestinationOutput.add_member(:destination_status, Shapes::ShapeRef.new(shape: DestinationStatus, location_name: "DestinationStatus"))
         | 
| 1936 | 
            +
                UpdateKinesisStreamingDestinationOutput.add_member(:update_kinesis_streaming_configuration, Shapes::ShapeRef.new(shape: UpdateKinesisStreamingConfiguration, location_name: "UpdateKinesisStreamingConfiguration"))
         | 
| 1937 | 
            +
                UpdateKinesisStreamingDestinationOutput.struct_class = Types::UpdateKinesisStreamingDestinationOutput
         | 
| 1938 | 
            +
             | 
| 1825 1939 | 
             
                UpdateReplicationGroupMemberAction.add_member(:region_name, Shapes::ShapeRef.new(shape: RegionName, required: true, location_name: "RegionName"))
         | 
| 1826 1940 | 
             
                UpdateReplicationGroupMemberAction.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: KMSMasterKeyId, location_name: "KMSMasterKeyId"))
         | 
| 1827 1941 | 
             
                UpdateReplicationGroupMemberAction.add_member(:provisioned_throughput_override, Shapes::ShapeRef.new(shape: ProvisionedThroughputOverride, location_name: "ProvisionedThroughputOverride"))
         | 
| 1942 | 
            +
                UpdateReplicationGroupMemberAction.add_member(:on_demand_throughput_override, Shapes::ShapeRef.new(shape: OnDemandThroughputOverride, location_name: "OnDemandThroughputOverride"))
         | 
| 1828 1943 | 
             
                UpdateReplicationGroupMemberAction.add_member(:global_secondary_indexes, Shapes::ShapeRef.new(shape: ReplicaGlobalSecondaryIndexList, location_name: "GlobalSecondaryIndexes"))
         | 
| 1829 1944 | 
             
                UpdateReplicationGroupMemberAction.add_member(:table_class_override, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClassOverride"))
         | 
| 1830 1945 | 
             
                UpdateReplicationGroupMemberAction.struct_class = Types::UpdateReplicationGroupMemberAction
         | 
| 1831 1946 |  | 
| 1832 1947 | 
             
                UpdateTableInput.add_member(:attribute_definitions, Shapes::ShapeRef.new(shape: AttributeDefinitions, location_name: "AttributeDefinitions"))
         | 
| 1833 | 
            -
                UpdateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1948 | 
            +
                UpdateTableInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1834 1949 | 
             
                UpdateTableInput.add_member(:billing_mode, Shapes::ShapeRef.new(shape: BillingMode, location_name: "BillingMode"))
         | 
| 1835 1950 | 
             
                UpdateTableInput.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "ProvisionedThroughput"))
         | 
| 1836 1951 | 
             
                UpdateTableInput.add_member(:global_secondary_index_updates, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexUpdateList, location_name: "GlobalSecondaryIndexUpdates"))
         | 
| @@ -1839,13 +1954,16 @@ module Aws::DynamoDB | |
| 1839 1954 | 
             
                UpdateTableInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicationGroupUpdateList, location_name: "ReplicaUpdates"))
         | 
| 1840 1955 | 
             
                UpdateTableInput.add_member(:table_class, Shapes::ShapeRef.new(shape: TableClass, location_name: "TableClass"))
         | 
| 1841 1956 | 
             
                UpdateTableInput.add_member(:deletion_protection_enabled, Shapes::ShapeRef.new(shape: DeletionProtectionEnabled, location_name: "DeletionProtectionEnabled"))
         | 
| 1957 | 
            +
                UpdateTableInput.add_member(:multi_region_consistency, Shapes::ShapeRef.new(shape: MultiRegionConsistency, location_name: "MultiRegionConsistency"))
         | 
| 1958 | 
            +
                UpdateTableInput.add_member(:on_demand_throughput, Shapes::ShapeRef.new(shape: OnDemandThroughput, location_name: "OnDemandThroughput"))
         | 
| 1959 | 
            +
                UpdateTableInput.add_member(:warm_throughput, Shapes::ShapeRef.new(shape: WarmThroughput, location_name: "WarmThroughput"))
         | 
| 1842 1960 | 
             
                UpdateTableInput.struct_class = Types::UpdateTableInput
         | 
| 1843 1961 |  | 
| 1844 1962 | 
             
                UpdateTableOutput.add_member(:table_description, Shapes::ShapeRef.new(shape: TableDescription, location_name: "TableDescription"))
         | 
| 1845 1963 | 
             
                UpdateTableOutput.struct_class = Types::UpdateTableOutput
         | 
| 1846 1964 |  | 
| 1847 1965 | 
             
                UpdateTableReplicaAutoScalingInput.add_member(:global_secondary_index_updates, Shapes::ShapeRef.new(shape: GlobalSecondaryIndexAutoScalingUpdateList, location_name: "GlobalSecondaryIndexUpdates"))
         | 
| 1848 | 
            -
                UpdateTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1966 | 
            +
                UpdateTableReplicaAutoScalingInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1849 1967 | 
             
                UpdateTableReplicaAutoScalingInput.add_member(:provisioned_write_capacity_auto_scaling_update, Shapes::ShapeRef.new(shape: AutoScalingSettingsUpdate, location_name: "ProvisionedWriteCapacityAutoScalingUpdate"))
         | 
| 1850 1968 | 
             
                UpdateTableReplicaAutoScalingInput.add_member(:replica_updates, Shapes::ShapeRef.new(shape: ReplicaAutoScalingUpdateList, location_name: "ReplicaUpdates"))
         | 
| 1851 1969 | 
             
                UpdateTableReplicaAutoScalingInput.struct_class = Types::UpdateTableReplicaAutoScalingInput
         | 
| @@ -1853,13 +1971,17 @@ module Aws::DynamoDB | |
| 1853 1971 | 
             
                UpdateTableReplicaAutoScalingOutput.add_member(:table_auto_scaling_description, Shapes::ShapeRef.new(shape: TableAutoScalingDescription, location_name: "TableAutoScalingDescription"))
         | 
| 1854 1972 | 
             
                UpdateTableReplicaAutoScalingOutput.struct_class = Types::UpdateTableReplicaAutoScalingOutput
         | 
| 1855 1973 |  | 
| 1856 | 
            -
                UpdateTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape:  | 
| 1974 | 
            +
                UpdateTimeToLiveInput.add_member(:table_name, Shapes::ShapeRef.new(shape: TableArn, required: true, location_name: "TableName"))
         | 
| 1857 1975 | 
             
                UpdateTimeToLiveInput.add_member(:time_to_live_specification, Shapes::ShapeRef.new(shape: TimeToLiveSpecification, required: true, location_name: "TimeToLiveSpecification"))
         | 
| 1858 1976 | 
             
                UpdateTimeToLiveInput.struct_class = Types::UpdateTimeToLiveInput
         | 
| 1859 1977 |  | 
| 1860 1978 | 
             
                UpdateTimeToLiveOutput.add_member(:time_to_live_specification, Shapes::ShapeRef.new(shape: TimeToLiveSpecification, location_name: "TimeToLiveSpecification"))
         | 
| 1861 1979 | 
             
                UpdateTimeToLiveOutput.struct_class = Types::UpdateTimeToLiveOutput
         | 
| 1862 1980 |  | 
| 1981 | 
            +
                WarmThroughput.add_member(:read_units_per_second, Shapes::ShapeRef.new(shape: LongObject, location_name: "ReadUnitsPerSecond"))
         | 
| 1982 | 
            +
                WarmThroughput.add_member(:write_units_per_second, Shapes::ShapeRef.new(shape: LongObject, location_name: "WriteUnitsPerSecond"))
         | 
| 1983 | 
            +
                WarmThroughput.struct_class = Types::WarmThroughput
         | 
| 1984 | 
            +
             | 
| 1863 1985 | 
             
                WriteRequest.add_member(:put_request, Shapes::ShapeRef.new(shape: PutRequest, location_name: "PutRequest"))
         | 
| 1864 1986 | 
             
                WriteRequest.add_member(:delete_request, Shapes::ShapeRef.new(shape: DeleteRequest, location_name: "DeleteRequest"))
         | 
| 1865 1987 | 
             
                WriteRequest.struct_class = Types::WriteRequest
         | 
| @@ -1874,9 +1996,11 @@ module Aws::DynamoDB | |
| 1874 1996 |  | 
| 1875 1997 | 
             
                  api.metadata = {
         | 
| 1876 1998 | 
             
                    "apiVersion" => "2012-08-10",
         | 
| 1999 | 
            +
                    "auth" => ["aws.auth#sigv4"],
         | 
| 1877 2000 | 
             
                    "endpointPrefix" => "dynamodb",
         | 
| 1878 2001 | 
             
                    "jsonVersion" => "1.0",
         | 
| 1879 2002 | 
             
                    "protocol" => "json",
         | 
| 2003 | 
            +
                    "protocols" => ["json"],
         | 
| 1880 2004 | 
             
                    "serviceAbbreviation" => "DynamoDB",
         | 
| 1881 2005 | 
             
                    "serviceFullName" => "Amazon DynamoDB",
         | 
| 1882 2006 | 
             
                    "serviceId" => "DynamoDB",
         | 
| @@ -2002,6 +2126,22 @@ module Aws::DynamoDB | |
| 2002 2126 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: TransactionConflictException)
         | 
| 2003 2127 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceeded)
         | 
| 2004 2128 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2129 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ReplicatedWriteConflictException)
         | 
| 2130 | 
            +
                  end)
         | 
| 2131 | 
            +
             | 
| 2132 | 
            +
                  api.add_operation(:delete_resource_policy, Seahorse::Model::Operation.new.tap do |o|
         | 
| 2133 | 
            +
                    o.name = "DeleteResourcePolicy"
         | 
| 2134 | 
            +
                    o.http_method = "POST"
         | 
| 2135 | 
            +
                    o.http_request_uri = "/"
         | 
| 2136 | 
            +
                    o.endpoint_discovery = {
         | 
| 2137 | 
            +
                    }
         | 
| 2138 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: DeleteResourcePolicyInput)
         | 
| 2139 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: DeleteResourcePolicyOutput)
         | 
| 2140 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 2141 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2142 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: PolicyNotFoundException)
         | 
| 2143 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
         | 
| 2144 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
         | 
| 2005 2145 | 
             
                  end)
         | 
| 2006 2146 |  | 
| 2007 2147 | 
             
                  api.add_operation(:delete_table, Seahorse::Model::Operation.new.tap do |o|
         | 
| @@ -2249,6 +2389,19 @@ module Aws::DynamoDB | |
| 2249 2389 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2250 2390 | 
             
                  end)
         | 
| 2251 2391 |  | 
| 2392 | 
            +
                  api.add_operation(:get_resource_policy, Seahorse::Model::Operation.new.tap do |o|
         | 
| 2393 | 
            +
                    o.name = "GetResourcePolicy"
         | 
| 2394 | 
            +
                    o.http_method = "POST"
         | 
| 2395 | 
            +
                    o.http_request_uri = "/"
         | 
| 2396 | 
            +
                    o.endpoint_discovery = {
         | 
| 2397 | 
            +
                    }
         | 
| 2398 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: GetResourcePolicyInput)
         | 
| 2399 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: GetResourcePolicyOutput)
         | 
| 2400 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 2401 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2402 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: PolicyNotFoundException)
         | 
| 2403 | 
            +
                  end)
         | 
| 2404 | 
            +
             | 
| 2252 2405 | 
             
                  api.add_operation(:import_table, Seahorse::Model::Operation.new.tap do |o|
         | 
| 2253 2406 | 
             
                    o.name = "ImportTable"
         | 
| 2254 2407 | 
             
                    o.http_method = "POST"
         | 
| @@ -2373,6 +2526,22 @@ module Aws::DynamoDB | |
| 2373 2526 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: TransactionConflictException)
         | 
| 2374 2527 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceeded)
         | 
| 2375 2528 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2529 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ReplicatedWriteConflictException)
         | 
| 2530 | 
            +
                  end)
         | 
| 2531 | 
            +
             | 
| 2532 | 
            +
                  api.add_operation(:put_resource_policy, Seahorse::Model::Operation.new.tap do |o|
         | 
| 2533 | 
            +
                    o.name = "PutResourcePolicy"
         | 
| 2534 | 
            +
                    o.http_method = "POST"
         | 
| 2535 | 
            +
                    o.http_request_uri = "/"
         | 
| 2536 | 
            +
                    o.endpoint_discovery = {
         | 
| 2537 | 
            +
                    }
         | 
| 2538 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: PutResourcePolicyInput)
         | 
| 2539 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: PutResourcePolicyOutput)
         | 
| 2540 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 2541 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2542 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
         | 
| 2543 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: PolicyNotFoundException)
         | 
| 2544 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
         | 
| 2376 2545 | 
             
                  end)
         | 
| 2377 2546 |  | 
| 2378 2547 | 
             
                  api.add_operation(:query, Seahorse::Model::Operation.new.tap do |o|
         | 
| @@ -2577,6 +2746,21 @@ module Aws::DynamoDB | |
| 2577 2746 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: TransactionConflictException)
         | 
| 2578 2747 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceeded)
         | 
| 2579 2748 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2749 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ReplicatedWriteConflictException)
         | 
| 2750 | 
            +
                  end)
         | 
| 2751 | 
            +
             | 
| 2752 | 
            +
                  api.add_operation(:update_kinesis_streaming_destination, Seahorse::Model::Operation.new.tap do |o|
         | 
| 2753 | 
            +
                    o.name = "UpdateKinesisStreamingDestination"
         | 
| 2754 | 
            +
                    o.http_method = "POST"
         | 
| 2755 | 
            +
                    o.http_request_uri = "/"
         | 
| 2756 | 
            +
                    o.endpoint_discovery = {
         | 
| 2757 | 
            +
                    }
         | 
| 2758 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: UpdateKinesisStreamingDestinationInput)
         | 
| 2759 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: UpdateKinesisStreamingDestinationOutput)
         | 
| 2760 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
         | 
| 2761 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
         | 
| 2762 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
         | 
| 2763 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
         | 
| 2580 2764 | 
             
                  end)
         | 
| 2581 2765 |  | 
| 2582 2766 | 
             
                  api.add_operation(:update_table, Seahorse::Model::Operation.new.tap do |o|
         |