@aws-sdk/client-dynamodb 3.751.0 → 3.767.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.
Files changed (57) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +10 -1
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-cjs/index.js +432 -292
  4. package/dist-es/commands/BatchGetItemCommand.js +4 -1
  5. package/dist-es/commands/BatchWriteItemCommand.js +4 -1
  6. package/dist-es/commands/CreateBackupCommand.js +4 -1
  7. package/dist-es/commands/CreateGlobalTableCommand.js +4 -1
  8. package/dist-es/commands/CreateTableCommand.js +4 -1
  9. package/dist-es/commands/DeleteBackupCommand.js +4 -1
  10. package/dist-es/commands/DeleteItemCommand.js +4 -1
  11. package/dist-es/commands/DeleteResourcePolicyCommand.js +4 -1
  12. package/dist-es/commands/DeleteTableCommand.js +4 -1
  13. package/dist-es/commands/DescribeBackupCommand.js +4 -1
  14. package/dist-es/commands/DescribeContinuousBackupsCommand.js +4 -1
  15. package/dist-es/commands/DescribeContributorInsightsCommand.js +4 -1
  16. package/dist-es/commands/DescribeExportCommand.js +4 -1
  17. package/dist-es/commands/DescribeGlobalTableCommand.js +4 -1
  18. package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +4 -1
  19. package/dist-es/commands/DescribeImportCommand.js +4 -1
  20. package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +4 -1
  21. package/dist-es/commands/DescribeTableCommand.js +4 -1
  22. package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +4 -1
  23. package/dist-es/commands/DescribeTimeToLiveCommand.js +4 -1
  24. package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +4 -1
  25. package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +4 -1
  26. package/dist-es/commands/ExportTableToPointInTimeCommand.js +4 -1
  27. package/dist-es/commands/GetItemCommand.js +4 -1
  28. package/dist-es/commands/GetResourcePolicyCommand.js +4 -1
  29. package/dist-es/commands/ImportTableCommand.js +4 -1
  30. package/dist-es/commands/ListBackupsCommand.js +4 -1
  31. package/dist-es/commands/ListContributorInsightsCommand.js +4 -1
  32. package/dist-es/commands/ListExportsCommand.js +4 -1
  33. package/dist-es/commands/ListImportsCommand.js +4 -1
  34. package/dist-es/commands/ListTagsOfResourceCommand.js +4 -1
  35. package/dist-es/commands/PutItemCommand.js +4 -1
  36. package/dist-es/commands/PutResourcePolicyCommand.js +4 -1
  37. package/dist-es/commands/QueryCommand.js +4 -1
  38. package/dist-es/commands/RestoreTableFromBackupCommand.js +4 -1
  39. package/dist-es/commands/RestoreTableToPointInTimeCommand.js +4 -1
  40. package/dist-es/commands/ScanCommand.js +4 -1
  41. package/dist-es/commands/TagResourceCommand.js +4 -1
  42. package/dist-es/commands/TransactGetItemsCommand.js +7 -1
  43. package/dist-es/commands/UntagResourceCommand.js +4 -1
  44. package/dist-es/commands/UpdateContinuousBackupsCommand.js +4 -1
  45. package/dist-es/commands/UpdateContributorInsightsCommand.js +4 -1
  46. package/dist-es/commands/UpdateGlobalTableCommand.js +4 -1
  47. package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +4 -1
  48. package/dist-es/commands/UpdateItemCommand.js +4 -1
  49. package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +4 -1
  50. package/dist-es/commands/UpdateTableCommand.js +4 -1
  51. package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +4 -1
  52. package/dist-es/commands/UpdateTimeToLiveCommand.js +4 -1
  53. package/dist-es/endpoint/endpointResolver.js +10 -1
  54. package/dist-es/endpoint/ruleset.js +3 -3
  55. package/dist-types/endpoint/EndpointParameters.d.ts +2 -0
  56. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +2 -0
  57. package/package.json +12 -12
package/dist-cjs/index.js CHANGED
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
19
19
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
20
 
21
21
  // src/index.ts
22
- var src_exports = {};
23
- __export(src_exports, {
22
+ var index_exports = {};
23
+ __export(index_exports, {
24
24
  ApproximateCreationDateTimePrecision: () => ApproximateCreationDateTimePrecision,
25
25
  AttributeAction: () => AttributeAction,
26
26
  AttributeValue: () => AttributeValue,
@@ -168,7 +168,7 @@ __export(src_exports, {
168
168
  waitUntilTableExists: () => waitUntilTableExists,
169
169
  waitUntilTableNotExists: () => waitUntilTableNotExists
170
170
  });
171
- module.exports = __toCommonJS(src_exports);
171
+ module.exports = __toCommonJS(index_exports);
172
172
 
173
173
  // src/DynamoDBClient.ts
174
174
  var import_account_id_endpoint = require("@aws-sdk/core/account-id-endpoint");
@@ -1042,26 +1042,16 @@ var IndexNotFoundException = class _IndexNotFoundException extends DynamoDBServi
1042
1042
  var AttributeValue;
1043
1043
  ((AttributeValue2) => {
1044
1044
  AttributeValue2.visit = /* @__PURE__ */ __name((value, visitor) => {
1045
- if (value.S !== void 0)
1046
- return visitor.S(value.S);
1047
- if (value.N !== void 0)
1048
- return visitor.N(value.N);
1049
- if (value.B !== void 0)
1050
- return visitor.B(value.B);
1051
- if (value.SS !== void 0)
1052
- return visitor.SS(value.SS);
1053
- if (value.NS !== void 0)
1054
- return visitor.NS(value.NS);
1055
- if (value.BS !== void 0)
1056
- return visitor.BS(value.BS);
1057
- if (value.M !== void 0)
1058
- return visitor.M(value.M);
1059
- if (value.L !== void 0)
1060
- return visitor.L(value.L);
1061
- if (value.NULL !== void 0)
1062
- return visitor.NULL(value.NULL);
1063
- if (value.BOOL !== void 0)
1064
- return visitor.BOOL(value.BOOL);
1045
+ if (value.S !== void 0) return visitor.S(value.S);
1046
+ if (value.N !== void 0) return visitor.N(value.N);
1047
+ if (value.B !== void 0) return visitor.B(value.B);
1048
+ if (value.SS !== void 0) return visitor.SS(value.SS);
1049
+ if (value.NS !== void 0) return visitor.NS(value.NS);
1050
+ if (value.BS !== void 0) return visitor.BS(value.BS);
1051
+ if (value.M !== void 0) return visitor.M(value.M);
1052
+ if (value.L !== void 0) return visitor.L(value.L);
1053
+ if (value.NULL !== void 0) return visitor.NULL(value.NULL);
1054
+ if (value.BOOL !== void 0) return visitor.BOOL(value.BOOL);
1065
1055
  return visitor._(value.$unknown[0], value.$unknown[1]);
1066
1056
  }, "visit");
1067
1057
  })(AttributeValue || (AttributeValue = {}));
@@ -2629,17 +2619,17 @@ var se_AttributeUpdates = /* @__PURE__ */ __name((input, context) => {
2629
2619
  }, "se_AttributeUpdates");
2630
2620
  var se_AttributeValue = /* @__PURE__ */ __name((input, context) => {
2631
2621
  return AttributeValue.visit(input, {
2632
- B: (value) => ({ B: context.base64Encoder(value) }),
2633
- BOOL: (value) => ({ BOOL: value }),
2634
- BS: (value) => ({ BS: se_BinarySetAttributeValue(value, context) }),
2635
- L: (value) => ({ L: se_ListAttributeValue(value, context) }),
2636
- M: (value) => ({ M: se_MapAttributeValue(value, context) }),
2637
- N: (value) => ({ N: value }),
2638
- NS: (value) => ({ NS: (0, import_smithy_client._json)(value) }),
2639
- NULL: (value) => ({ NULL: value }),
2640
- S: (value) => ({ S: value }),
2641
- SS: (value) => ({ SS: (0, import_smithy_client._json)(value) }),
2642
- _: (name, value) => ({ [name]: value })
2622
+ B: /* @__PURE__ */ __name((value) => ({ B: context.base64Encoder(value) }), "B"),
2623
+ BOOL: /* @__PURE__ */ __name((value) => ({ BOOL: value }), "BOOL"),
2624
+ BS: /* @__PURE__ */ __name((value) => ({ BS: se_BinarySetAttributeValue(value, context) }), "BS"),
2625
+ L: /* @__PURE__ */ __name((value) => ({ L: se_ListAttributeValue(value, context) }), "L"),
2626
+ M: /* @__PURE__ */ __name((value) => ({ M: se_MapAttributeValue(value, context) }), "M"),
2627
+ N: /* @__PURE__ */ __name((value) => ({ N: value }), "N"),
2628
+ NS: /* @__PURE__ */ __name((value) => ({ NS: (0, import_smithy_client._json)(value) }), "NS"),
2629
+ NULL: /* @__PURE__ */ __name((value) => ({ NULL: value }), "NULL"),
2630
+ S: /* @__PURE__ */ __name((value) => ({ S: value }), "S"),
2631
+ SS: /* @__PURE__ */ __name((value) => ({ SS: (0, import_smithy_client._json)(value) }), "SS"),
2632
+ _: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
2643
2633
  });
2644
2634
  }, "se_AttributeValue");
2645
2635
  var se_AttributeValueList = /* @__PURE__ */ __name((input, context) => {
@@ -2650,13 +2640,13 @@ var se_AttributeValueList = /* @__PURE__ */ __name((input, context) => {
2650
2640
  var se_AttributeValueUpdate = /* @__PURE__ */ __name((input, context) => {
2651
2641
  return (0, import_smithy_client.take)(input, {
2652
2642
  Action: [],
2653
- Value: (_) => se_AttributeValue(_, context)
2643
+ Value: /* @__PURE__ */ __name((_) => se_AttributeValue(_, context), "Value")
2654
2644
  });
2655
2645
  }, "se_AttributeValueUpdate");
2656
2646
  var se_AutoScalingPolicyUpdate = /* @__PURE__ */ __name((input, context) => {
2657
2647
  return (0, import_smithy_client.take)(input, {
2658
2648
  PolicyName: [],
2659
- TargetTrackingScalingPolicyConfiguration: (_) => se_AutoScalingTargetTrackingScalingPolicyConfigurationUpdate(_, context)
2649
+ TargetTrackingScalingPolicyConfiguration: /* @__PURE__ */ __name((_) => se_AutoScalingTargetTrackingScalingPolicyConfigurationUpdate(_, context), "TargetTrackingScalingPolicyConfiguration")
2660
2650
  });
2661
2651
  }, "se_AutoScalingPolicyUpdate");
2662
2652
  var se_AutoScalingSettingsUpdate = /* @__PURE__ */ __name((input, context) => {
@@ -2665,7 +2655,7 @@ var se_AutoScalingSettingsUpdate = /* @__PURE__ */ __name((input, context) => {
2665
2655
  AutoScalingRoleArn: [],
2666
2656
  MaximumUnits: [],
2667
2657
  MinimumUnits: [],
2668
- ScalingPolicyUpdate: (_) => se_AutoScalingPolicyUpdate(_, context)
2658
+ ScalingPolicyUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingPolicyUpdate(_, context), "ScalingPolicyUpdate")
2669
2659
  });
2670
2660
  }, "se_AutoScalingSettingsUpdate");
2671
2661
  var se_AutoScalingTargetTrackingScalingPolicyConfigurationUpdate = /* @__PURE__ */ __name((input, context) => {
@@ -2679,12 +2669,12 @@ var se_AutoScalingTargetTrackingScalingPolicyConfigurationUpdate = /* @__PURE__
2679
2669
  var se_BatchExecuteStatementInput = /* @__PURE__ */ __name((input, context) => {
2680
2670
  return (0, import_smithy_client.take)(input, {
2681
2671
  ReturnConsumedCapacity: [],
2682
- Statements: (_) => se_PartiQLBatchRequest(_, context)
2672
+ Statements: /* @__PURE__ */ __name((_) => se_PartiQLBatchRequest(_, context), "Statements")
2683
2673
  });
2684
2674
  }, "se_BatchExecuteStatementInput");
2685
2675
  var se_BatchGetItemInput = /* @__PURE__ */ __name((input, context) => {
2686
2676
  return (0, import_smithy_client.take)(input, {
2687
- RequestItems: (_) => se_BatchGetRequestMap(_, context),
2677
+ RequestItems: /* @__PURE__ */ __name((_) => se_BatchGetRequestMap(_, context), "RequestItems"),
2688
2678
  ReturnConsumedCapacity: []
2689
2679
  });
2690
2680
  }, "se_BatchGetItemInput");
@@ -2700,14 +2690,14 @@ var se_BatchGetRequestMap = /* @__PURE__ */ __name((input, context) => {
2700
2690
  var se_BatchStatementRequest = /* @__PURE__ */ __name((input, context) => {
2701
2691
  return (0, import_smithy_client.take)(input, {
2702
2692
  ConsistentRead: [],
2703
- Parameters: (_) => se_PreparedStatementParameters(_, context),
2693
+ Parameters: /* @__PURE__ */ __name((_) => se_PreparedStatementParameters(_, context), "Parameters"),
2704
2694
  ReturnValuesOnConditionCheckFailure: [],
2705
2695
  Statement: []
2706
2696
  });
2707
2697
  }, "se_BatchStatementRequest");
2708
2698
  var se_BatchWriteItemInput = /* @__PURE__ */ __name((input, context) => {
2709
2699
  return (0, import_smithy_client.take)(input, {
2710
- RequestItems: (_) => se_BatchWriteItemRequestMap(_, context),
2700
+ RequestItems: /* @__PURE__ */ __name((_) => se_BatchWriteItemRequestMap(_, context), "RequestItems"),
2711
2701
  ReturnConsumedCapacity: [],
2712
2702
  ReturnItemCollectionMetrics: []
2713
2703
  });
@@ -2728,7 +2718,7 @@ var se_BinarySetAttributeValue = /* @__PURE__ */ __name((input, context) => {
2728
2718
  }, "se_BinarySetAttributeValue");
2729
2719
  var se_Condition = /* @__PURE__ */ __name((input, context) => {
2730
2720
  return (0, import_smithy_client.take)(input, {
2731
- AttributeValueList: (_) => se_AttributeValueList(_, context),
2721
+ AttributeValueList: /* @__PURE__ */ __name((_) => se_AttributeValueList(_, context), "AttributeValueList"),
2732
2722
  ComparisonOperator: []
2733
2723
  });
2734
2724
  }, "se_Condition");
@@ -2736,8 +2726,8 @@ var se_ConditionCheck = /* @__PURE__ */ __name((input, context) => {
2736
2726
  return (0, import_smithy_client.take)(input, {
2737
2727
  ConditionExpression: [],
2738
2728
  ExpressionAttributeNames: import_smithy_client._json,
2739
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
2740
- Key: (_) => se_Key(_, context),
2729
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
2730
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
2741
2731
  ReturnValuesOnConditionCheckFailure: [],
2742
2732
  TableName: []
2743
2733
  });
@@ -2746,8 +2736,8 @@ var se_Delete = /* @__PURE__ */ __name((input, context) => {
2746
2736
  return (0, import_smithy_client.take)(input, {
2747
2737
  ConditionExpression: [],
2748
2738
  ExpressionAttributeNames: import_smithy_client._json,
2749
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
2750
- Key: (_) => se_Key(_, context),
2739
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
2740
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
2751
2741
  ReturnValuesOnConditionCheckFailure: [],
2752
2742
  TableName: []
2753
2743
  });
@@ -2756,10 +2746,10 @@ var se_DeleteItemInput = /* @__PURE__ */ __name((input, context) => {
2756
2746
  return (0, import_smithy_client.take)(input, {
2757
2747
  ConditionExpression: [],
2758
2748
  ConditionalOperator: [],
2759
- Expected: (_) => se_ExpectedAttributeMap(_, context),
2749
+ Expected: /* @__PURE__ */ __name((_) => se_ExpectedAttributeMap(_, context), "Expected"),
2760
2750
  ExpressionAttributeNames: import_smithy_client._json,
2761
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
2762
- Key: (_) => se_Key(_, context),
2751
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
2752
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
2763
2753
  ReturnConsumedCapacity: [],
2764
2754
  ReturnItemCollectionMetrics: [],
2765
2755
  ReturnValues: [],
@@ -2769,7 +2759,7 @@ var se_DeleteItemInput = /* @__PURE__ */ __name((input, context) => {
2769
2759
  }, "se_DeleteItemInput");
2770
2760
  var se_DeleteRequest = /* @__PURE__ */ __name((input, context) => {
2771
2761
  return (0, import_smithy_client.take)(input, {
2772
- Key: (_) => se_Key(_, context)
2762
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key")
2773
2763
  });
2774
2764
  }, "se_DeleteRequest");
2775
2765
  var se_ExecuteStatementInput = /* @__PURE__ */ __name((input, context) => {
@@ -2777,7 +2767,7 @@ var se_ExecuteStatementInput = /* @__PURE__ */ __name((input, context) => {
2777
2767
  ConsistentRead: [],
2778
2768
  Limit: [],
2779
2769
  NextToken: [],
2780
- Parameters: (_) => se_PreparedStatementParameters(_, context),
2770
+ Parameters: /* @__PURE__ */ __name((_) => se_PreparedStatementParameters(_, context), "Parameters"),
2781
2771
  ReturnConsumedCapacity: [],
2782
2772
  ReturnValuesOnConditionCheckFailure: [],
2783
2773
  Statement: []
@@ -2787,7 +2777,7 @@ var se_ExecuteTransactionInput = /* @__PURE__ */ __name((input, context) => {
2787
2777
  return (0, import_smithy_client.take)(input, {
2788
2778
  ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
2789
2779
  ReturnConsumedCapacity: [],
2790
- TransactStatements: (_) => se_ParameterizedStatements(_, context)
2780
+ TransactStatements: /* @__PURE__ */ __name((_) => se_ParameterizedStatements(_, context), "TransactStatements")
2791
2781
  });
2792
2782
  }, "se_ExecuteTransactionInput");
2793
2783
  var se_ExpectedAttributeMap = /* @__PURE__ */ __name((input, context) => {
@@ -2801,19 +2791,19 @@ var se_ExpectedAttributeMap = /* @__PURE__ */ __name((input, context) => {
2801
2791
  }, "se_ExpectedAttributeMap");
2802
2792
  var se_ExpectedAttributeValue = /* @__PURE__ */ __name((input, context) => {
2803
2793
  return (0, import_smithy_client.take)(input, {
2804
- AttributeValueList: (_) => se_AttributeValueList(_, context),
2794
+ AttributeValueList: /* @__PURE__ */ __name((_) => se_AttributeValueList(_, context), "AttributeValueList"),
2805
2795
  ComparisonOperator: [],
2806
2796
  Exists: [],
2807
- Value: (_) => se_AttributeValue(_, context)
2797
+ Value: /* @__PURE__ */ __name((_) => se_AttributeValue(_, context), "Value")
2808
2798
  });
2809
2799
  }, "se_ExpectedAttributeValue");
2810
2800
  var se_ExportTableToPointInTimeInput = /* @__PURE__ */ __name((input, context) => {
2811
2801
  return (0, import_smithy_client.take)(input, {
2812
2802
  ClientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
2813
2803
  ExportFormat: [],
2814
- ExportTime: (_) => _.getTime() / 1e3,
2804
+ ExportTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ExportTime"),
2815
2805
  ExportType: [],
2816
- IncrementalExportSpecification: (_) => se_IncrementalExportSpecification(_, context),
2806
+ IncrementalExportSpecification: /* @__PURE__ */ __name((_) => se_IncrementalExportSpecification(_, context), "IncrementalExportSpecification"),
2817
2807
  S3Bucket: [],
2818
2808
  S3BucketOwner: [],
2819
2809
  S3Prefix: [],
@@ -2843,7 +2833,7 @@ var se_FilterConditionMap = /* @__PURE__ */ __name((input, context) => {
2843
2833
  var se_Get = /* @__PURE__ */ __name((input, context) => {
2844
2834
  return (0, import_smithy_client.take)(input, {
2845
2835
  ExpressionAttributeNames: import_smithy_client._json,
2846
- Key: (_) => se_Key(_, context),
2836
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
2847
2837
  ProjectionExpression: [],
2848
2838
  TableName: []
2849
2839
  });
@@ -2853,7 +2843,7 @@ var se_GetItemInput = /* @__PURE__ */ __name((input, context) => {
2853
2843
  AttributesToGet: import_smithy_client._json,
2854
2844
  ConsistentRead: [],
2855
2845
  ExpressionAttributeNames: import_smithy_client._json,
2856
- Key: (_) => se_Key(_, context),
2846
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
2857
2847
  ProjectionExpression: [],
2858
2848
  ReturnConsumedCapacity: [],
2859
2849
  TableName: []
@@ -2862,7 +2852,7 @@ var se_GetItemInput = /* @__PURE__ */ __name((input, context) => {
2862
2852
  var se_GlobalSecondaryIndexAutoScalingUpdate = /* @__PURE__ */ __name((input, context) => {
2863
2853
  return (0, import_smithy_client.take)(input, {
2864
2854
  IndexName: [],
2865
- ProvisionedWriteCapacityAutoScalingUpdate: (_) => se_AutoScalingSettingsUpdate(_, context)
2855
+ ProvisionedWriteCapacityAutoScalingUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ProvisionedWriteCapacityAutoScalingUpdate")
2866
2856
  });
2867
2857
  }, "se_GlobalSecondaryIndexAutoScalingUpdate");
2868
2858
  var se_GlobalSecondaryIndexAutoScalingUpdateList = /* @__PURE__ */ __name((input, context) => {
@@ -2873,7 +2863,7 @@ var se_GlobalSecondaryIndexAutoScalingUpdateList = /* @__PURE__ */ __name((input
2873
2863
  var se_GlobalTableGlobalSecondaryIndexSettingsUpdate = /* @__PURE__ */ __name((input, context) => {
2874
2864
  return (0, import_smithy_client.take)(input, {
2875
2865
  IndexName: [],
2876
- ProvisionedWriteCapacityAutoScalingSettingsUpdate: (_) => se_AutoScalingSettingsUpdate(_, context),
2866
+ ProvisionedWriteCapacityAutoScalingSettingsUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ProvisionedWriteCapacityAutoScalingSettingsUpdate"),
2877
2867
  ProvisionedWriteCapacityUnits: []
2878
2868
  });
2879
2869
  }, "se_GlobalTableGlobalSecondaryIndexSettingsUpdate");
@@ -2894,8 +2884,8 @@ var se_ImportTableInput = /* @__PURE__ */ __name((input, context) => {
2894
2884
  }, "se_ImportTableInput");
2895
2885
  var se_IncrementalExportSpecification = /* @__PURE__ */ __name((input, context) => {
2896
2886
  return (0, import_smithy_client.take)(input, {
2897
- ExportFromTime: (_) => _.getTime() / 1e3,
2898
- ExportToTime: (_) => _.getTime() / 1e3,
2887
+ ExportFromTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ExportFromTime"),
2888
+ ExportToTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ExportToTime"),
2899
2889
  ExportViewType: []
2900
2890
  });
2901
2891
  }, "se_IncrementalExportSpecification");
@@ -2927,7 +2917,7 @@ var se_KeysAndAttributes = /* @__PURE__ */ __name((input, context) => {
2927
2917
  AttributesToGet: import_smithy_client._json,
2928
2918
  ConsistentRead: [],
2929
2919
  ExpressionAttributeNames: import_smithy_client._json,
2930
- Keys: (_) => se_KeyList(_, context),
2920
+ Keys: /* @__PURE__ */ __name((_) => se_KeyList(_, context), "Keys"),
2931
2921
  ProjectionExpression: []
2932
2922
  });
2933
2923
  }, "se_KeysAndAttributes");
@@ -2942,8 +2932,8 @@ var se_ListBackupsInput = /* @__PURE__ */ __name((input, context) => {
2942
2932
  ExclusiveStartBackupArn: [],
2943
2933
  Limit: [],
2944
2934
  TableName: [],
2945
- TimeRangeLowerBound: (_) => _.getTime() / 1e3,
2946
- TimeRangeUpperBound: (_) => _.getTime() / 1e3
2935
+ TimeRangeLowerBound: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "TimeRangeLowerBound"),
2936
+ TimeRangeUpperBound: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "TimeRangeUpperBound")
2947
2937
  });
2948
2938
  }, "se_ListBackupsInput");
2949
2939
  var se_MapAttributeValue = /* @__PURE__ */ __name((input, context) => {
@@ -2957,7 +2947,7 @@ var se_MapAttributeValue = /* @__PURE__ */ __name((input, context) => {
2957
2947
  }, "se_MapAttributeValue");
2958
2948
  var se_ParameterizedStatement = /* @__PURE__ */ __name((input, context) => {
2959
2949
  return (0, import_smithy_client.take)(input, {
2960
- Parameters: (_) => se_PreparedStatementParameters(_, context),
2950
+ Parameters: /* @__PURE__ */ __name((_) => se_PreparedStatementParameters(_, context), "Parameters"),
2961
2951
  ReturnValuesOnConditionCheckFailure: [],
2962
2952
  Statement: []
2963
2953
  });
@@ -2981,8 +2971,8 @@ var se_Put = /* @__PURE__ */ __name((input, context) => {
2981
2971
  return (0, import_smithy_client.take)(input, {
2982
2972
  ConditionExpression: [],
2983
2973
  ExpressionAttributeNames: import_smithy_client._json,
2984
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
2985
- Item: (_) => se_PutItemInputAttributeMap(_, context),
2974
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
2975
+ Item: /* @__PURE__ */ __name((_) => se_PutItemInputAttributeMap(_, context), "Item"),
2986
2976
  ReturnValuesOnConditionCheckFailure: [],
2987
2977
  TableName: []
2988
2978
  });
@@ -2991,10 +2981,10 @@ var se_PutItemInput = /* @__PURE__ */ __name((input, context) => {
2991
2981
  return (0, import_smithy_client.take)(input, {
2992
2982
  ConditionExpression: [],
2993
2983
  ConditionalOperator: [],
2994
- Expected: (_) => se_ExpectedAttributeMap(_, context),
2984
+ Expected: /* @__PURE__ */ __name((_) => se_ExpectedAttributeMap(_, context), "Expected"),
2995
2985
  ExpressionAttributeNames: import_smithy_client._json,
2996
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
2997
- Item: (_) => se_PutItemInputAttributeMap(_, context),
2986
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
2987
+ Item: /* @__PURE__ */ __name((_) => se_PutItemInputAttributeMap(_, context), "Item"),
2998
2988
  ReturnConsumedCapacity: [],
2999
2989
  ReturnItemCollectionMetrics: [],
3000
2990
  ReturnValues: [],
@@ -3013,7 +3003,7 @@ var se_PutItemInputAttributeMap = /* @__PURE__ */ __name((input, context) => {
3013
3003
  }, "se_PutItemInputAttributeMap");
3014
3004
  var se_PutRequest = /* @__PURE__ */ __name((input, context) => {
3015
3005
  return (0, import_smithy_client.take)(input, {
3016
- Item: (_) => se_PutItemInputAttributeMap(_, context)
3006
+ Item: /* @__PURE__ */ __name((_) => se_PutItemInputAttributeMap(_, context), "Item")
3017
3007
  });
3018
3008
  }, "se_PutRequest");
3019
3009
  var se_QueryInput = /* @__PURE__ */ __name((input, context) => {
@@ -3021,16 +3011,16 @@ var se_QueryInput = /* @__PURE__ */ __name((input, context) => {
3021
3011
  AttributesToGet: import_smithy_client._json,
3022
3012
  ConditionalOperator: [],
3023
3013
  ConsistentRead: [],
3024
- ExclusiveStartKey: (_) => se_Key(_, context),
3014
+ ExclusiveStartKey: /* @__PURE__ */ __name((_) => se_Key(_, context), "ExclusiveStartKey"),
3025
3015
  ExpressionAttributeNames: import_smithy_client._json,
3026
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
3016
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
3027
3017
  FilterExpression: [],
3028
3018
  IndexName: [],
3029
3019
  KeyConditionExpression: [],
3030
- KeyConditions: (_) => se_KeyConditions(_, context),
3020
+ KeyConditions: /* @__PURE__ */ __name((_) => se_KeyConditions(_, context), "KeyConditions"),
3031
3021
  Limit: [],
3032
3022
  ProjectionExpression: [],
3033
- QueryFilter: (_) => se_FilterConditionMap(_, context),
3023
+ QueryFilter: /* @__PURE__ */ __name((_) => se_FilterConditionMap(_, context), "QueryFilter"),
3034
3024
  ReturnConsumedCapacity: [],
3035
3025
  ScanIndexForward: [],
3036
3026
  Select: [],
@@ -3040,8 +3030,8 @@ var se_QueryInput = /* @__PURE__ */ __name((input, context) => {
3040
3030
  var se_ReplicaAutoScalingUpdate = /* @__PURE__ */ __name((input, context) => {
3041
3031
  return (0, import_smithy_client.take)(input, {
3042
3032
  RegionName: [],
3043
- ReplicaGlobalSecondaryIndexUpdates: (_) => se_ReplicaGlobalSecondaryIndexAutoScalingUpdateList(_, context),
3044
- ReplicaProvisionedReadCapacityAutoScalingUpdate: (_) => se_AutoScalingSettingsUpdate(_, context)
3033
+ ReplicaGlobalSecondaryIndexUpdates: /* @__PURE__ */ __name((_) => se_ReplicaGlobalSecondaryIndexAutoScalingUpdateList(_, context), "ReplicaGlobalSecondaryIndexUpdates"),
3034
+ ReplicaProvisionedReadCapacityAutoScalingUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ReplicaProvisionedReadCapacityAutoScalingUpdate")
3045
3035
  });
3046
3036
  }, "se_ReplicaAutoScalingUpdate");
3047
3037
  var se_ReplicaAutoScalingUpdateList = /* @__PURE__ */ __name((input, context) => {
@@ -3052,7 +3042,7 @@ var se_ReplicaAutoScalingUpdateList = /* @__PURE__ */ __name((input, context) =>
3052
3042
  var se_ReplicaGlobalSecondaryIndexAutoScalingUpdate = /* @__PURE__ */ __name((input, context) => {
3053
3043
  return (0, import_smithy_client.take)(input, {
3054
3044
  IndexName: [],
3055
- ProvisionedReadCapacityAutoScalingUpdate: (_) => se_AutoScalingSettingsUpdate(_, context)
3045
+ ProvisionedReadCapacityAutoScalingUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ProvisionedReadCapacityAutoScalingUpdate")
3056
3046
  });
3057
3047
  }, "se_ReplicaGlobalSecondaryIndexAutoScalingUpdate");
3058
3048
  var se_ReplicaGlobalSecondaryIndexAutoScalingUpdateList = /* @__PURE__ */ __name((input, context) => {
@@ -3063,7 +3053,7 @@ var se_ReplicaGlobalSecondaryIndexAutoScalingUpdateList = /* @__PURE__ */ __name
3063
3053
  var se_ReplicaGlobalSecondaryIndexSettingsUpdate = /* @__PURE__ */ __name((input, context) => {
3064
3054
  return (0, import_smithy_client.take)(input, {
3065
3055
  IndexName: [],
3066
- ProvisionedReadCapacityAutoScalingSettingsUpdate: (_) => se_AutoScalingSettingsUpdate(_, context),
3056
+ ProvisionedReadCapacityAutoScalingSettingsUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ProvisionedReadCapacityAutoScalingSettingsUpdate"),
3067
3057
  ProvisionedReadCapacityUnits: []
3068
3058
  });
3069
3059
  }, "se_ReplicaGlobalSecondaryIndexSettingsUpdate");
@@ -3075,8 +3065,8 @@ var se_ReplicaGlobalSecondaryIndexSettingsUpdateList = /* @__PURE__ */ __name((i
3075
3065
  var se_ReplicaSettingsUpdate = /* @__PURE__ */ __name((input, context) => {
3076
3066
  return (0, import_smithy_client.take)(input, {
3077
3067
  RegionName: [],
3078
- ReplicaGlobalSecondaryIndexSettingsUpdate: (_) => se_ReplicaGlobalSecondaryIndexSettingsUpdateList(_, context),
3079
- ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate: (_) => se_AutoScalingSettingsUpdate(_, context),
3068
+ ReplicaGlobalSecondaryIndexSettingsUpdate: /* @__PURE__ */ __name((_) => se_ReplicaGlobalSecondaryIndexSettingsUpdateList(_, context), "ReplicaGlobalSecondaryIndexSettingsUpdate"),
3069
+ ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate"),
3080
3070
  ReplicaProvisionedReadCapacityUnits: [],
3081
3071
  ReplicaTableClass: []
3082
3072
  });
@@ -3093,7 +3083,7 @@ var se_RestoreTableToPointInTimeInput = /* @__PURE__ */ __name((input, context)
3093
3083
  LocalSecondaryIndexOverride: import_smithy_client._json,
3094
3084
  OnDemandThroughputOverride: import_smithy_client._json,
3095
3085
  ProvisionedThroughputOverride: import_smithy_client._json,
3096
- RestoreDateTime: (_) => _.getTime() / 1e3,
3086
+ RestoreDateTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "RestoreDateTime"),
3097
3087
  SSESpecificationOverride: import_smithy_client._json,
3098
3088
  SourceTableArn: [],
3099
3089
  SourceTableName: [],
@@ -3106,15 +3096,15 @@ var se_ScanInput = /* @__PURE__ */ __name((input, context) => {
3106
3096
  AttributesToGet: import_smithy_client._json,
3107
3097
  ConditionalOperator: [],
3108
3098
  ConsistentRead: [],
3109
- ExclusiveStartKey: (_) => se_Key(_, context),
3099
+ ExclusiveStartKey: /* @__PURE__ */ __name((_) => se_Key(_, context), "ExclusiveStartKey"),
3110
3100
  ExpressionAttributeNames: import_smithy_client._json,
3111
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
3101
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
3112
3102
  FilterExpression: [],
3113
3103
  IndexName: [],
3114
3104
  Limit: [],
3115
3105
  ProjectionExpression: [],
3116
3106
  ReturnConsumedCapacity: [],
3117
- ScanFilter: (_) => se_FilterConditionMap(_, context),
3107
+ ScanFilter: /* @__PURE__ */ __name((_) => se_FilterConditionMap(_, context), "ScanFilter"),
3118
3108
  Segment: [],
3119
3109
  Select: [],
3120
3110
  TableName: [],
@@ -3123,7 +3113,7 @@ var se_ScanInput = /* @__PURE__ */ __name((input, context) => {
3123
3113
  }, "se_ScanInput");
3124
3114
  var se_TransactGetItem = /* @__PURE__ */ __name((input, context) => {
3125
3115
  return (0, import_smithy_client.take)(input, {
3126
- Get: (_) => se_Get(_, context)
3116
+ Get: /* @__PURE__ */ __name((_) => se_Get(_, context), "Get")
3127
3117
  });
3128
3118
  }, "se_TransactGetItem");
3129
3119
  var se_TransactGetItemList = /* @__PURE__ */ __name((input, context) => {
@@ -3134,15 +3124,15 @@ var se_TransactGetItemList = /* @__PURE__ */ __name((input, context) => {
3134
3124
  var se_TransactGetItemsInput = /* @__PURE__ */ __name((input, context) => {
3135
3125
  return (0, import_smithy_client.take)(input, {
3136
3126
  ReturnConsumedCapacity: [],
3137
- TransactItems: (_) => se_TransactGetItemList(_, context)
3127
+ TransactItems: /* @__PURE__ */ __name((_) => se_TransactGetItemList(_, context), "TransactItems")
3138
3128
  });
3139
3129
  }, "se_TransactGetItemsInput");
3140
3130
  var se_TransactWriteItem = /* @__PURE__ */ __name((input, context) => {
3141
3131
  return (0, import_smithy_client.take)(input, {
3142
- ConditionCheck: (_) => se_ConditionCheck(_, context),
3143
- Delete: (_) => se_Delete(_, context),
3144
- Put: (_) => se_Put(_, context),
3145
- Update: (_) => se_Update(_, context)
3132
+ ConditionCheck: /* @__PURE__ */ __name((_) => se_ConditionCheck(_, context), "ConditionCheck"),
3133
+ Delete: /* @__PURE__ */ __name((_) => se_Delete(_, context), "Delete"),
3134
+ Put: /* @__PURE__ */ __name((_) => se_Put(_, context), "Put"),
3135
+ Update: /* @__PURE__ */ __name((_) => se_Update(_, context), "Update")
3146
3136
  });
3147
3137
  }, "se_TransactWriteItem");
3148
3138
  var se_TransactWriteItemList = /* @__PURE__ */ __name((input, context) => {
@@ -3155,15 +3145,15 @@ var se_TransactWriteItemsInput = /* @__PURE__ */ __name((input, context) => {
3155
3145
  ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
3156
3146
  ReturnConsumedCapacity: [],
3157
3147
  ReturnItemCollectionMetrics: [],
3158
- TransactItems: (_) => se_TransactWriteItemList(_, context)
3148
+ TransactItems: /* @__PURE__ */ __name((_) => se_TransactWriteItemList(_, context), "TransactItems")
3159
3149
  });
3160
3150
  }, "se_TransactWriteItemsInput");
3161
3151
  var se_Update = /* @__PURE__ */ __name((input, context) => {
3162
3152
  return (0, import_smithy_client.take)(input, {
3163
3153
  ConditionExpression: [],
3164
3154
  ExpressionAttributeNames: import_smithy_client._json,
3165
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
3166
- Key: (_) => se_Key(_, context),
3155
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
3156
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
3167
3157
  ReturnValuesOnConditionCheckFailure: [],
3168
3158
  TableName: [],
3169
3159
  UpdateExpression: []
@@ -3172,22 +3162,22 @@ var se_Update = /* @__PURE__ */ __name((input, context) => {
3172
3162
  var se_UpdateGlobalTableSettingsInput = /* @__PURE__ */ __name((input, context) => {
3173
3163
  return (0, import_smithy_client.take)(input, {
3174
3164
  GlobalTableBillingMode: [],
3175
- GlobalTableGlobalSecondaryIndexSettingsUpdate: (_) => se_GlobalTableGlobalSecondaryIndexSettingsUpdateList(_, context),
3165
+ GlobalTableGlobalSecondaryIndexSettingsUpdate: /* @__PURE__ */ __name((_) => se_GlobalTableGlobalSecondaryIndexSettingsUpdateList(_, context), "GlobalTableGlobalSecondaryIndexSettingsUpdate"),
3176
3166
  GlobalTableName: [],
3177
- GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate: (_) => se_AutoScalingSettingsUpdate(_, context),
3167
+ GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate"),
3178
3168
  GlobalTableProvisionedWriteCapacityUnits: [],
3179
- ReplicaSettingsUpdate: (_) => se_ReplicaSettingsUpdateList(_, context)
3169
+ ReplicaSettingsUpdate: /* @__PURE__ */ __name((_) => se_ReplicaSettingsUpdateList(_, context), "ReplicaSettingsUpdate")
3180
3170
  });
3181
3171
  }, "se_UpdateGlobalTableSettingsInput");
3182
3172
  var se_UpdateItemInput = /* @__PURE__ */ __name((input, context) => {
3183
3173
  return (0, import_smithy_client.take)(input, {
3184
- AttributeUpdates: (_) => se_AttributeUpdates(_, context),
3174
+ AttributeUpdates: /* @__PURE__ */ __name((_) => se_AttributeUpdates(_, context), "AttributeUpdates"),
3185
3175
  ConditionExpression: [],
3186
3176
  ConditionalOperator: [],
3187
- Expected: (_) => se_ExpectedAttributeMap(_, context),
3177
+ Expected: /* @__PURE__ */ __name((_) => se_ExpectedAttributeMap(_, context), "Expected"),
3188
3178
  ExpressionAttributeNames: import_smithy_client._json,
3189
- ExpressionAttributeValues: (_) => se_ExpressionAttributeValueMap(_, context),
3190
- Key: (_) => se_Key(_, context),
3179
+ ExpressionAttributeValues: /* @__PURE__ */ __name((_) => se_ExpressionAttributeValueMap(_, context), "ExpressionAttributeValues"),
3180
+ Key: /* @__PURE__ */ __name((_) => se_Key(_, context), "Key"),
3191
3181
  ReturnConsumedCapacity: [],
3192
3182
  ReturnItemCollectionMetrics: [],
3193
3183
  ReturnValues: [],
@@ -3198,16 +3188,16 @@ var se_UpdateItemInput = /* @__PURE__ */ __name((input, context) => {
3198
3188
  }, "se_UpdateItemInput");
3199
3189
  var se_UpdateTableReplicaAutoScalingInput = /* @__PURE__ */ __name((input, context) => {
3200
3190
  return (0, import_smithy_client.take)(input, {
3201
- GlobalSecondaryIndexUpdates: (_) => se_GlobalSecondaryIndexAutoScalingUpdateList(_, context),
3202
- ProvisionedWriteCapacityAutoScalingUpdate: (_) => se_AutoScalingSettingsUpdate(_, context),
3203
- ReplicaUpdates: (_) => se_ReplicaAutoScalingUpdateList(_, context),
3191
+ GlobalSecondaryIndexUpdates: /* @__PURE__ */ __name((_) => se_GlobalSecondaryIndexAutoScalingUpdateList(_, context), "GlobalSecondaryIndexUpdates"),
3192
+ ProvisionedWriteCapacityAutoScalingUpdate: /* @__PURE__ */ __name((_) => se_AutoScalingSettingsUpdate(_, context), "ProvisionedWriteCapacityAutoScalingUpdate"),
3193
+ ReplicaUpdates: /* @__PURE__ */ __name((_) => se_ReplicaAutoScalingUpdateList(_, context), "ReplicaUpdates"),
3204
3194
  TableName: []
3205
3195
  });
3206
3196
  }, "se_UpdateTableReplicaAutoScalingInput");
3207
3197
  var se_WriteRequest = /* @__PURE__ */ __name((input, context) => {
3208
3198
  return (0, import_smithy_client.take)(input, {
3209
- DeleteRequest: (_) => se_DeleteRequest(_, context),
3210
- PutRequest: (_) => se_PutRequest(_, context)
3199
+ DeleteRequest: /* @__PURE__ */ __name((_) => se_DeleteRequest(_, context), "DeleteRequest"),
3200
+ PutRequest: /* @__PURE__ */ __name((_) => se_PutRequest(_, context), "PutRequest")
3211
3201
  });
3212
3202
  }, "se_WriteRequest");
3213
3203
  var se_WriteRequests = /* @__PURE__ */ __name((input, context) => {
@@ -3218,7 +3208,7 @@ var se_WriteRequests = /* @__PURE__ */ __name((input, context) => {
3218
3208
  var de_ArchivalSummary = /* @__PURE__ */ __name((output, context) => {
3219
3209
  return (0, import_smithy_client.take)(output, {
3220
3210
  ArchivalBackupArn: import_smithy_client.expectString,
3221
- ArchivalDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3211
+ ArchivalDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ArchivalDateTime"),
3222
3212
  ArchivalReason: import_smithy_client.expectString
3223
3213
  });
3224
3214
  }, "de_ArchivalSummary");
@@ -3279,7 +3269,7 @@ var de_AttributeValue = /* @__PURE__ */ __name((output, context) => {
3279
3269
  var de_AutoScalingPolicyDescription = /* @__PURE__ */ __name((output, context) => {
3280
3270
  return (0, import_smithy_client.take)(output, {
3281
3271
  PolicyName: import_smithy_client.expectString,
3282
- TargetTrackingScalingPolicyConfiguration: (_) => de_AutoScalingTargetTrackingScalingPolicyConfigurationDescription(_, context)
3272
+ TargetTrackingScalingPolicyConfiguration: /* @__PURE__ */ __name((_) => de_AutoScalingTargetTrackingScalingPolicyConfigurationDescription(_, context), "TargetTrackingScalingPolicyConfiguration")
3283
3273
  });
3284
3274
  }, "de_AutoScalingPolicyDescription");
3285
3275
  var de_AutoScalingPolicyDescriptionList = /* @__PURE__ */ __name((output, context) => {
@@ -3294,7 +3284,7 @@ var de_AutoScalingSettingsDescription = /* @__PURE__ */ __name((output, context)
3294
3284
  AutoScalingRoleArn: import_smithy_client.expectString,
3295
3285
  MaximumUnits: import_smithy_client.expectLong,
3296
3286
  MinimumUnits: import_smithy_client.expectLong,
3297
- ScalingPolicies: (_) => de_AutoScalingPolicyDescriptionList(_, context)
3287
+ ScalingPolicies: /* @__PURE__ */ __name((_) => de_AutoScalingPolicyDescriptionList(_, context), "ScalingPolicies")
3298
3288
  });
3299
3289
  }, "de_AutoScalingSettingsDescription");
3300
3290
  var de_AutoScalingTargetTrackingScalingPolicyConfigurationDescription = /* @__PURE__ */ __name((output, context) => {
@@ -3307,16 +3297,16 @@ var de_AutoScalingTargetTrackingScalingPolicyConfigurationDescription = /* @__PU
3307
3297
  }, "de_AutoScalingTargetTrackingScalingPolicyConfigurationDescription");
3308
3298
  var de_BackupDescription = /* @__PURE__ */ __name((output, context) => {
3309
3299
  return (0, import_smithy_client.take)(output, {
3310
- BackupDetails: (_) => de_BackupDetails(_, context),
3311
- SourceTableDetails: (_) => de_SourceTableDetails(_, context),
3312
- SourceTableFeatureDetails: (_) => de_SourceTableFeatureDetails(_, context)
3300
+ BackupDetails: /* @__PURE__ */ __name((_) => de_BackupDetails(_, context), "BackupDetails"),
3301
+ SourceTableDetails: /* @__PURE__ */ __name((_) => de_SourceTableDetails(_, context), "SourceTableDetails"),
3302
+ SourceTableFeatureDetails: /* @__PURE__ */ __name((_) => de_SourceTableFeatureDetails(_, context), "SourceTableFeatureDetails")
3313
3303
  });
3314
3304
  }, "de_BackupDescription");
3315
3305
  var de_BackupDetails = /* @__PURE__ */ __name((output, context) => {
3316
3306
  return (0, import_smithy_client.take)(output, {
3317
3307
  BackupArn: import_smithy_client.expectString,
3318
- BackupCreationDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3319
- BackupExpiryDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3308
+ BackupCreationDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "BackupCreationDateTime"),
3309
+ BackupExpiryDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "BackupExpiryDateTime"),
3320
3310
  BackupName: import_smithy_client.expectString,
3321
3311
  BackupSizeBytes: import_smithy_client.expectLong,
3322
3312
  BackupStatus: import_smithy_client.expectString,
@@ -3332,8 +3322,8 @@ var de_BackupSummaries = /* @__PURE__ */ __name((output, context) => {
3332
3322
  var de_BackupSummary = /* @__PURE__ */ __name((output, context) => {
3333
3323
  return (0, import_smithy_client.take)(output, {
3334
3324
  BackupArn: import_smithy_client.expectString,
3335
- BackupCreationDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3336
- BackupExpiryDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3325
+ BackupCreationDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "BackupCreationDateTime"),
3326
+ BackupExpiryDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "BackupExpiryDateTime"),
3337
3327
  BackupName: import_smithy_client.expectString,
3338
3328
  BackupSizeBytes: import_smithy_client.expectLong,
3339
3329
  BackupStatus: import_smithy_client.expectString,
@@ -3345,15 +3335,15 @@ var de_BackupSummary = /* @__PURE__ */ __name((output, context) => {
3345
3335
  }, "de_BackupSummary");
3346
3336
  var de_BatchExecuteStatementOutput = /* @__PURE__ */ __name((output, context) => {
3347
3337
  return (0, import_smithy_client.take)(output, {
3348
- ConsumedCapacity: (_) => de_ConsumedCapacityMultiple(_, context),
3349
- Responses: (_) => de_PartiQLBatchResponse(_, context)
3338
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacityMultiple(_, context), "ConsumedCapacity"),
3339
+ Responses: /* @__PURE__ */ __name((_) => de_PartiQLBatchResponse(_, context), "Responses")
3350
3340
  });
3351
3341
  }, "de_BatchExecuteStatementOutput");
3352
3342
  var de_BatchGetItemOutput = /* @__PURE__ */ __name((output, context) => {
3353
3343
  return (0, import_smithy_client.take)(output, {
3354
- ConsumedCapacity: (_) => de_ConsumedCapacityMultiple(_, context),
3355
- Responses: (_) => de_BatchGetResponseMap(_, context),
3356
- UnprocessedKeys: (_) => de_BatchGetRequestMap(_, context)
3344
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacityMultiple(_, context), "ConsumedCapacity"),
3345
+ Responses: /* @__PURE__ */ __name((_) => de_BatchGetResponseMap(_, context), "Responses"),
3346
+ UnprocessedKeys: /* @__PURE__ */ __name((_) => de_BatchGetRequestMap(_, context), "UnprocessedKeys")
3357
3347
  });
3358
3348
  }, "de_BatchGetItemOutput");
3359
3349
  var de_BatchGetRequestMap = /* @__PURE__ */ __name((output, context) => {
@@ -3380,22 +3370,22 @@ var de_BatchGetResponseMap = /* @__PURE__ */ __name((output, context) => {
3380
3370
  var de_BatchStatementError = /* @__PURE__ */ __name((output, context) => {
3381
3371
  return (0, import_smithy_client.take)(output, {
3382
3372
  Code: import_smithy_client.expectString,
3383
- Item: (_) => de_AttributeMap(_, context),
3373
+ Item: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Item"),
3384
3374
  Message: import_smithy_client.expectString
3385
3375
  });
3386
3376
  }, "de_BatchStatementError");
3387
3377
  var de_BatchStatementResponse = /* @__PURE__ */ __name((output, context) => {
3388
3378
  return (0, import_smithy_client.take)(output, {
3389
- Error: (_) => de_BatchStatementError(_, context),
3390
- Item: (_) => de_AttributeMap(_, context),
3379
+ Error: /* @__PURE__ */ __name((_) => de_BatchStatementError(_, context), "Error"),
3380
+ Item: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Item"),
3391
3381
  TableName: import_smithy_client.expectString
3392
3382
  });
3393
3383
  }, "de_BatchStatementResponse");
3394
3384
  var de_BatchWriteItemOutput = /* @__PURE__ */ __name((output, context) => {
3395
3385
  return (0, import_smithy_client.take)(output, {
3396
- ConsumedCapacity: (_) => de_ConsumedCapacityMultiple(_, context),
3397
- ItemCollectionMetrics: (_) => de_ItemCollectionMetricsPerTable(_, context),
3398
- UnprocessedItems: (_) => de_BatchWriteItemRequestMap(_, context)
3386
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacityMultiple(_, context), "ConsumedCapacity"),
3387
+ ItemCollectionMetrics: /* @__PURE__ */ __name((_) => de_ItemCollectionMetricsPerTable(_, context), "ItemCollectionMetrics"),
3388
+ UnprocessedItems: /* @__PURE__ */ __name((_) => de_BatchWriteItemRequestMap(_, context), "UnprocessedItems")
3399
3389
  });
3400
3390
  }, "de_BatchWriteItemOutput");
3401
3391
  var de_BatchWriteItemRequestMap = /* @__PURE__ */ __name((output, context) => {
@@ -3410,7 +3400,7 @@ var de_BatchWriteItemRequestMap = /* @__PURE__ */ __name((output, context) => {
3410
3400
  var de_BillingModeSummary = /* @__PURE__ */ __name((output, context) => {
3411
3401
  return (0, import_smithy_client.take)(output, {
3412
3402
  BillingMode: import_smithy_client.expectString,
3413
- LastUpdateToPayPerRequestDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
3403
+ LastUpdateToPayPerRequestDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdateToPayPerRequestDateTime")
3414
3404
  });
3415
3405
  }, "de_BillingModeSummary");
3416
3406
  var de_BinarySetAttributeValue = /* @__PURE__ */ __name((output, context) => {
@@ -3422,7 +3412,7 @@ var de_BinarySetAttributeValue = /* @__PURE__ */ __name((output, context) => {
3422
3412
  var de_CancellationReason = /* @__PURE__ */ __name((output, context) => {
3423
3413
  return (0, import_smithy_client.take)(output, {
3424
3414
  Code: import_smithy_client.expectString,
3425
- Item: (_) => de_AttributeMap(_, context),
3415
+ Item: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Item"),
3426
3416
  Message: import_smithy_client.expectString
3427
3417
  });
3428
3418
  }, "de_CancellationReason");
@@ -3441,17 +3431,17 @@ var de_Capacity = /* @__PURE__ */ __name((output, context) => {
3441
3431
  }, "de_Capacity");
3442
3432
  var de_ConditionalCheckFailedException = /* @__PURE__ */ __name((output, context) => {
3443
3433
  return (0, import_smithy_client.take)(output, {
3444
- Item: (_) => de_AttributeMap(_, context),
3434
+ Item: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Item"),
3445
3435
  message: import_smithy_client.expectString
3446
3436
  });
3447
3437
  }, "de_ConditionalCheckFailedException");
3448
3438
  var de_ConsumedCapacity = /* @__PURE__ */ __name((output, context) => {
3449
3439
  return (0, import_smithy_client.take)(output, {
3450
3440
  CapacityUnits: import_smithy_client.limitedParseDouble,
3451
- GlobalSecondaryIndexes: (_) => de_SecondaryIndexesCapacityMap(_, context),
3452
- LocalSecondaryIndexes: (_) => de_SecondaryIndexesCapacityMap(_, context),
3441
+ GlobalSecondaryIndexes: /* @__PURE__ */ __name((_) => de_SecondaryIndexesCapacityMap(_, context), "GlobalSecondaryIndexes"),
3442
+ LocalSecondaryIndexes: /* @__PURE__ */ __name((_) => de_SecondaryIndexesCapacityMap(_, context), "LocalSecondaryIndexes"),
3453
3443
  ReadCapacityUnits: import_smithy_client.limitedParseDouble,
3454
- Table: (_) => de_Capacity(_, context),
3444
+ Table: /* @__PURE__ */ __name((_) => de_Capacity(_, context), "Table"),
3455
3445
  TableName: import_smithy_client.expectString,
3456
3446
  WriteCapacityUnits: import_smithy_client.limitedParseDouble
3457
3447
  });
@@ -3465,54 +3455,54 @@ var de_ConsumedCapacityMultiple = /* @__PURE__ */ __name((output, context) => {
3465
3455
  var de_ContinuousBackupsDescription = /* @__PURE__ */ __name((output, context) => {
3466
3456
  return (0, import_smithy_client.take)(output, {
3467
3457
  ContinuousBackupsStatus: import_smithy_client.expectString,
3468
- PointInTimeRecoveryDescription: (_) => de_PointInTimeRecoveryDescription(_, context)
3458
+ PointInTimeRecoveryDescription: /* @__PURE__ */ __name((_) => de_PointInTimeRecoveryDescription(_, context), "PointInTimeRecoveryDescription")
3469
3459
  });
3470
3460
  }, "de_ContinuousBackupsDescription");
3471
3461
  var de_CreateBackupOutput = /* @__PURE__ */ __name((output, context) => {
3472
3462
  return (0, import_smithy_client.take)(output, {
3473
- BackupDetails: (_) => de_BackupDetails(_, context)
3463
+ BackupDetails: /* @__PURE__ */ __name((_) => de_BackupDetails(_, context), "BackupDetails")
3474
3464
  });
3475
3465
  }, "de_CreateBackupOutput");
3476
3466
  var de_CreateGlobalTableOutput = /* @__PURE__ */ __name((output, context) => {
3477
3467
  return (0, import_smithy_client.take)(output, {
3478
- GlobalTableDescription: (_) => de_GlobalTableDescription(_, context)
3468
+ GlobalTableDescription: /* @__PURE__ */ __name((_) => de_GlobalTableDescription(_, context), "GlobalTableDescription")
3479
3469
  });
3480
3470
  }, "de_CreateGlobalTableOutput");
3481
3471
  var de_CreateTableOutput = /* @__PURE__ */ __name((output, context) => {
3482
3472
  return (0, import_smithy_client.take)(output, {
3483
- TableDescription: (_) => de_TableDescription(_, context)
3473
+ TableDescription: /* @__PURE__ */ __name((_) => de_TableDescription(_, context), "TableDescription")
3484
3474
  });
3485
3475
  }, "de_CreateTableOutput");
3486
3476
  var de_DeleteBackupOutput = /* @__PURE__ */ __name((output, context) => {
3487
3477
  return (0, import_smithy_client.take)(output, {
3488
- BackupDescription: (_) => de_BackupDescription(_, context)
3478
+ BackupDescription: /* @__PURE__ */ __name((_) => de_BackupDescription(_, context), "BackupDescription")
3489
3479
  });
3490
3480
  }, "de_DeleteBackupOutput");
3491
3481
  var de_DeleteItemOutput = /* @__PURE__ */ __name((output, context) => {
3492
3482
  return (0, import_smithy_client.take)(output, {
3493
- Attributes: (_) => de_AttributeMap(_, context),
3494
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
3495
- ItemCollectionMetrics: (_) => de_ItemCollectionMetrics(_, context)
3483
+ Attributes: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Attributes"),
3484
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
3485
+ ItemCollectionMetrics: /* @__PURE__ */ __name((_) => de_ItemCollectionMetrics(_, context), "ItemCollectionMetrics")
3496
3486
  });
3497
3487
  }, "de_DeleteItemOutput");
3498
3488
  var de_DeleteRequest = /* @__PURE__ */ __name((output, context) => {
3499
3489
  return (0, import_smithy_client.take)(output, {
3500
- Key: (_) => de_Key(_, context)
3490
+ Key: /* @__PURE__ */ __name((_) => de_Key(_, context), "Key")
3501
3491
  });
3502
3492
  }, "de_DeleteRequest");
3503
3493
  var de_DeleteTableOutput = /* @__PURE__ */ __name((output, context) => {
3504
3494
  return (0, import_smithy_client.take)(output, {
3505
- TableDescription: (_) => de_TableDescription(_, context)
3495
+ TableDescription: /* @__PURE__ */ __name((_) => de_TableDescription(_, context), "TableDescription")
3506
3496
  });
3507
3497
  }, "de_DeleteTableOutput");
3508
3498
  var de_DescribeBackupOutput = /* @__PURE__ */ __name((output, context) => {
3509
3499
  return (0, import_smithy_client.take)(output, {
3510
- BackupDescription: (_) => de_BackupDescription(_, context)
3500
+ BackupDescription: /* @__PURE__ */ __name((_) => de_BackupDescription(_, context), "BackupDescription")
3511
3501
  });
3512
3502
  }, "de_DescribeBackupOutput");
3513
3503
  var de_DescribeContinuousBackupsOutput = /* @__PURE__ */ __name((output, context) => {
3514
3504
  return (0, import_smithy_client.take)(output, {
3515
- ContinuousBackupsDescription: (_) => de_ContinuousBackupsDescription(_, context)
3505
+ ContinuousBackupsDescription: /* @__PURE__ */ __name((_) => de_ContinuousBackupsDescription(_, context), "ContinuousBackupsDescription")
3516
3506
  });
3517
3507
  }, "de_DescribeContinuousBackupsOutput");
3518
3508
  var de_DescribeContributorInsightsOutput = /* @__PURE__ */ __name((output, context) => {
@@ -3521,89 +3511,89 @@ var de_DescribeContributorInsightsOutput = /* @__PURE__ */ __name((output, conte
3521
3511
  ContributorInsightsStatus: import_smithy_client.expectString,
3522
3512
  FailureException: import_smithy_client._json,
3523
3513
  IndexName: import_smithy_client.expectString,
3524
- LastUpdateDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3514
+ LastUpdateDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdateDateTime"),
3525
3515
  TableName: import_smithy_client.expectString
3526
3516
  });
3527
3517
  }, "de_DescribeContributorInsightsOutput");
3528
3518
  var de_DescribeExportOutput = /* @__PURE__ */ __name((output, context) => {
3529
3519
  return (0, import_smithy_client.take)(output, {
3530
- ExportDescription: (_) => de_ExportDescription(_, context)
3520
+ ExportDescription: /* @__PURE__ */ __name((_) => de_ExportDescription(_, context), "ExportDescription")
3531
3521
  });
3532
3522
  }, "de_DescribeExportOutput");
3533
3523
  var de_DescribeGlobalTableOutput = /* @__PURE__ */ __name((output, context) => {
3534
3524
  return (0, import_smithy_client.take)(output, {
3535
- GlobalTableDescription: (_) => de_GlobalTableDescription(_, context)
3525
+ GlobalTableDescription: /* @__PURE__ */ __name((_) => de_GlobalTableDescription(_, context), "GlobalTableDescription")
3536
3526
  });
3537
3527
  }, "de_DescribeGlobalTableOutput");
3538
3528
  var de_DescribeGlobalTableSettingsOutput = /* @__PURE__ */ __name((output, context) => {
3539
3529
  return (0, import_smithy_client.take)(output, {
3540
3530
  GlobalTableName: import_smithy_client.expectString,
3541
- ReplicaSettings: (_) => de_ReplicaSettingsDescriptionList(_, context)
3531
+ ReplicaSettings: /* @__PURE__ */ __name((_) => de_ReplicaSettingsDescriptionList(_, context), "ReplicaSettings")
3542
3532
  });
3543
3533
  }, "de_DescribeGlobalTableSettingsOutput");
3544
3534
  var de_DescribeImportOutput = /* @__PURE__ */ __name((output, context) => {
3545
3535
  return (0, import_smithy_client.take)(output, {
3546
- ImportTableDescription: (_) => de_ImportTableDescription(_, context)
3536
+ ImportTableDescription: /* @__PURE__ */ __name((_) => de_ImportTableDescription(_, context), "ImportTableDescription")
3547
3537
  });
3548
3538
  }, "de_DescribeImportOutput");
3549
3539
  var de_DescribeTableOutput = /* @__PURE__ */ __name((output, context) => {
3550
3540
  return (0, import_smithy_client.take)(output, {
3551
- Table: (_) => de_TableDescription(_, context)
3541
+ Table: /* @__PURE__ */ __name((_) => de_TableDescription(_, context), "Table")
3552
3542
  });
3553
3543
  }, "de_DescribeTableOutput");
3554
3544
  var de_DescribeTableReplicaAutoScalingOutput = /* @__PURE__ */ __name((output, context) => {
3555
3545
  return (0, import_smithy_client.take)(output, {
3556
- TableAutoScalingDescription: (_) => de_TableAutoScalingDescription(_, context)
3546
+ TableAutoScalingDescription: /* @__PURE__ */ __name((_) => de_TableAutoScalingDescription(_, context), "TableAutoScalingDescription")
3557
3547
  });
3558
3548
  }, "de_DescribeTableReplicaAutoScalingOutput");
3559
3549
  var de_ExecuteStatementOutput = /* @__PURE__ */ __name((output, context) => {
3560
3550
  return (0, import_smithy_client.take)(output, {
3561
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
3562
- Items: (_) => de_ItemList(_, context),
3563
- LastEvaluatedKey: (_) => de_Key(_, context),
3551
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
3552
+ Items: /* @__PURE__ */ __name((_) => de_ItemList(_, context), "Items"),
3553
+ LastEvaluatedKey: /* @__PURE__ */ __name((_) => de_Key(_, context), "LastEvaluatedKey"),
3564
3554
  NextToken: import_smithy_client.expectString
3565
3555
  });
3566
3556
  }, "de_ExecuteStatementOutput");
3567
3557
  var de_ExecuteTransactionOutput = /* @__PURE__ */ __name((output, context) => {
3568
3558
  return (0, import_smithy_client.take)(output, {
3569
- ConsumedCapacity: (_) => de_ConsumedCapacityMultiple(_, context),
3570
- Responses: (_) => de_ItemResponseList(_, context)
3559
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacityMultiple(_, context), "ConsumedCapacity"),
3560
+ Responses: /* @__PURE__ */ __name((_) => de_ItemResponseList(_, context), "Responses")
3571
3561
  });
3572
3562
  }, "de_ExecuteTransactionOutput");
3573
3563
  var de_ExportDescription = /* @__PURE__ */ __name((output, context) => {
3574
3564
  return (0, import_smithy_client.take)(output, {
3575
3565
  BilledSizeBytes: import_smithy_client.expectLong,
3576
3566
  ClientToken: import_smithy_client.expectString,
3577
- EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3567
+ EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
3578
3568
  ExportArn: import_smithy_client.expectString,
3579
3569
  ExportFormat: import_smithy_client.expectString,
3580
3570
  ExportManifest: import_smithy_client.expectString,
3581
3571
  ExportStatus: import_smithy_client.expectString,
3582
- ExportTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3572
+ ExportTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExportTime"),
3583
3573
  ExportType: import_smithy_client.expectString,
3584
3574
  FailureCode: import_smithy_client.expectString,
3585
3575
  FailureMessage: import_smithy_client.expectString,
3586
- IncrementalExportSpecification: (_) => de_IncrementalExportSpecification(_, context),
3576
+ IncrementalExportSpecification: /* @__PURE__ */ __name((_) => de_IncrementalExportSpecification(_, context), "IncrementalExportSpecification"),
3587
3577
  ItemCount: import_smithy_client.expectLong,
3588
3578
  S3Bucket: import_smithy_client.expectString,
3589
3579
  S3BucketOwner: import_smithy_client.expectString,
3590
3580
  S3Prefix: import_smithy_client.expectString,
3591
3581
  S3SseAlgorithm: import_smithy_client.expectString,
3592
3582
  S3SseKmsKeyId: import_smithy_client.expectString,
3593
- StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3583
+ StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
3594
3584
  TableArn: import_smithy_client.expectString,
3595
3585
  TableId: import_smithy_client.expectString
3596
3586
  });
3597
3587
  }, "de_ExportDescription");
3598
3588
  var de_ExportTableToPointInTimeOutput = /* @__PURE__ */ __name((output, context) => {
3599
3589
  return (0, import_smithy_client.take)(output, {
3600
- ExportDescription: (_) => de_ExportDescription(_, context)
3590
+ ExportDescription: /* @__PURE__ */ __name((_) => de_ExportDescription(_, context), "ExportDescription")
3601
3591
  });
3602
3592
  }, "de_ExportTableToPointInTimeOutput");
3603
3593
  var de_GetItemOutput = /* @__PURE__ */ __name((output, context) => {
3604
3594
  return (0, import_smithy_client.take)(output, {
3605
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
3606
- Item: (_) => de_AttributeMap(_, context)
3595
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
3596
+ Item: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Item")
3607
3597
  });
3608
3598
  }, "de_GetItemOutput");
3609
3599
  var de_GlobalSecondaryIndexDescription = /* @__PURE__ */ __name((output, context) => {
@@ -3617,7 +3607,7 @@ var de_GlobalSecondaryIndexDescription = /* @__PURE__ */ __name((output, context
3617
3607
  KeySchema: import_smithy_client._json,
3618
3608
  OnDemandThroughput: import_smithy_client._json,
3619
3609
  Projection: import_smithy_client._json,
3620
- ProvisionedThroughput: (_) => de_ProvisionedThroughputDescription(_, context),
3610
+ ProvisionedThroughput: /* @__PURE__ */ __name((_) => de_ProvisionedThroughputDescription(_, context), "ProvisionedThroughput"),
3621
3611
  WarmThroughput: import_smithy_client._json
3622
3612
  });
3623
3613
  }, "de_GlobalSecondaryIndexDescription");
@@ -3629,22 +3619,22 @@ var de_GlobalSecondaryIndexDescriptionList = /* @__PURE__ */ __name((output, con
3629
3619
  }, "de_GlobalSecondaryIndexDescriptionList");
3630
3620
  var de_GlobalTableDescription = /* @__PURE__ */ __name((output, context) => {
3631
3621
  return (0, import_smithy_client.take)(output, {
3632
- CreationDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3622
+ CreationDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationDateTime"),
3633
3623
  GlobalTableArn: import_smithy_client.expectString,
3634
3624
  GlobalTableName: import_smithy_client.expectString,
3635
3625
  GlobalTableStatus: import_smithy_client.expectString,
3636
- ReplicationGroup: (_) => de_ReplicaDescriptionList(_, context)
3626
+ ReplicationGroup: /* @__PURE__ */ __name((_) => de_ReplicaDescriptionList(_, context), "ReplicationGroup")
3637
3627
  });
3638
3628
  }, "de_GlobalTableDescription");
3639
3629
  var de_ImportSummary = /* @__PURE__ */ __name((output, context) => {
3640
3630
  return (0, import_smithy_client.take)(output, {
3641
3631
  CloudWatchLogGroupArn: import_smithy_client.expectString,
3642
- EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3632
+ EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
3643
3633
  ImportArn: import_smithy_client.expectString,
3644
3634
  ImportStatus: import_smithy_client.expectString,
3645
3635
  InputFormat: import_smithy_client.expectString,
3646
3636
  S3BucketSource: import_smithy_client._json,
3647
- StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3637
+ StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
3648
3638
  TableArn: import_smithy_client.expectString
3649
3639
  });
3650
3640
  }, "de_ImportSummary");
@@ -3658,7 +3648,7 @@ var de_ImportTableDescription = /* @__PURE__ */ __name((output, context) => {
3658
3648
  return (0, import_smithy_client.take)(output, {
3659
3649
  ClientToken: import_smithy_client.expectString,
3660
3650
  CloudWatchLogGroupArn: import_smithy_client.expectString,
3661
- EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3651
+ EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
3662
3652
  ErrorCount: import_smithy_client.expectLong,
3663
3653
  FailureCode: import_smithy_client.expectString,
3664
3654
  FailureMessage: import_smithy_client.expectString,
@@ -3671,7 +3661,7 @@ var de_ImportTableDescription = /* @__PURE__ */ __name((output, context) => {
3671
3661
  ProcessedItemCount: import_smithy_client.expectLong,
3672
3662
  ProcessedSizeBytes: import_smithy_client.expectLong,
3673
3663
  S3BucketSource: import_smithy_client._json,
3674
- StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3664
+ StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
3675
3665
  TableArn: import_smithy_client.expectString,
3676
3666
  TableCreationParameters: import_smithy_client._json,
3677
3667
  TableId: import_smithy_client.expectString
@@ -3679,13 +3669,13 @@ var de_ImportTableDescription = /* @__PURE__ */ __name((output, context) => {
3679
3669
  }, "de_ImportTableDescription");
3680
3670
  var de_ImportTableOutput = /* @__PURE__ */ __name((output, context) => {
3681
3671
  return (0, import_smithy_client.take)(output, {
3682
- ImportTableDescription: (_) => de_ImportTableDescription(_, context)
3672
+ ImportTableDescription: /* @__PURE__ */ __name((_) => de_ImportTableDescription(_, context), "ImportTableDescription")
3683
3673
  });
3684
3674
  }, "de_ImportTableOutput");
3685
3675
  var de_IncrementalExportSpecification = /* @__PURE__ */ __name((output, context) => {
3686
3676
  return (0, import_smithy_client.take)(output, {
3687
- ExportFromTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3688
- ExportToTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3677
+ ExportFromTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExportFromTime"),
3678
+ ExportToTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExportToTime"),
3689
3679
  ExportViewType: import_smithy_client.expectString
3690
3680
  });
3691
3681
  }, "de_IncrementalExportSpecification");
@@ -3700,8 +3690,8 @@ var de_ItemCollectionKeyAttributeMap = /* @__PURE__ */ __name((output, context)
3700
3690
  }, "de_ItemCollectionKeyAttributeMap");
3701
3691
  var de_ItemCollectionMetrics = /* @__PURE__ */ __name((output, context) => {
3702
3692
  return (0, import_smithy_client.take)(output, {
3703
- ItemCollectionKey: (_) => de_ItemCollectionKeyAttributeMap(_, context),
3704
- SizeEstimateRangeGB: (_) => de_ItemCollectionSizeEstimateRange(_, context)
3693
+ ItemCollectionKey: /* @__PURE__ */ __name((_) => de_ItemCollectionKeyAttributeMap(_, context), "ItemCollectionKey"),
3694
+ SizeEstimateRangeGB: /* @__PURE__ */ __name((_) => de_ItemCollectionSizeEstimateRange(_, context), "SizeEstimateRangeGB")
3705
3695
  });
3706
3696
  }, "de_ItemCollectionMetrics");
3707
3697
  var de_ItemCollectionMetricsMultiple = /* @__PURE__ */ __name((output, context) => {
@@ -3733,7 +3723,7 @@ var de_ItemList = /* @__PURE__ */ __name((output, context) => {
3733
3723
  }, "de_ItemList");
3734
3724
  var de_ItemResponse = /* @__PURE__ */ __name((output, context) => {
3735
3725
  return (0, import_smithy_client.take)(output, {
3736
- Item: (_) => de_AttributeMap(_, context)
3726
+ Item: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Item")
3737
3727
  });
3738
3728
  }, "de_ItemResponse");
3739
3729
  var de_ItemResponseList = /* @__PURE__ */ __name((output, context) => {
@@ -3762,7 +3752,7 @@ var de_KeysAndAttributes = /* @__PURE__ */ __name((output, context) => {
3762
3752
  AttributesToGet: import_smithy_client._json,
3763
3753
  ConsistentRead: import_smithy_client.expectBoolean,
3764
3754
  ExpressionAttributeNames: import_smithy_client._json,
3765
- Keys: (_) => de_KeyList(_, context),
3755
+ Keys: /* @__PURE__ */ __name((_) => de_KeyList(_, context), "Keys"),
3766
3756
  ProjectionExpression: import_smithy_client.expectString
3767
3757
  });
3768
3758
  }, "de_KeysAndAttributes");
@@ -3774,13 +3764,13 @@ var de_ListAttributeValue = /* @__PURE__ */ __name((output, context) => {
3774
3764
  }, "de_ListAttributeValue");
3775
3765
  var de_ListBackupsOutput = /* @__PURE__ */ __name((output, context) => {
3776
3766
  return (0, import_smithy_client.take)(output, {
3777
- BackupSummaries: (_) => de_BackupSummaries(_, context),
3767
+ BackupSummaries: /* @__PURE__ */ __name((_) => de_BackupSummaries(_, context), "BackupSummaries"),
3778
3768
  LastEvaluatedBackupArn: import_smithy_client.expectString
3779
3769
  });
3780
3770
  }, "de_ListBackupsOutput");
3781
3771
  var de_ListImportsOutput = /* @__PURE__ */ __name((output, context) => {
3782
3772
  return (0, import_smithy_client.take)(output, {
3783
- ImportSummaryList: (_) => de_ImportSummaryList(_, context),
3773
+ ImportSummaryList: /* @__PURE__ */ __name((_) => de_ImportSummaryList(_, context), "ImportSummaryList"),
3784
3774
  NextToken: import_smithy_client.expectString
3785
3775
  });
3786
3776
  }, "de_ListImportsOutput");
@@ -3801,16 +3791,16 @@ var de_PartiQLBatchResponse = /* @__PURE__ */ __name((output, context) => {
3801
3791
  }, "de_PartiQLBatchResponse");
3802
3792
  var de_PointInTimeRecoveryDescription = /* @__PURE__ */ __name((output, context) => {
3803
3793
  return (0, import_smithy_client.take)(output, {
3804
- EarliestRestorableDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3805
- LatestRestorableDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3794
+ EarliestRestorableDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EarliestRestorableDateTime"),
3795
+ LatestRestorableDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LatestRestorableDateTime"),
3806
3796
  PointInTimeRecoveryStatus: import_smithy_client.expectString,
3807
3797
  RecoveryPeriodInDays: import_smithy_client.expectInt32
3808
3798
  });
3809
3799
  }, "de_PointInTimeRecoveryDescription");
3810
3800
  var de_ProvisionedThroughputDescription = /* @__PURE__ */ __name((output, context) => {
3811
3801
  return (0, import_smithy_client.take)(output, {
3812
- LastDecreaseDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3813
- LastIncreaseDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3802
+ LastDecreaseDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastDecreaseDateTime"),
3803
+ LastIncreaseDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastIncreaseDateTime"),
3814
3804
  NumberOfDecreasesToday: import_smithy_client.expectLong,
3815
3805
  ReadCapacityUnits: import_smithy_client.expectLong,
3816
3806
  WriteCapacityUnits: import_smithy_client.expectLong
@@ -3827,31 +3817,31 @@ var de_PutItemInputAttributeMap = /* @__PURE__ */ __name((output, context) => {
3827
3817
  }, "de_PutItemInputAttributeMap");
3828
3818
  var de_PutItemOutput = /* @__PURE__ */ __name((output, context) => {
3829
3819
  return (0, import_smithy_client.take)(output, {
3830
- Attributes: (_) => de_AttributeMap(_, context),
3831
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
3832
- ItemCollectionMetrics: (_) => de_ItemCollectionMetrics(_, context)
3820
+ Attributes: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Attributes"),
3821
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
3822
+ ItemCollectionMetrics: /* @__PURE__ */ __name((_) => de_ItemCollectionMetrics(_, context), "ItemCollectionMetrics")
3833
3823
  });
3834
3824
  }, "de_PutItemOutput");
3835
3825
  var de_PutRequest = /* @__PURE__ */ __name((output, context) => {
3836
3826
  return (0, import_smithy_client.take)(output, {
3837
- Item: (_) => de_PutItemInputAttributeMap(_, context)
3827
+ Item: /* @__PURE__ */ __name((_) => de_PutItemInputAttributeMap(_, context), "Item")
3838
3828
  });
3839
3829
  }, "de_PutRequest");
3840
3830
  var de_QueryOutput = /* @__PURE__ */ __name((output, context) => {
3841
3831
  return (0, import_smithy_client.take)(output, {
3842
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
3832
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
3843
3833
  Count: import_smithy_client.expectInt32,
3844
- Items: (_) => de_ItemList(_, context),
3845
- LastEvaluatedKey: (_) => de_Key(_, context),
3834
+ Items: /* @__PURE__ */ __name((_) => de_ItemList(_, context), "Items"),
3835
+ LastEvaluatedKey: /* @__PURE__ */ __name((_) => de_Key(_, context), "LastEvaluatedKey"),
3846
3836
  ScannedCount: import_smithy_client.expectInt32
3847
3837
  });
3848
3838
  }, "de_QueryOutput");
3849
3839
  var de_ReplicaAutoScalingDescription = /* @__PURE__ */ __name((output, context) => {
3850
3840
  return (0, import_smithy_client.take)(output, {
3851
- GlobalSecondaryIndexes: (_) => de_ReplicaGlobalSecondaryIndexAutoScalingDescriptionList(_, context),
3841
+ GlobalSecondaryIndexes: /* @__PURE__ */ __name((_) => de_ReplicaGlobalSecondaryIndexAutoScalingDescriptionList(_, context), "GlobalSecondaryIndexes"),
3852
3842
  RegionName: import_smithy_client.expectString,
3853
- ReplicaProvisionedReadCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3854
- ReplicaProvisionedWriteCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3843
+ ReplicaProvisionedReadCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ReplicaProvisionedReadCapacityAutoScalingSettings"),
3844
+ ReplicaProvisionedWriteCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ReplicaProvisionedWriteCapacityAutoScalingSettings"),
3855
3845
  ReplicaStatus: import_smithy_client.expectString
3856
3846
  });
3857
3847
  }, "de_ReplicaAutoScalingDescription");
@@ -3868,11 +3858,11 @@ var de_ReplicaDescription = /* @__PURE__ */ __name((output, context) => {
3868
3858
  OnDemandThroughputOverride: import_smithy_client._json,
3869
3859
  ProvisionedThroughputOverride: import_smithy_client._json,
3870
3860
  RegionName: import_smithy_client.expectString,
3871
- ReplicaInaccessibleDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3861
+ ReplicaInaccessibleDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ReplicaInaccessibleDateTime"),
3872
3862
  ReplicaStatus: import_smithy_client.expectString,
3873
3863
  ReplicaStatusDescription: import_smithy_client.expectString,
3874
3864
  ReplicaStatusPercentProgress: import_smithy_client.expectString,
3875
- ReplicaTableClassSummary: (_) => de_TableClassSummary(_, context),
3865
+ ReplicaTableClassSummary: /* @__PURE__ */ __name((_) => de_TableClassSummary(_, context), "ReplicaTableClassSummary"),
3876
3866
  WarmThroughput: import_smithy_client._json
3877
3867
  });
3878
3868
  }, "de_ReplicaDescription");
@@ -3886,8 +3876,8 @@ var de_ReplicaGlobalSecondaryIndexAutoScalingDescription = /* @__PURE__ */ __nam
3886
3876
  return (0, import_smithy_client.take)(output, {
3887
3877
  IndexName: import_smithy_client.expectString,
3888
3878
  IndexStatus: import_smithy_client.expectString,
3889
- ProvisionedReadCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3890
- ProvisionedWriteCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context)
3879
+ ProvisionedReadCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ProvisionedReadCapacityAutoScalingSettings"),
3880
+ ProvisionedWriteCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ProvisionedWriteCapacityAutoScalingSettings")
3891
3881
  });
3892
3882
  }, "de_ReplicaGlobalSecondaryIndexAutoScalingDescription");
3893
3883
  var de_ReplicaGlobalSecondaryIndexAutoScalingDescriptionList = /* @__PURE__ */ __name((output, context) => {
@@ -3900,9 +3890,9 @@ var de_ReplicaGlobalSecondaryIndexSettingsDescription = /* @__PURE__ */ __name((
3900
3890
  return (0, import_smithy_client.take)(output, {
3901
3891
  IndexName: import_smithy_client.expectString,
3902
3892
  IndexStatus: import_smithy_client.expectString,
3903
- ProvisionedReadCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3893
+ ProvisionedReadCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ProvisionedReadCapacityAutoScalingSettings"),
3904
3894
  ProvisionedReadCapacityUnits: import_smithy_client.expectLong,
3905
- ProvisionedWriteCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3895
+ ProvisionedWriteCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ProvisionedWriteCapacityAutoScalingSettings"),
3906
3896
  ProvisionedWriteCapacityUnits: import_smithy_client.expectLong
3907
3897
  });
3908
3898
  }, "de_ReplicaGlobalSecondaryIndexSettingsDescription");
@@ -3915,14 +3905,14 @@ var de_ReplicaGlobalSecondaryIndexSettingsDescriptionList = /* @__PURE__ */ __na
3915
3905
  var de_ReplicaSettingsDescription = /* @__PURE__ */ __name((output, context) => {
3916
3906
  return (0, import_smithy_client.take)(output, {
3917
3907
  RegionName: import_smithy_client.expectString,
3918
- ReplicaBillingModeSummary: (_) => de_BillingModeSummary(_, context),
3919
- ReplicaGlobalSecondaryIndexSettings: (_) => de_ReplicaGlobalSecondaryIndexSettingsDescriptionList(_, context),
3920
- ReplicaProvisionedReadCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3908
+ ReplicaBillingModeSummary: /* @__PURE__ */ __name((_) => de_BillingModeSummary(_, context), "ReplicaBillingModeSummary"),
3909
+ ReplicaGlobalSecondaryIndexSettings: /* @__PURE__ */ __name((_) => de_ReplicaGlobalSecondaryIndexSettingsDescriptionList(_, context), "ReplicaGlobalSecondaryIndexSettings"),
3910
+ ReplicaProvisionedReadCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ReplicaProvisionedReadCapacityAutoScalingSettings"),
3921
3911
  ReplicaProvisionedReadCapacityUnits: import_smithy_client.expectLong,
3922
- ReplicaProvisionedWriteCapacityAutoScalingSettings: (_) => de_AutoScalingSettingsDescription(_, context),
3912
+ ReplicaProvisionedWriteCapacityAutoScalingSettings: /* @__PURE__ */ __name((_) => de_AutoScalingSettingsDescription(_, context), "ReplicaProvisionedWriteCapacityAutoScalingSettings"),
3923
3913
  ReplicaProvisionedWriteCapacityUnits: import_smithy_client.expectLong,
3924
3914
  ReplicaStatus: import_smithy_client.expectString,
3925
- ReplicaTableClassSummary: (_) => de_TableClassSummary(_, context)
3915
+ ReplicaTableClassSummary: /* @__PURE__ */ __name((_) => de_TableClassSummary(_, context), "ReplicaTableClassSummary")
3926
3916
  });
3927
3917
  }, "de_ReplicaSettingsDescription");
3928
3918
  var de_ReplicaSettingsDescriptionList = /* @__PURE__ */ __name((output, context) => {
@@ -3933,7 +3923,7 @@ var de_ReplicaSettingsDescriptionList = /* @__PURE__ */ __name((output, context)
3933
3923
  }, "de_ReplicaSettingsDescriptionList");
3934
3924
  var de_RestoreSummary = /* @__PURE__ */ __name((output, context) => {
3935
3925
  return (0, import_smithy_client.take)(output, {
3936
- RestoreDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3926
+ RestoreDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RestoreDateTime"),
3937
3927
  RestoreInProgress: import_smithy_client.expectBoolean,
3938
3928
  SourceBackupArn: import_smithy_client.expectString,
3939
3929
  SourceTableArn: import_smithy_client.expectString
@@ -3941,20 +3931,20 @@ var de_RestoreSummary = /* @__PURE__ */ __name((output, context) => {
3941
3931
  }, "de_RestoreSummary");
3942
3932
  var de_RestoreTableFromBackupOutput = /* @__PURE__ */ __name((output, context) => {
3943
3933
  return (0, import_smithy_client.take)(output, {
3944
- TableDescription: (_) => de_TableDescription(_, context)
3934
+ TableDescription: /* @__PURE__ */ __name((_) => de_TableDescription(_, context), "TableDescription")
3945
3935
  });
3946
3936
  }, "de_RestoreTableFromBackupOutput");
3947
3937
  var de_RestoreTableToPointInTimeOutput = /* @__PURE__ */ __name((output, context) => {
3948
3938
  return (0, import_smithy_client.take)(output, {
3949
- TableDescription: (_) => de_TableDescription(_, context)
3939
+ TableDescription: /* @__PURE__ */ __name((_) => de_TableDescription(_, context), "TableDescription")
3950
3940
  });
3951
3941
  }, "de_RestoreTableToPointInTimeOutput");
3952
3942
  var de_ScanOutput = /* @__PURE__ */ __name((output, context) => {
3953
3943
  return (0, import_smithy_client.take)(output, {
3954
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
3944
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
3955
3945
  Count: import_smithy_client.expectInt32,
3956
- Items: (_) => de_ItemList(_, context),
3957
- LastEvaluatedKey: (_) => de_Key(_, context),
3946
+ Items: /* @__PURE__ */ __name((_) => de_ItemList(_, context), "Items"),
3947
+ LastEvaluatedKey: /* @__PURE__ */ __name((_) => de_Key(_, context), "LastEvaluatedKey"),
3958
3948
  ScannedCount: import_smithy_client.expectInt32
3959
3949
  });
3960
3950
  }, "de_ScanOutput");
@@ -3975,7 +3965,7 @@ var de_SourceTableDetails = /* @__PURE__ */ __name((output, context) => {
3975
3965
  OnDemandThroughput: import_smithy_client._json,
3976
3966
  ProvisionedThroughput: import_smithy_client._json,
3977
3967
  TableArn: import_smithy_client.expectString,
3978
- TableCreationDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3968
+ TableCreationDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "TableCreationDateTime"),
3979
3969
  TableId: import_smithy_client.expectString,
3980
3970
  TableName: import_smithy_client.expectString,
3981
3971
  TableSizeBytes: import_smithy_client.expectLong
@@ -3985,14 +3975,14 @@ var de_SourceTableFeatureDetails = /* @__PURE__ */ __name((output, context) => {
3985
3975
  return (0, import_smithy_client.take)(output, {
3986
3976
  GlobalSecondaryIndexes: import_smithy_client._json,
3987
3977
  LocalSecondaryIndexes: import_smithy_client._json,
3988
- SSEDescription: (_) => de_SSEDescription(_, context),
3978
+ SSEDescription: /* @__PURE__ */ __name((_) => de_SSEDescription(_, context), "SSEDescription"),
3989
3979
  StreamDescription: import_smithy_client._json,
3990
3980
  TimeToLiveDescription: import_smithy_client._json
3991
3981
  });
3992
3982
  }, "de_SourceTableFeatureDetails");
3993
3983
  var de_SSEDescription = /* @__PURE__ */ __name((output, context) => {
3994
3984
  return (0, import_smithy_client.take)(output, {
3995
- InaccessibleEncryptionDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3985
+ InaccessibleEncryptionDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "InaccessibleEncryptionDateTime"),
3996
3986
  KMSMasterKeyArn: import_smithy_client.expectString,
3997
3987
  SSEType: import_smithy_client.expectString,
3998
3988
  Status: import_smithy_client.expectString
@@ -4000,25 +3990,25 @@ var de_SSEDescription = /* @__PURE__ */ __name((output, context) => {
4000
3990
  }, "de_SSEDescription");
4001
3991
  var de_TableAutoScalingDescription = /* @__PURE__ */ __name((output, context) => {
4002
3992
  return (0, import_smithy_client.take)(output, {
4003
- Replicas: (_) => de_ReplicaAutoScalingDescriptionList(_, context),
3993
+ Replicas: /* @__PURE__ */ __name((_) => de_ReplicaAutoScalingDescriptionList(_, context), "Replicas"),
4004
3994
  TableName: import_smithy_client.expectString,
4005
3995
  TableStatus: import_smithy_client.expectString
4006
3996
  });
4007
3997
  }, "de_TableAutoScalingDescription");
4008
3998
  var de_TableClassSummary = /* @__PURE__ */ __name((output, context) => {
4009
3999
  return (0, import_smithy_client.take)(output, {
4010
- LastUpdateDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
4000
+ LastUpdateDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdateDateTime"),
4011
4001
  TableClass: import_smithy_client.expectString
4012
4002
  });
4013
4003
  }, "de_TableClassSummary");
4014
4004
  var de_TableDescription = /* @__PURE__ */ __name((output, context) => {
4015
4005
  return (0, import_smithy_client.take)(output, {
4016
- ArchivalSummary: (_) => de_ArchivalSummary(_, context),
4006
+ ArchivalSummary: /* @__PURE__ */ __name((_) => de_ArchivalSummary(_, context), "ArchivalSummary"),
4017
4007
  AttributeDefinitions: import_smithy_client._json,
4018
- BillingModeSummary: (_) => de_BillingModeSummary(_, context),
4019
- CreationDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
4008
+ BillingModeSummary: /* @__PURE__ */ __name((_) => de_BillingModeSummary(_, context), "BillingModeSummary"),
4009
+ CreationDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationDateTime"),
4020
4010
  DeletionProtectionEnabled: import_smithy_client.expectBoolean,
4021
- GlobalSecondaryIndexes: (_) => de_GlobalSecondaryIndexDescriptionList(_, context),
4011
+ GlobalSecondaryIndexes: /* @__PURE__ */ __name((_) => de_GlobalSecondaryIndexDescriptionList(_, context), "GlobalSecondaryIndexes"),
4022
4012
  GlobalTableVersion: import_smithy_client.expectString,
4023
4013
  ItemCount: import_smithy_client.expectLong,
4024
4014
  KeySchema: import_smithy_client._json,
@@ -4027,13 +4017,13 @@ var de_TableDescription = /* @__PURE__ */ __name((output, context) => {
4027
4017
  LocalSecondaryIndexes: import_smithy_client._json,
4028
4018
  MultiRegionConsistency: import_smithy_client.expectString,
4029
4019
  OnDemandThroughput: import_smithy_client._json,
4030
- ProvisionedThroughput: (_) => de_ProvisionedThroughputDescription(_, context),
4031
- Replicas: (_) => de_ReplicaDescriptionList(_, context),
4032
- RestoreSummary: (_) => de_RestoreSummary(_, context),
4033
- SSEDescription: (_) => de_SSEDescription(_, context),
4020
+ ProvisionedThroughput: /* @__PURE__ */ __name((_) => de_ProvisionedThroughputDescription(_, context), "ProvisionedThroughput"),
4021
+ Replicas: /* @__PURE__ */ __name((_) => de_ReplicaDescriptionList(_, context), "Replicas"),
4022
+ RestoreSummary: /* @__PURE__ */ __name((_) => de_RestoreSummary(_, context), "RestoreSummary"),
4023
+ SSEDescription: /* @__PURE__ */ __name((_) => de_SSEDescription(_, context), "SSEDescription"),
4034
4024
  StreamSpecification: import_smithy_client._json,
4035
4025
  TableArn: import_smithy_client.expectString,
4036
- TableClassSummary: (_) => de_TableClassSummary(_, context),
4026
+ TableClassSummary: /* @__PURE__ */ __name((_) => de_TableClassSummary(_, context), "TableClassSummary"),
4037
4027
  TableId: import_smithy_client.expectString,
4038
4028
  TableName: import_smithy_client.expectString,
4039
4029
  TableSizeBytes: import_smithy_client.expectLong,
@@ -4043,59 +4033,59 @@ var de_TableDescription = /* @__PURE__ */ __name((output, context) => {
4043
4033
  }, "de_TableDescription");
4044
4034
  var de_TransactGetItemsOutput = /* @__PURE__ */ __name((output, context) => {
4045
4035
  return (0, import_smithy_client.take)(output, {
4046
- ConsumedCapacity: (_) => de_ConsumedCapacityMultiple(_, context),
4047
- Responses: (_) => de_ItemResponseList(_, context)
4036
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacityMultiple(_, context), "ConsumedCapacity"),
4037
+ Responses: /* @__PURE__ */ __name((_) => de_ItemResponseList(_, context), "Responses")
4048
4038
  });
4049
4039
  }, "de_TransactGetItemsOutput");
4050
4040
  var de_TransactionCanceledException = /* @__PURE__ */ __name((output, context) => {
4051
4041
  return (0, import_smithy_client.take)(output, {
4052
- CancellationReasons: (_) => de_CancellationReasonList(_, context),
4042
+ CancellationReasons: /* @__PURE__ */ __name((_) => de_CancellationReasonList(_, context), "CancellationReasons"),
4053
4043
  Message: import_smithy_client.expectString
4054
4044
  });
4055
4045
  }, "de_TransactionCanceledException");
4056
4046
  var de_TransactWriteItemsOutput = /* @__PURE__ */ __name((output, context) => {
4057
4047
  return (0, import_smithy_client.take)(output, {
4058
- ConsumedCapacity: (_) => de_ConsumedCapacityMultiple(_, context),
4059
- ItemCollectionMetrics: (_) => de_ItemCollectionMetricsPerTable(_, context)
4048
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacityMultiple(_, context), "ConsumedCapacity"),
4049
+ ItemCollectionMetrics: /* @__PURE__ */ __name((_) => de_ItemCollectionMetricsPerTable(_, context), "ItemCollectionMetrics")
4060
4050
  });
4061
4051
  }, "de_TransactWriteItemsOutput");
4062
4052
  var de_UpdateContinuousBackupsOutput = /* @__PURE__ */ __name((output, context) => {
4063
4053
  return (0, import_smithy_client.take)(output, {
4064
- ContinuousBackupsDescription: (_) => de_ContinuousBackupsDescription(_, context)
4054
+ ContinuousBackupsDescription: /* @__PURE__ */ __name((_) => de_ContinuousBackupsDescription(_, context), "ContinuousBackupsDescription")
4065
4055
  });
4066
4056
  }, "de_UpdateContinuousBackupsOutput");
4067
4057
  var de_UpdateGlobalTableOutput = /* @__PURE__ */ __name((output, context) => {
4068
4058
  return (0, import_smithy_client.take)(output, {
4069
- GlobalTableDescription: (_) => de_GlobalTableDescription(_, context)
4059
+ GlobalTableDescription: /* @__PURE__ */ __name((_) => de_GlobalTableDescription(_, context), "GlobalTableDescription")
4070
4060
  });
4071
4061
  }, "de_UpdateGlobalTableOutput");
4072
4062
  var de_UpdateGlobalTableSettingsOutput = /* @__PURE__ */ __name((output, context) => {
4073
4063
  return (0, import_smithy_client.take)(output, {
4074
4064
  GlobalTableName: import_smithy_client.expectString,
4075
- ReplicaSettings: (_) => de_ReplicaSettingsDescriptionList(_, context)
4065
+ ReplicaSettings: /* @__PURE__ */ __name((_) => de_ReplicaSettingsDescriptionList(_, context), "ReplicaSettings")
4076
4066
  });
4077
4067
  }, "de_UpdateGlobalTableSettingsOutput");
4078
4068
  var de_UpdateItemOutput = /* @__PURE__ */ __name((output, context) => {
4079
4069
  return (0, import_smithy_client.take)(output, {
4080
- Attributes: (_) => de_AttributeMap(_, context),
4081
- ConsumedCapacity: (_) => de_ConsumedCapacity(_, context),
4082
- ItemCollectionMetrics: (_) => de_ItemCollectionMetrics(_, context)
4070
+ Attributes: /* @__PURE__ */ __name((_) => de_AttributeMap(_, context), "Attributes"),
4071
+ ConsumedCapacity: /* @__PURE__ */ __name((_) => de_ConsumedCapacity(_, context), "ConsumedCapacity"),
4072
+ ItemCollectionMetrics: /* @__PURE__ */ __name((_) => de_ItemCollectionMetrics(_, context), "ItemCollectionMetrics")
4083
4073
  });
4084
4074
  }, "de_UpdateItemOutput");
4085
4075
  var de_UpdateTableOutput = /* @__PURE__ */ __name((output, context) => {
4086
4076
  return (0, import_smithy_client.take)(output, {
4087
- TableDescription: (_) => de_TableDescription(_, context)
4077
+ TableDescription: /* @__PURE__ */ __name((_) => de_TableDescription(_, context), "TableDescription")
4088
4078
  });
4089
4079
  }, "de_UpdateTableOutput");
4090
4080
  var de_UpdateTableReplicaAutoScalingOutput = /* @__PURE__ */ __name((output, context) => {
4091
4081
  return (0, import_smithy_client.take)(output, {
4092
- TableAutoScalingDescription: (_) => de_TableAutoScalingDescription(_, context)
4082
+ TableAutoScalingDescription: /* @__PURE__ */ __name((_) => de_TableAutoScalingDescription(_, context), "TableAutoScalingDescription")
4093
4083
  });
4094
4084
  }, "de_UpdateTableReplicaAutoScalingOutput");
4095
4085
  var de_WriteRequest = /* @__PURE__ */ __name((output, context) => {
4096
4086
  return (0, import_smithy_client.take)(output, {
4097
- DeleteRequest: (_) => de_DeleteRequest(_, context),
4098
- PutRequest: (_) => de_PutRequest(_, context)
4087
+ DeleteRequest: /* @__PURE__ */ __name((_) => de_DeleteRequest(_, context), "DeleteRequest"),
4088
+ PutRequest: /* @__PURE__ */ __name((_) => de_PutRequest(_, context), "PutRequest")
4099
4089
  });
4100
4090
  }, "de_WriteRequest");
4101
4091
  var de_WriteRequests = /* @__PURE__ */ __name((output, context) => {
@@ -4249,9 +4239,9 @@ var DynamoDBClient = class extends import_smithy_client.Client {
4249
4239
  this.middlewareStack.use(
4250
4240
  (0, import_core2.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
4251
4241
  httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultDynamoDBHttpAuthSchemeParametersProvider,
4252
- identityProviderConfigProvider: async (config) => new import_core2.DefaultIdentityProviderConfig({
4242
+ identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core2.DefaultIdentityProviderConfig({
4253
4243
  "aws.auth#sigv4": config.credentials
4254
- })
4244
+ }), "identityProviderConfigProvider")
4255
4245
  })
4256
4246
  );
4257
4247
  this.middlewareStack.use((0, import_core2.getHttpSigningPlugin)(this.config));
@@ -4288,7 +4278,10 @@ var BatchExecuteStatementCommand = class extends import_smithy_client.Command.cl
4288
4278
 
4289
4279
 
4290
4280
 
4291
- var BatchGetItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4281
+ var BatchGetItemCommand = class extends import_smithy_client.Command.classBuilder().ep({
4282
+ ...commonParams,
4283
+ ResourceArnList: { type: "operationContextParams", get: /* @__PURE__ */ __name((input) => Object.keys(input?.RequestItems ?? {}), "get") }
4284
+ }).m(function(Command, cs, config, o) {
4292
4285
  return [
4293
4286
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4294
4287
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4303,7 +4296,10 @@ var BatchGetItemCommand = class extends import_smithy_client.Command.classBuilde
4303
4296
 
4304
4297
 
4305
4298
 
4306
- var BatchWriteItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4299
+ var BatchWriteItemCommand = class extends import_smithy_client.Command.classBuilder().ep({
4300
+ ...commonParams,
4301
+ ResourceArnList: { type: "operationContextParams", get: /* @__PURE__ */ __name((input) => Object.keys(input?.RequestItems ?? {}), "get") }
4302
+ }).m(function(Command, cs, config, o) {
4307
4303
  return [
4308
4304
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4309
4305
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4318,7 +4314,10 @@ var BatchWriteItemCommand = class extends import_smithy_client.Command.classBuil
4318
4314
 
4319
4315
 
4320
4316
 
4321
- var CreateBackupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4317
+ var CreateBackupCommand = class extends import_smithy_client.Command.classBuilder().ep({
4318
+ ...commonParams,
4319
+ ResourceArn: { type: "contextParams", name: "TableName" }
4320
+ }).m(function(Command, cs, config, o) {
4322
4321
  return [
4323
4322
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4324
4323
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4333,7 +4332,10 @@ var CreateBackupCommand = class extends import_smithy_client.Command.classBuilde
4333
4332
 
4334
4333
 
4335
4334
 
4336
- var CreateGlobalTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4335
+ var CreateGlobalTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
4336
+ ...commonParams,
4337
+ ResourceArn: { type: "contextParams", name: "GlobalTableName" }
4338
+ }).m(function(Command, cs, config, o) {
4337
4339
  return [
4338
4340
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4339
4341
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4348,7 +4350,10 @@ var CreateGlobalTableCommand = class extends import_smithy_client.Command.classB
4348
4350
 
4349
4351
 
4350
4352
 
4351
- var CreateTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4353
+ var CreateTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
4354
+ ...commonParams,
4355
+ ResourceArn: { type: "contextParams", name: "TableName" }
4356
+ }).m(function(Command, cs, config, o) {
4352
4357
  return [
4353
4358
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4354
4359
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4363,7 +4368,10 @@ var CreateTableCommand = class extends import_smithy_client.Command.classBuilder
4363
4368
 
4364
4369
 
4365
4370
 
4366
- var DeleteBackupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4371
+ var DeleteBackupCommand = class extends import_smithy_client.Command.classBuilder().ep({
4372
+ ...commonParams,
4373
+ ResourceArn: { type: "contextParams", name: "BackupArn" }
4374
+ }).m(function(Command, cs, config, o) {
4367
4375
  return [
4368
4376
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4369
4377
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4378,7 +4386,10 @@ var DeleteBackupCommand = class extends import_smithy_client.Command.classBuilde
4378
4386
 
4379
4387
 
4380
4388
 
4381
- var DeleteItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4389
+ var DeleteItemCommand = class extends import_smithy_client.Command.classBuilder().ep({
4390
+ ...commonParams,
4391
+ ResourceArn: { type: "contextParams", name: "TableName" }
4392
+ }).m(function(Command, cs, config, o) {
4382
4393
  return [
4383
4394
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4384
4395
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4393,7 +4404,10 @@ var DeleteItemCommand = class extends import_smithy_client.Command.classBuilder(
4393
4404
 
4394
4405
 
4395
4406
 
4396
- var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4407
+ var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
4408
+ ...commonParams,
4409
+ ResourceArn: { type: "contextParams", name: "ResourceArn" }
4410
+ }).m(function(Command, cs, config, o) {
4397
4411
  return [
4398
4412
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4399
4413
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4408,7 +4422,10 @@ var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.cla
4408
4422
 
4409
4423
 
4410
4424
 
4411
- var DeleteTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4425
+ var DeleteTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
4426
+ ...commonParams,
4427
+ ResourceArn: { type: "contextParams", name: "TableName" }
4428
+ }).m(function(Command, cs, config, o) {
4412
4429
  return [
4413
4430
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4414
4431
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4423,7 +4440,10 @@ var DeleteTableCommand = class extends import_smithy_client.Command.classBuilder
4423
4440
 
4424
4441
 
4425
4442
 
4426
- var DescribeBackupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4443
+ var DescribeBackupCommand = class extends import_smithy_client.Command.classBuilder().ep({
4444
+ ...commonParams,
4445
+ ResourceArn: { type: "contextParams", name: "BackupArn" }
4446
+ }).m(function(Command, cs, config, o) {
4427
4447
  return [
4428
4448
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4429
4449
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4438,7 +4458,10 @@ var DescribeBackupCommand = class extends import_smithy_client.Command.classBuil
4438
4458
 
4439
4459
 
4440
4460
 
4441
- var DescribeContinuousBackupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4461
+ var DescribeContinuousBackupsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4462
+ ...commonParams,
4463
+ ResourceArn: { type: "contextParams", name: "TableName" }
4464
+ }).m(function(Command, cs, config, o) {
4442
4465
  return [
4443
4466
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4444
4467
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4453,7 +4476,10 @@ var DescribeContinuousBackupsCommand = class extends import_smithy_client.Comman
4453
4476
 
4454
4477
 
4455
4478
 
4456
- var DescribeContributorInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4479
+ var DescribeContributorInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4480
+ ...commonParams,
4481
+ ResourceArn: { type: "contextParams", name: "TableName" }
4482
+ }).m(function(Command, cs, config, o) {
4457
4483
  return [
4458
4484
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4459
4485
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4468,7 +4494,10 @@ var DescribeContributorInsightsCommand = class extends import_smithy_client.Comm
4468
4494
 
4469
4495
 
4470
4496
 
4471
- var DescribeExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4497
+ var DescribeExportCommand = class extends import_smithy_client.Command.classBuilder().ep({
4498
+ ...commonParams,
4499
+ ResourceArn: { type: "contextParams", name: "ExportArn" }
4500
+ }).m(function(Command, cs, config, o) {
4472
4501
  return [
4473
4502
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4474
4503
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4483,7 +4512,10 @@ var DescribeExportCommand = class extends import_smithy_client.Command.classBuil
4483
4512
 
4484
4513
 
4485
4514
 
4486
- var DescribeGlobalTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4515
+ var DescribeGlobalTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
4516
+ ...commonParams,
4517
+ ResourceArn: { type: "contextParams", name: "GlobalTableName" }
4518
+ }).m(function(Command, cs, config, o) {
4487
4519
  return [
4488
4520
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4489
4521
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4498,7 +4530,10 @@ var DescribeGlobalTableCommand = class extends import_smithy_client.Command.clas
4498
4530
 
4499
4531
 
4500
4532
 
4501
- var DescribeGlobalTableSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4533
+ var DescribeGlobalTableSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4534
+ ...commonParams,
4535
+ ResourceArn: { type: "contextParams", name: "GlobalTableName" }
4536
+ }).m(function(Command, cs, config, o) {
4502
4537
  return [
4503
4538
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4504
4539
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4513,7 +4548,10 @@ var DescribeGlobalTableSettingsCommand = class extends import_smithy_client.Comm
4513
4548
 
4514
4549
 
4515
4550
 
4516
- var DescribeImportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4551
+ var DescribeImportCommand = class extends import_smithy_client.Command.classBuilder().ep({
4552
+ ...commonParams,
4553
+ ResourceArn: { type: "contextParams", name: "ImportArn" }
4554
+ }).m(function(Command, cs, config, o) {
4517
4555
  return [
4518
4556
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4519
4557
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4528,7 +4566,10 @@ var DescribeImportCommand = class extends import_smithy_client.Command.classBuil
4528
4566
 
4529
4567
 
4530
4568
 
4531
- var DescribeKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4569
+ var DescribeKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep({
4570
+ ...commonParams,
4571
+ ResourceArn: { type: "contextParams", name: "TableName" }
4572
+ }).m(function(Command, cs, config, o) {
4532
4573
  return [
4533
4574
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4534
4575
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4558,7 +4599,10 @@ var DescribeLimitsCommand = class extends import_smithy_client.Command.classBuil
4558
4599
 
4559
4600
 
4560
4601
 
4561
- var DescribeTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4602
+ var DescribeTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
4603
+ ...commonParams,
4604
+ ResourceArn: { type: "contextParams", name: "TableName" }
4605
+ }).m(function(Command, cs, config, o) {
4562
4606
  return [
4563
4607
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4564
4608
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4573,7 +4617,10 @@ var DescribeTableCommand = class extends import_smithy_client.Command.classBuild
4573
4617
 
4574
4618
 
4575
4619
 
4576
- var DescribeTableReplicaAutoScalingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4620
+ var DescribeTableReplicaAutoScalingCommand = class extends import_smithy_client.Command.classBuilder().ep({
4621
+ ...commonParams,
4622
+ ResourceArn: { type: "contextParams", name: "TableName" }
4623
+ }).m(function(Command, cs, config, o) {
4577
4624
  return [
4578
4625
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4579
4626
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4588,7 +4635,10 @@ var DescribeTableReplicaAutoScalingCommand = class extends import_smithy_client.
4588
4635
 
4589
4636
 
4590
4637
 
4591
- var DescribeTimeToLiveCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4638
+ var DescribeTimeToLiveCommand = class extends import_smithy_client.Command.classBuilder().ep({
4639
+ ...commonParams,
4640
+ ResourceArn: { type: "contextParams", name: "TableName" }
4641
+ }).m(function(Command, cs, config, o) {
4592
4642
  return [
4593
4643
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4594
4644
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4603,7 +4653,10 @@ var DescribeTimeToLiveCommand = class extends import_smithy_client.Command.class
4603
4653
 
4604
4654
 
4605
4655
 
4606
- var DisableKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4656
+ var DisableKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep({
4657
+ ...commonParams,
4658
+ ResourceArn: { type: "contextParams", name: "TableName" }
4659
+ }).m(function(Command, cs, config, o) {
4607
4660
  return [
4608
4661
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4609
4662
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4618,7 +4671,10 @@ var DisableKinesisStreamingDestinationCommand = class extends import_smithy_clie
4618
4671
 
4619
4672
 
4620
4673
 
4621
- var EnableKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4674
+ var EnableKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep({
4675
+ ...commonParams,
4676
+ ResourceArn: { type: "contextParams", name: "TableName" }
4677
+ }).m(function(Command, cs, config, o) {
4622
4678
  return [
4623
4679
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4624
4680
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4663,7 +4719,10 @@ var ExecuteTransactionCommand = class extends import_smithy_client.Command.class
4663
4719
 
4664
4720
 
4665
4721
 
4666
- var ExportTableToPointInTimeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4722
+ var ExportTableToPointInTimeCommand = class extends import_smithy_client.Command.classBuilder().ep({
4723
+ ...commonParams,
4724
+ ResourceArn: { type: "contextParams", name: "TableArn" }
4725
+ }).m(function(Command, cs, config, o) {
4667
4726
  return [
4668
4727
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4669
4728
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4678,7 +4737,10 @@ var ExportTableToPointInTimeCommand = class extends import_smithy_client.Command
4678
4737
 
4679
4738
 
4680
4739
 
4681
- var GetItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4740
+ var GetItemCommand = class extends import_smithy_client.Command.classBuilder().ep({
4741
+ ...commonParams,
4742
+ ResourceArn: { type: "contextParams", name: "TableName" }
4743
+ }).m(function(Command, cs, config, o) {
4682
4744
  return [
4683
4745
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4684
4746
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4693,7 +4755,10 @@ var GetItemCommand = class extends import_smithy_client.Command.classBuilder().e
4693
4755
 
4694
4756
 
4695
4757
 
4696
- var GetResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4758
+ var GetResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
4759
+ ...commonParams,
4760
+ ResourceArn: { type: "contextParams", name: "ResourceArn" }
4761
+ }).m(function(Command, cs, config, o) {
4697
4762
  return [
4698
4763
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4699
4764
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4708,7 +4773,10 @@ var GetResourcePolicyCommand = class extends import_smithy_client.Command.classB
4708
4773
 
4709
4774
 
4710
4775
 
4711
- var ImportTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4776
+ var ImportTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
4777
+ ...commonParams,
4778
+ ResourceArn: { type: "operationContextParams", get: /* @__PURE__ */ __name((input) => input?.TableCreationParameters?.TableName, "get") }
4779
+ }).m(function(Command, cs, config, o) {
4712
4780
  return [
4713
4781
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4714
4782
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4723,7 +4791,10 @@ var ImportTableCommand = class extends import_smithy_client.Command.classBuilder
4723
4791
 
4724
4792
 
4725
4793
 
4726
- var ListBackupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4794
+ var ListBackupsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4795
+ ...commonParams,
4796
+ ResourceArn: { type: "contextParams", name: "TableName" }
4797
+ }).m(function(Command, cs, config, o) {
4727
4798
  return [
4728
4799
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4729
4800
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4738,7 +4809,10 @@ var ListBackupsCommand = class extends import_smithy_client.Command.classBuilder
4738
4809
 
4739
4810
 
4740
4811
 
4741
- var ListContributorInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4812
+ var ListContributorInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4813
+ ...commonParams,
4814
+ ResourceArn: { type: "contextParams", name: "TableName" }
4815
+ }).m(function(Command, cs, config, o) {
4742
4816
  return [
4743
4817
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4744
4818
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4753,7 +4827,10 @@ var ListContributorInsightsCommand = class extends import_smithy_client.Command.
4753
4827
 
4754
4828
 
4755
4829
 
4756
- var ListExportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4830
+ var ListExportsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4831
+ ...commonParams,
4832
+ ResourceArn: { type: "contextParams", name: "TableArn" }
4833
+ }).m(function(Command, cs, config, o) {
4757
4834
  return [
4758
4835
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4759
4836
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4783,7 +4860,10 @@ var ListGlobalTablesCommand = class extends import_smithy_client.Command.classBu
4783
4860
 
4784
4861
 
4785
4862
 
4786
- var ListImportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4863
+ var ListImportsCommand = class extends import_smithy_client.Command.classBuilder().ep({
4864
+ ...commonParams,
4865
+ ResourceArn: { type: "contextParams", name: "TableArn" }
4866
+ }).m(function(Command, cs, config, o) {
4787
4867
  return [
4788
4868
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4789
4869
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4813,7 +4893,10 @@ var ListTablesCommand = class extends import_smithy_client.Command.classBuilder(
4813
4893
 
4814
4894
 
4815
4895
 
4816
- var ListTagsOfResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4896
+ var ListTagsOfResourceCommand = class extends import_smithy_client.Command.classBuilder().ep({
4897
+ ...commonParams,
4898
+ ResourceArn: { type: "contextParams", name: "ResourceArn" }
4899
+ }).m(function(Command, cs, config, o) {
4817
4900
  return [
4818
4901
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4819
4902
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4828,7 +4911,10 @@ var ListTagsOfResourceCommand = class extends import_smithy_client.Command.class
4828
4911
 
4829
4912
 
4830
4913
 
4831
- var PutItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4914
+ var PutItemCommand = class extends import_smithy_client.Command.classBuilder().ep({
4915
+ ...commonParams,
4916
+ ResourceArn: { type: "contextParams", name: "TableName" }
4917
+ }).m(function(Command, cs, config, o) {
4832
4918
  return [
4833
4919
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4834
4920
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4843,7 +4929,10 @@ var PutItemCommand = class extends import_smithy_client.Command.classBuilder().e
4843
4929
 
4844
4930
 
4845
4931
 
4846
- var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4932
+ var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep({
4933
+ ...commonParams,
4934
+ ResourceArn: { type: "contextParams", name: "ResourceArn" }
4935
+ }).m(function(Command, cs, config, o) {
4847
4936
  return [
4848
4937
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4849
4938
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4858,7 +4947,10 @@ var PutResourcePolicyCommand = class extends import_smithy_client.Command.classB
4858
4947
 
4859
4948
 
4860
4949
 
4861
- var QueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4950
+ var QueryCommand = class extends import_smithy_client.Command.classBuilder().ep({
4951
+ ...commonParams,
4952
+ ResourceArn: { type: "contextParams", name: "TableName" }
4953
+ }).m(function(Command, cs, config, o) {
4862
4954
  return [
4863
4955
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4864
4956
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4873,7 +4965,10 @@ var QueryCommand = class extends import_smithy_client.Command.classBuilder().ep(
4873
4965
 
4874
4966
 
4875
4967
 
4876
- var RestoreTableFromBackupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4968
+ var RestoreTableFromBackupCommand = class extends import_smithy_client.Command.classBuilder().ep({
4969
+ ...commonParams,
4970
+ ResourceArn: { type: "contextParams", name: "TargetTableName" }
4971
+ }).m(function(Command, cs, config, o) {
4877
4972
  return [
4878
4973
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4879
4974
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4888,7 +4983,10 @@ var RestoreTableFromBackupCommand = class extends import_smithy_client.Command.c
4888
4983
 
4889
4984
 
4890
4985
 
4891
- var RestoreTableToPointInTimeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4986
+ var RestoreTableToPointInTimeCommand = class extends import_smithy_client.Command.classBuilder().ep({
4987
+ ...commonParams,
4988
+ ResourceArn: { type: "contextParams", name: "TargetTableName" }
4989
+ }).m(function(Command, cs, config, o) {
4892
4990
  return [
4893
4991
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4894
4992
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4903,7 +5001,10 @@ var RestoreTableToPointInTimeCommand = class extends import_smithy_client.Comman
4903
5001
 
4904
5002
 
4905
5003
 
4906
- var ScanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5004
+ var ScanCommand = class extends import_smithy_client.Command.classBuilder().ep({
5005
+ ...commonParams,
5006
+ ResourceArn: { type: "contextParams", name: "TableName" }
5007
+ }).m(function(Command, cs, config, o) {
4907
5008
  return [
4908
5009
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4909
5010
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4918,7 +5019,10 @@ var ScanCommand = class extends import_smithy_client.Command.classBuilder().ep(c
4918
5019
 
4919
5020
 
4920
5021
 
4921
- var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5022
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep({
5023
+ ...commonParams,
5024
+ ResourceArn: { type: "contextParams", name: "ResourceArn" }
5025
+ }).m(function(Command, cs, config, o) {
4922
5026
  return [
4923
5027
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4924
5028
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4933,7 +5037,13 @@ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder
4933
5037
 
4934
5038
 
4935
5039
 
4936
- var TransactGetItemsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5040
+ var TransactGetItemsCommand = class extends import_smithy_client.Command.classBuilder().ep({
5041
+ ...commonParams,
5042
+ ResourceArnList: {
5043
+ type: "operationContextParams",
5044
+ get: /* @__PURE__ */ __name((input) => input?.TransactItems?.map((obj) => obj?.Get?.TableName), "get")
5045
+ }
5046
+ }).m(function(Command, cs, config, o) {
4937
5047
  return [
4938
5048
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4939
5049
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4963,7 +5073,10 @@ var TransactWriteItemsCommand = class extends import_smithy_client.Command.class
4963
5073
 
4964
5074
 
4965
5075
 
4966
- var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5076
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep({
5077
+ ...commonParams,
5078
+ ResourceArn: { type: "contextParams", name: "ResourceArn" }
5079
+ }).m(function(Command, cs, config, o) {
4967
5080
  return [
4968
5081
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4969
5082
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4978,7 +5091,10 @@ var UntagResourceCommand = class extends import_smithy_client.Command.classBuild
4978
5091
 
4979
5092
 
4980
5093
 
4981
- var UpdateContinuousBackupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5094
+ var UpdateContinuousBackupsCommand = class extends import_smithy_client.Command.classBuilder().ep({
5095
+ ...commonParams,
5096
+ ResourceArn: { type: "contextParams", name: "TableName" }
5097
+ }).m(function(Command, cs, config, o) {
4982
5098
  return [
4983
5099
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4984
5100
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -4993,7 +5109,10 @@ var UpdateContinuousBackupsCommand = class extends import_smithy_client.Command.
4993
5109
 
4994
5110
 
4995
5111
 
4996
- var UpdateContributorInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5112
+ var UpdateContributorInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep({
5113
+ ...commonParams,
5114
+ ResourceArn: { type: "contextParams", name: "TableName" }
5115
+ }).m(function(Command, cs, config, o) {
4997
5116
  return [
4998
5117
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4999
5118
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5008,7 +5127,10 @@ var UpdateContributorInsightsCommand = class extends import_smithy_client.Comman
5008
5127
 
5009
5128
 
5010
5129
 
5011
- var UpdateGlobalTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5130
+ var UpdateGlobalTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
5131
+ ...commonParams,
5132
+ ResourceArn: { type: "contextParams", name: "GlobalTableName" }
5133
+ }).m(function(Command, cs, config, o) {
5012
5134
  return [
5013
5135
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5014
5136
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5023,7 +5145,10 @@ var UpdateGlobalTableCommand = class extends import_smithy_client.Command.classB
5023
5145
 
5024
5146
 
5025
5147
 
5026
- var UpdateGlobalTableSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5148
+ var UpdateGlobalTableSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep({
5149
+ ...commonParams,
5150
+ ResourceArn: { type: "contextParams", name: "GlobalTableName" }
5151
+ }).m(function(Command, cs, config, o) {
5027
5152
  return [
5028
5153
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5029
5154
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5038,7 +5163,10 @@ var UpdateGlobalTableSettingsCommand = class extends import_smithy_client.Comman
5038
5163
 
5039
5164
 
5040
5165
 
5041
- var UpdateItemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5166
+ var UpdateItemCommand = class extends import_smithy_client.Command.classBuilder().ep({
5167
+ ...commonParams,
5168
+ ResourceArn: { type: "contextParams", name: "TableName" }
5169
+ }).m(function(Command, cs, config, o) {
5042
5170
  return [
5043
5171
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5044
5172
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5053,7 +5181,10 @@ var UpdateItemCommand = class extends import_smithy_client.Command.classBuilder(
5053
5181
 
5054
5182
 
5055
5183
 
5056
- var UpdateKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5184
+ var UpdateKinesisStreamingDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep({
5185
+ ...commonParams,
5186
+ ResourceArn: { type: "contextParams", name: "TableName" }
5187
+ }).m(function(Command, cs, config, o) {
5057
5188
  return [
5058
5189
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5059
5190
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5068,7 +5199,10 @@ var UpdateKinesisStreamingDestinationCommand = class extends import_smithy_clien
5068
5199
 
5069
5200
 
5070
5201
 
5071
- var UpdateTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5202
+ var UpdateTableCommand = class extends import_smithy_client.Command.classBuilder().ep({
5203
+ ...commonParams,
5204
+ ResourceArn: { type: "contextParams", name: "TableName" }
5205
+ }).m(function(Command, cs, config, o) {
5072
5206
  return [
5073
5207
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5074
5208
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5083,7 +5217,10 @@ var UpdateTableCommand = class extends import_smithy_client.Command.classBuilder
5083
5217
 
5084
5218
 
5085
5219
 
5086
- var UpdateTableReplicaAutoScalingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5220
+ var UpdateTableReplicaAutoScalingCommand = class extends import_smithy_client.Command.classBuilder().ep({
5221
+ ...commonParams,
5222
+ ResourceArn: { type: "contextParams", name: "TableName" }
5223
+ }).m(function(Command, cs, config, o) {
5087
5224
  return [
5088
5225
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5089
5226
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -5098,7 +5235,10 @@ var UpdateTableReplicaAutoScalingCommand = class extends import_smithy_client.Co
5098
5235
 
5099
5236
 
5100
5237
 
5101
- var UpdateTimeToLiveCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5238
+ var UpdateTimeToLiveCommand = class extends import_smithy_client.Command.classBuilder().ep({
5239
+ ...commonParams,
5240
+ ResourceArn: { type: "contextParams", name: "TableName" }
5241
+ }).m(function(Command, cs, config, o) {
5102
5242
  return [
5103
5243
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5104
5244
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())