@aws-sdk/client-athena 3.315.0 → 3.319.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.
@@ -2630,7 +2630,7 @@ const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
2630
2630
  };
2631
2631
  const se_CreateNamedQueryInput = (input, context) => {
2632
2632
  return take(input, {
2633
- ClientRequestToken: (_) => _ ?? generateIdempotencyToken(),
2633
+ ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
2634
2634
  Database: [],
2635
2635
  Description: [],
2636
2636
  Name: [],
@@ -2640,12 +2640,12 @@ const se_CreateNamedQueryInput = (input, context) => {
2640
2640
  };
2641
2641
  const se_DeleteNamedQueryInput = (input, context) => {
2642
2642
  return take(input, {
2643
- NamedQueryId: (_) => _ ?? generateIdempotencyToken(),
2643
+ NamedQueryId: [true, (_) => _ ?? generateIdempotencyToken()],
2644
2644
  });
2645
2645
  };
2646
2646
  const se_StartQueryExecutionInput = (input, context) => {
2647
2647
  return take(input, {
2648
- ClientRequestToken: (_) => _ ?? generateIdempotencyToken(),
2648
+ ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
2649
2649
  ExecutionParameters: _json,
2650
2650
  QueryExecutionContext: _json,
2651
2651
  QueryString: [],
@@ -2656,7 +2656,7 @@ const se_StartQueryExecutionInput = (input, context) => {
2656
2656
  };
2657
2657
  const se_StopQueryExecutionInput = (input, context) => {
2658
2658
  return take(input, {
2659
- QueryExecutionId: (_) => _ ?? generateIdempotencyToken(),
2659
+ QueryExecutionId: [true, (_) => _ ?? generateIdempotencyToken()],
2660
2660
  });
2661
2661
  };
2662
2662
  const de_BatchGetPreparedStatementOutput = (output, context) => {