@aws-sdk/client-ivs 3.414.0 → 3.421.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 (62) hide show
  1. package/README.md +7 -7
  2. package/dist-cjs/commands/BatchGetChannelCommand.js +5 -0
  3. package/dist-cjs/commands/BatchGetStreamKeyCommand.js +5 -0
  4. package/dist-cjs/commands/BatchStartViewerSessionRevocationCommand.js +5 -0
  5. package/dist-cjs/commands/CreateChannelCommand.js +5 -0
  6. package/dist-cjs/commands/CreateRecordingConfigurationCommand.js +5 -0
  7. package/dist-cjs/commands/CreateStreamKeyCommand.js +5 -0
  8. package/dist-cjs/commands/DeleteChannelCommand.js +5 -0
  9. package/dist-cjs/commands/DeletePlaybackKeyPairCommand.js +5 -0
  10. package/dist-cjs/commands/DeleteRecordingConfigurationCommand.js +5 -0
  11. package/dist-cjs/commands/DeleteStreamKeyCommand.js +5 -0
  12. package/dist-cjs/commands/GetChannelCommand.js +5 -0
  13. package/dist-cjs/commands/GetPlaybackKeyPairCommand.js +5 -0
  14. package/dist-cjs/commands/GetRecordingConfigurationCommand.js +5 -0
  15. package/dist-cjs/commands/GetStreamCommand.js +5 -0
  16. package/dist-cjs/commands/GetStreamKeyCommand.js +5 -0
  17. package/dist-cjs/commands/GetStreamSessionCommand.js +5 -0
  18. package/dist-cjs/commands/ImportPlaybackKeyPairCommand.js +5 -0
  19. package/dist-cjs/commands/ListChannelsCommand.js +5 -0
  20. package/dist-cjs/commands/ListPlaybackKeyPairsCommand.js +5 -0
  21. package/dist-cjs/commands/ListRecordingConfigurationsCommand.js +5 -0
  22. package/dist-cjs/commands/ListStreamKeysCommand.js +5 -0
  23. package/dist-cjs/commands/ListStreamSessionsCommand.js +5 -0
  24. package/dist-cjs/commands/ListStreamsCommand.js +5 -0
  25. package/dist-cjs/commands/ListTagsForResourceCommand.js +5 -0
  26. package/dist-cjs/commands/PutMetadataCommand.js +5 -0
  27. package/dist-cjs/commands/StartViewerSessionRevocationCommand.js +5 -0
  28. package/dist-cjs/commands/StopStreamCommand.js +5 -0
  29. package/dist-cjs/commands/TagResourceCommand.js +5 -0
  30. package/dist-cjs/commands/UntagResourceCommand.js +5 -0
  31. package/dist-cjs/commands/UpdateChannelCommand.js +5 -0
  32. package/dist-es/commands/BatchGetChannelCommand.js +5 -0
  33. package/dist-es/commands/BatchGetStreamKeyCommand.js +5 -0
  34. package/dist-es/commands/BatchStartViewerSessionRevocationCommand.js +5 -0
  35. package/dist-es/commands/CreateChannelCommand.js +5 -0
  36. package/dist-es/commands/CreateRecordingConfigurationCommand.js +5 -0
  37. package/dist-es/commands/CreateStreamKeyCommand.js +5 -0
  38. package/dist-es/commands/DeleteChannelCommand.js +5 -0
  39. package/dist-es/commands/DeletePlaybackKeyPairCommand.js +5 -0
  40. package/dist-es/commands/DeleteRecordingConfigurationCommand.js +5 -0
  41. package/dist-es/commands/DeleteStreamKeyCommand.js +5 -0
  42. package/dist-es/commands/GetChannelCommand.js +5 -0
  43. package/dist-es/commands/GetPlaybackKeyPairCommand.js +5 -0
  44. package/dist-es/commands/GetRecordingConfigurationCommand.js +5 -0
  45. package/dist-es/commands/GetStreamCommand.js +5 -0
  46. package/dist-es/commands/GetStreamKeyCommand.js +5 -0
  47. package/dist-es/commands/GetStreamSessionCommand.js +5 -0
  48. package/dist-es/commands/ImportPlaybackKeyPairCommand.js +5 -0
  49. package/dist-es/commands/ListChannelsCommand.js +5 -0
  50. package/dist-es/commands/ListPlaybackKeyPairsCommand.js +5 -0
  51. package/dist-es/commands/ListRecordingConfigurationsCommand.js +5 -0
  52. package/dist-es/commands/ListStreamKeysCommand.js +5 -0
  53. package/dist-es/commands/ListStreamSessionsCommand.js +5 -0
  54. package/dist-es/commands/ListStreamsCommand.js +5 -0
  55. package/dist-es/commands/ListTagsForResourceCommand.js +5 -0
  56. package/dist-es/commands/PutMetadataCommand.js +5 -0
  57. package/dist-es/commands/StartViewerSessionRevocationCommand.js +5 -0
  58. package/dist-es/commands/StopStreamCommand.js +5 -0
  59. package/dist-es/commands/TagResourceCommand.js +5 -0
  60. package/dist-es/commands/UntagResourceCommand.js +5 -0
  61. package/dist-es/commands/UpdateChannelCommand.js +5 -0
  62. package/package.json +31 -31
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
10
  class UpdateChannelCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class UpdateChannelCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AmazonInteractiveVideoService",
38
+ operation: "UpdateChannel",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_BatchGetChannelCommand, se_BatchGetChannelCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class BatchGetChannelCommand extends $Command {
@@ -29,6 +30,10 @@ export class BatchGetChannelCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "BatchGetChannel",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { BatchGetStreamKeyResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_BatchGetStreamKeyCommand, se_BatchGetStreamKeyCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class BatchGetStreamKeyCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: BatchGetStreamKeyResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AmazonInteractiveVideoService",
36
+ operation: "BatchGetStreamKey",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_BatchStartViewerSessionRevocationCommand, se_BatchStartViewerSessionRevocationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class BatchStartViewerSessionRevocationCommand extends $Command {
@@ -29,6 +30,10 @@ export class BatchStartViewerSessionRevocationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "BatchStartViewerSessionRevocation",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreateChannelResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreateChannelCommand, se_CreateChannelCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreateChannelCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: CreateChannelResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AmazonInteractiveVideoService",
36
+ operation: "CreateChannel",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreateRecordingConfigurationCommand, se_CreateRecordingConfigurationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateRecordingConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateRecordingConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "CreateRecordingConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreateStreamKeyResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreateStreamKeyCommand, se_CreateStreamKeyCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreateStreamKeyCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: CreateStreamKeyResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AmazonInteractiveVideoService",
36
+ operation: "CreateStreamKey",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteChannelCommand, se_DeleteChannelCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteChannelCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteChannelCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "DeleteChannel",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeletePlaybackKeyPairCommand, se_DeletePlaybackKeyPairCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeletePlaybackKeyPairCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeletePlaybackKeyPairCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "DeletePlaybackKeyPair",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteRecordingConfigurationCommand, se_DeleteRecordingConfigurationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteRecordingConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteRecordingConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "DeleteRecordingConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteStreamKeyCommand, se_DeleteStreamKeyCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteStreamKeyCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteStreamKeyCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "DeleteStreamKey",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetChannelCommand, se_GetChannelCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetChannelCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetChannelCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "GetChannel",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetPlaybackKeyPairCommand, se_GetPlaybackKeyPairCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetPlaybackKeyPairCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetPlaybackKeyPairCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "GetPlaybackKeyPair",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetRecordingConfigurationCommand, se_GetRecordingConfigurationCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetRecordingConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetRecordingConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "GetRecordingConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetStreamCommand, se_GetStreamCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetStreamCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetStreamCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "GetStream",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetStreamKeyResponseFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_GetStreamKeyCommand, se_GetStreamKeyCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetStreamKeyCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetStreamKeyResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AmazonInteractiveVideoService",
36
+ operation: "GetStreamKey",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetStreamSessionCommand, se_GetStreamSessionCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetStreamSessionCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetStreamSessionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "GetStreamSession",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ImportPlaybackKeyPairCommand, se_ImportPlaybackKeyPairCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ImportPlaybackKeyPairCommand extends $Command {
@@ -29,6 +30,10 @@ export class ImportPlaybackKeyPairCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ImportPlaybackKeyPair",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListChannelsCommand, se_ListChannelsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListChannelsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListChannelsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListChannels",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListPlaybackKeyPairsCommand, se_ListPlaybackKeyPairsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListPlaybackKeyPairsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListPlaybackKeyPairsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListPlaybackKeyPairs",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListRecordingConfigurationsCommand, se_ListRecordingConfigurationsCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListRecordingConfigurationsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListRecordingConfigurationsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListRecordingConfigurations",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListStreamKeysCommand, se_ListStreamKeysCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListStreamKeysCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListStreamKeysCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListStreamKeys",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListStreamSessionsCommand, se_ListStreamSessionsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListStreamSessionsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListStreamSessionsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListStreamSessions",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListStreamsCommand, se_ListStreamsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListStreamsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListStreamsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListStreams",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListTagsForResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListTagsForResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "ListTagsForResource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { PutMetadataRequestFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_PutMetadataCommand, se_PutMetadataCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class PutMetadataCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: PutMetadataRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AmazonInteractiveVideoService",
36
+ operation: "PutMetadata",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_StartViewerSessionRevocationCommand, se_StartViewerSessionRevocationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class StartViewerSessionRevocationCommand extends $Command {
@@ -29,6 +30,10 @@ export class StartViewerSessionRevocationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "StartViewerSessionRevocation",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_StopStreamCommand, se_StopStreamCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class StopStreamCommand extends $Command {
@@ -29,6 +30,10 @@ export class StopStreamCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "StopStream",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class TagResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class TagResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "TagResource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UntagResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class UntagResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "UntagResource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UpdateChannelCommand, se_UpdateChannelCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateChannelCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateChannelCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AmazonInteractiveVideoService",
35
+ operation: "UpdateChannel",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);