@aws-sdk/client-ivs 3.169.0 → 3.170.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 (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Ivs.d.ts +508 -145
  3. package/dist-types/ts3.4/IvsClient.d.ts +296 -101
  4. package/dist-types/ts3.4/commands/BatchGetChannelCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/BatchGetStreamKeyCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateRecordingConfigurationCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateStreamKeyCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeletePlaybackKeyPairCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteRecordingConfigurationCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteStreamKeyCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetPlaybackKeyPairCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetRecordingConfigurationCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/GetStreamKeyCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ImportPlaybackKeyPairCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListPlaybackKeyPairsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListRecordingConfigurationsCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/ListStreamKeysCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/PutMetadataCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/StopStreamCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/IvsServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +868 -789
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  39. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListPlaybackKeyPairsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListRecordingConfigurationsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListStreamKeysPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListStreamsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  51. package/package.json +34 -34
@@ -1,6 +1,6 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Ivs } from "../Ivs";
3
- import { IvsClient } from "../IvsClient";
4
- export interface IvsPaginationConfiguration extends PaginationConfiguration {
5
- client: Ivs | IvsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Ivs } from "../Ivs";
3
+ import { IvsClient } from "../IvsClient";
4
+ export interface IvsPaginationConfiguration extends PaginationConfiguration {
5
+ client: Ivs | IvsClient;
6
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
3
- import { IvsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListChannels(config: IvsPaginationConfiguration, input: ListChannelsCommandInput, ...additionalArguments: any): Paginator<ListChannelsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListChannelsCommandInput,
4
+ ListChannelsCommandOutput,
5
+ } from "../commands/ListChannelsCommand";
6
+ import { IvsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListChannels(
8
+ config: IvsPaginationConfiguration,
9
+ input: ListChannelsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListChannelsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPlaybackKeyPairsCommandInput, ListPlaybackKeyPairsCommandOutput } from "../commands/ListPlaybackKeyPairsCommand";
3
- import { IvsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPlaybackKeyPairs(config: IvsPaginationConfiguration, input: ListPlaybackKeyPairsCommandInput, ...additionalArguments: any): Paginator<ListPlaybackKeyPairsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPlaybackKeyPairsCommandInput,
4
+ ListPlaybackKeyPairsCommandOutput,
5
+ } from "../commands/ListPlaybackKeyPairsCommand";
6
+ import { IvsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPlaybackKeyPairs(
8
+ config: IvsPaginationConfiguration,
9
+ input: ListPlaybackKeyPairsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPlaybackKeyPairsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListRecordingConfigurationsCommandInput, ListRecordingConfigurationsCommandOutput } from "../commands/ListRecordingConfigurationsCommand";
3
- import { IvsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListRecordingConfigurations(config: IvsPaginationConfiguration, input: ListRecordingConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListRecordingConfigurationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListRecordingConfigurationsCommandInput,
4
+ ListRecordingConfigurationsCommandOutput,
5
+ } from "../commands/ListRecordingConfigurationsCommand";
6
+ import { IvsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRecordingConfigurations(
8
+ config: IvsPaginationConfiguration,
9
+ input: ListRecordingConfigurationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRecordingConfigurationsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListStreamKeysCommandInput, ListStreamKeysCommandOutput } from "../commands/ListStreamKeysCommand";
3
- import { IvsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListStreamKeys(config: IvsPaginationConfiguration, input: ListStreamKeysCommandInput, ...additionalArguments: any): Paginator<ListStreamKeysCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListStreamKeysCommandInput,
4
+ ListStreamKeysCommandOutput,
5
+ } from "../commands/ListStreamKeysCommand";
6
+ import { IvsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListStreamKeys(
8
+ config: IvsPaginationConfiguration,
9
+ input: ListStreamKeysCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListStreamKeysCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
3
- import { IvsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListStreamSessions(config: IvsPaginationConfiguration, input: ListStreamSessionsCommandInput, ...additionalArguments: any): Paginator<ListStreamSessionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListStreamSessionsCommandInput,
4
+ ListStreamSessionsCommandOutput,
5
+ } from "../commands/ListStreamSessionsCommand";
6
+ import { IvsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListStreamSessions(
8
+ config: IvsPaginationConfiguration,
9
+ input: ListStreamSessionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListStreamSessionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand";
3
- import { IvsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListStreams(config: IvsPaginationConfiguration, input: ListStreamsCommandInput, ...additionalArguments: any): Paginator<ListStreamsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListStreamsCommandInput,
4
+ ListStreamsCommandOutput,
5
+ } from "../commands/ListStreamsCommand";
6
+ import { IvsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListStreams(
8
+ config: IvsPaginationConfiguration,
9
+ input: ListStreamsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListStreamsCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./Interfaces";
2
- export * from "./ListChannelsPaginator";
3
- export * from "./ListPlaybackKeyPairsPaginator";
4
- export * from "./ListRecordingConfigurationsPaginator";
5
- export * from "./ListStreamKeysPaginator";
6
- export * from "./ListStreamSessionsPaginator";
7
- export * from "./ListStreamsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListChannelsPaginator";
3
+ export * from "./ListPlaybackKeyPairsPaginator";
4
+ export * from "./ListRecordingConfigurationsPaginator";
5
+ export * from "./ListStreamKeysPaginator";
6
+ export * from "./ListStreamSessionsPaginator";
7
+ export * from "./ListStreamsPaginator";
@@ -1,86 +1,341 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { BatchGetChannelCommandInput, BatchGetChannelCommandOutput } from "../commands/BatchGetChannelCommand";
4
- import { BatchGetStreamKeyCommandInput, BatchGetStreamKeyCommandOutput } from "../commands/BatchGetStreamKeyCommand";
5
- import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
6
- import { CreateRecordingConfigurationCommandInput, CreateRecordingConfigurationCommandOutput } from "../commands/CreateRecordingConfigurationCommand";
7
- import { CreateStreamKeyCommandInput, CreateStreamKeyCommandOutput } from "../commands/CreateStreamKeyCommand";
8
- import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
9
- import { DeletePlaybackKeyPairCommandInput, DeletePlaybackKeyPairCommandOutput } from "../commands/DeletePlaybackKeyPairCommand";
10
- import { DeleteRecordingConfigurationCommandInput, DeleteRecordingConfigurationCommandOutput } from "../commands/DeleteRecordingConfigurationCommand";
11
- import { DeleteStreamKeyCommandInput, DeleteStreamKeyCommandOutput } from "../commands/DeleteStreamKeyCommand";
12
- import { GetChannelCommandInput, GetChannelCommandOutput } from "../commands/GetChannelCommand";
13
- import { GetPlaybackKeyPairCommandInput, GetPlaybackKeyPairCommandOutput } from "../commands/GetPlaybackKeyPairCommand";
14
- import { GetRecordingConfigurationCommandInput, GetRecordingConfigurationCommandOutput } from "../commands/GetRecordingConfigurationCommand";
15
- import { GetStreamCommandInput, GetStreamCommandOutput } from "../commands/GetStreamCommand";
16
- import { GetStreamKeyCommandInput, GetStreamKeyCommandOutput } from "../commands/GetStreamKeyCommand";
17
- import { GetStreamSessionCommandInput, GetStreamSessionCommandOutput } from "../commands/GetStreamSessionCommand";
18
- import { ImportPlaybackKeyPairCommandInput, ImportPlaybackKeyPairCommandOutput } from "../commands/ImportPlaybackKeyPairCommand";
19
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
20
- import { ListPlaybackKeyPairsCommandInput, ListPlaybackKeyPairsCommandOutput } from "../commands/ListPlaybackKeyPairsCommand";
21
- import { ListRecordingConfigurationsCommandInput, ListRecordingConfigurationsCommandOutput } from "../commands/ListRecordingConfigurationsCommand";
22
- import { ListStreamKeysCommandInput, ListStreamKeysCommandOutput } from "../commands/ListStreamKeysCommand";
23
- import { ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand";
24
- import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "../commands/ListStreamSessionsCommand";
25
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
26
- import { PutMetadataCommandInput, PutMetadataCommandOutput } from "../commands/PutMetadataCommand";
27
- import { StopStreamCommandInput, StopStreamCommandOutput } from "../commands/StopStreamCommand";
28
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
29
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
30
- import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
31
- export declare const serializeAws_restJson1BatchGetChannelCommand: (input: BatchGetChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1BatchGetStreamKeyCommand: (input: BatchGetStreamKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1CreateRecordingConfigurationCommand: (input: CreateRecordingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1CreateStreamKeyCommand: (input: CreateStreamKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DeletePlaybackKeyPairCommand: (input: DeletePlaybackKeyPairCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DeleteRecordingConfigurationCommand: (input: DeleteRecordingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DeleteStreamKeyCommand: (input: DeleteStreamKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetChannelCommand: (input: GetChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetPlaybackKeyPairCommand: (input: GetPlaybackKeyPairCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GetRecordingConfigurationCommand: (input: GetRecordingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1GetStreamCommand: (input: GetStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1GetStreamKeyCommand: (input: GetStreamKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1GetStreamSessionCommand: (input: GetStreamSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ImportPlaybackKeyPairCommand: (input: ImportPlaybackKeyPairCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ListPlaybackKeyPairsCommand: (input: ListPlaybackKeyPairsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1ListRecordingConfigurationsCommand: (input: ListRecordingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1ListStreamKeysCommand: (input: ListStreamKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1ListStreamsCommand: (input: ListStreamsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1ListStreamSessionsCommand: (input: ListStreamSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1PutMetadataCommand: (input: PutMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1StopStreamCommand: (input: StopStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const deserializeAws_restJson1BatchGetChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetChannelCommandOutput>;
60
- export declare const deserializeAws_restJson1BatchGetStreamKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetStreamKeyCommandOutput>;
61
- export declare const deserializeAws_restJson1CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
62
- export declare const deserializeAws_restJson1CreateRecordingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRecordingConfigurationCommandOutput>;
63
- export declare const deserializeAws_restJson1CreateStreamKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStreamKeyCommandOutput>;
64
- export declare const deserializeAws_restJson1DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
65
- export declare const deserializeAws_restJson1DeletePlaybackKeyPairCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePlaybackKeyPairCommandOutput>;
66
- export declare const deserializeAws_restJson1DeleteRecordingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRecordingConfigurationCommandOutput>;
67
- export declare const deserializeAws_restJson1DeleteStreamKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStreamKeyCommandOutput>;
68
- export declare const deserializeAws_restJson1GetChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelCommandOutput>;
69
- export declare const deserializeAws_restJson1GetPlaybackKeyPairCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPlaybackKeyPairCommandOutput>;
70
- export declare const deserializeAws_restJson1GetRecordingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecordingConfigurationCommandOutput>;
71
- export declare const deserializeAws_restJson1GetStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamCommandOutput>;
72
- export declare const deserializeAws_restJson1GetStreamKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamKeyCommandOutput>;
73
- export declare const deserializeAws_restJson1GetStreamSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStreamSessionCommandOutput>;
74
- export declare const deserializeAws_restJson1ImportPlaybackKeyPairCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportPlaybackKeyPairCommandOutput>;
75
- export declare const deserializeAws_restJson1ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
76
- export declare const deserializeAws_restJson1ListPlaybackKeyPairsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPlaybackKeyPairsCommandOutput>;
77
- export declare const deserializeAws_restJson1ListRecordingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecordingConfigurationsCommandOutput>;
78
- export declare const deserializeAws_restJson1ListStreamKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamKeysCommandOutput>;
79
- export declare const deserializeAws_restJson1ListStreamsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamsCommandOutput>;
80
- export declare const deserializeAws_restJson1ListStreamSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStreamSessionsCommandOutput>;
81
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
82
- export declare const deserializeAws_restJson1PutMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMetadataCommandOutput>;
83
- export declare const deserializeAws_restJson1StopStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopStreamCommandOutput>;
84
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
85
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
86
- export declare const deserializeAws_restJson1UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ BatchGetChannelCommandInput,
8
+ BatchGetChannelCommandOutput,
9
+ } from "../commands/BatchGetChannelCommand";
10
+ import {
11
+ BatchGetStreamKeyCommandInput,
12
+ BatchGetStreamKeyCommandOutput,
13
+ } from "../commands/BatchGetStreamKeyCommand";
14
+ import {
15
+ CreateChannelCommandInput,
16
+ CreateChannelCommandOutput,
17
+ } from "../commands/CreateChannelCommand";
18
+ import {
19
+ CreateRecordingConfigurationCommandInput,
20
+ CreateRecordingConfigurationCommandOutput,
21
+ } from "../commands/CreateRecordingConfigurationCommand";
22
+ import {
23
+ CreateStreamKeyCommandInput,
24
+ CreateStreamKeyCommandOutput,
25
+ } from "../commands/CreateStreamKeyCommand";
26
+ import {
27
+ DeleteChannelCommandInput,
28
+ DeleteChannelCommandOutput,
29
+ } from "../commands/DeleteChannelCommand";
30
+ import {
31
+ DeletePlaybackKeyPairCommandInput,
32
+ DeletePlaybackKeyPairCommandOutput,
33
+ } from "../commands/DeletePlaybackKeyPairCommand";
34
+ import {
35
+ DeleteRecordingConfigurationCommandInput,
36
+ DeleteRecordingConfigurationCommandOutput,
37
+ } from "../commands/DeleteRecordingConfigurationCommand";
38
+ import {
39
+ DeleteStreamKeyCommandInput,
40
+ DeleteStreamKeyCommandOutput,
41
+ } from "../commands/DeleteStreamKeyCommand";
42
+ import {
43
+ GetChannelCommandInput,
44
+ GetChannelCommandOutput,
45
+ } from "../commands/GetChannelCommand";
46
+ import {
47
+ GetPlaybackKeyPairCommandInput,
48
+ GetPlaybackKeyPairCommandOutput,
49
+ } from "../commands/GetPlaybackKeyPairCommand";
50
+ import {
51
+ GetRecordingConfigurationCommandInput,
52
+ GetRecordingConfigurationCommandOutput,
53
+ } from "../commands/GetRecordingConfigurationCommand";
54
+ import {
55
+ GetStreamCommandInput,
56
+ GetStreamCommandOutput,
57
+ } from "../commands/GetStreamCommand";
58
+ import {
59
+ GetStreamKeyCommandInput,
60
+ GetStreamKeyCommandOutput,
61
+ } from "../commands/GetStreamKeyCommand";
62
+ import {
63
+ GetStreamSessionCommandInput,
64
+ GetStreamSessionCommandOutput,
65
+ } from "../commands/GetStreamSessionCommand";
66
+ import {
67
+ ImportPlaybackKeyPairCommandInput,
68
+ ImportPlaybackKeyPairCommandOutput,
69
+ } from "../commands/ImportPlaybackKeyPairCommand";
70
+ import {
71
+ ListChannelsCommandInput,
72
+ ListChannelsCommandOutput,
73
+ } from "../commands/ListChannelsCommand";
74
+ import {
75
+ ListPlaybackKeyPairsCommandInput,
76
+ ListPlaybackKeyPairsCommandOutput,
77
+ } from "../commands/ListPlaybackKeyPairsCommand";
78
+ import {
79
+ ListRecordingConfigurationsCommandInput,
80
+ ListRecordingConfigurationsCommandOutput,
81
+ } from "../commands/ListRecordingConfigurationsCommand";
82
+ import {
83
+ ListStreamKeysCommandInput,
84
+ ListStreamKeysCommandOutput,
85
+ } from "../commands/ListStreamKeysCommand";
86
+ import {
87
+ ListStreamsCommandInput,
88
+ ListStreamsCommandOutput,
89
+ } from "../commands/ListStreamsCommand";
90
+ import {
91
+ ListStreamSessionsCommandInput,
92
+ ListStreamSessionsCommandOutput,
93
+ } from "../commands/ListStreamSessionsCommand";
94
+ import {
95
+ ListTagsForResourceCommandInput,
96
+ ListTagsForResourceCommandOutput,
97
+ } from "../commands/ListTagsForResourceCommand";
98
+ import {
99
+ PutMetadataCommandInput,
100
+ PutMetadataCommandOutput,
101
+ } from "../commands/PutMetadataCommand";
102
+ import {
103
+ StopStreamCommandInput,
104
+ StopStreamCommandOutput,
105
+ } from "../commands/StopStreamCommand";
106
+ import {
107
+ TagResourceCommandInput,
108
+ TagResourceCommandOutput,
109
+ } from "../commands/TagResourceCommand";
110
+ import {
111
+ UntagResourceCommandInput,
112
+ UntagResourceCommandOutput,
113
+ } from "../commands/UntagResourceCommand";
114
+ import {
115
+ UpdateChannelCommandInput,
116
+ UpdateChannelCommandOutput,
117
+ } from "../commands/UpdateChannelCommand";
118
+ export declare const serializeAws_restJson1BatchGetChannelCommand: (
119
+ input: BatchGetChannelCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1BatchGetStreamKeyCommand: (
123
+ input: BatchGetStreamKeyCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1CreateChannelCommand: (
127
+ input: CreateChannelCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1CreateRecordingConfigurationCommand: (
131
+ input: CreateRecordingConfigurationCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1CreateStreamKeyCommand: (
135
+ input: CreateStreamKeyCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1DeleteChannelCommand: (
139
+ input: DeleteChannelCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1DeletePlaybackKeyPairCommand: (
143
+ input: DeletePlaybackKeyPairCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DeleteRecordingConfigurationCommand: (
147
+ input: DeleteRecordingConfigurationCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DeleteStreamKeyCommand: (
151
+ input: DeleteStreamKeyCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1GetChannelCommand: (
155
+ input: GetChannelCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1GetPlaybackKeyPairCommand: (
159
+ input: GetPlaybackKeyPairCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1GetRecordingConfigurationCommand: (
163
+ input: GetRecordingConfigurationCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1GetStreamCommand: (
167
+ input: GetStreamCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1GetStreamKeyCommand: (
171
+ input: GetStreamKeyCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1GetStreamSessionCommand: (
175
+ input: GetStreamSessionCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ImportPlaybackKeyPairCommand: (
179
+ input: ImportPlaybackKeyPairCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListChannelsCommand: (
183
+ input: ListChannelsCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1ListPlaybackKeyPairsCommand: (
187
+ input: ListPlaybackKeyPairsCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1ListRecordingConfigurationsCommand: (
191
+ input: ListRecordingConfigurationsCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1ListStreamKeysCommand: (
195
+ input: ListStreamKeysCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1ListStreamsCommand: (
199
+ input: ListStreamsCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1ListStreamSessionsCommand: (
203
+ input: ListStreamSessionsCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
207
+ input: ListTagsForResourceCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1PutMetadataCommand: (
211
+ input: PutMetadataCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1StopStreamCommand: (
215
+ input: StopStreamCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1TagResourceCommand: (
219
+ input: TagResourceCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1UntagResourceCommand: (
223
+ input: UntagResourceCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1UpdateChannelCommand: (
227
+ input: UpdateChannelCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const deserializeAws_restJson1BatchGetChannelCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<BatchGetChannelCommandOutput>;
234
+ export declare const deserializeAws_restJson1BatchGetStreamKeyCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<BatchGetStreamKeyCommandOutput>;
238
+ export declare const deserializeAws_restJson1CreateChannelCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<CreateChannelCommandOutput>;
242
+ export declare const deserializeAws_restJson1CreateRecordingConfigurationCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<CreateRecordingConfigurationCommandOutput>;
246
+ export declare const deserializeAws_restJson1CreateStreamKeyCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<CreateStreamKeyCommandOutput>;
250
+ export declare const deserializeAws_restJson1DeleteChannelCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<DeleteChannelCommandOutput>;
254
+ export declare const deserializeAws_restJson1DeletePlaybackKeyPairCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<DeletePlaybackKeyPairCommandOutput>;
258
+ export declare const deserializeAws_restJson1DeleteRecordingConfigurationCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<DeleteRecordingConfigurationCommandOutput>;
262
+ export declare const deserializeAws_restJson1DeleteStreamKeyCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<DeleteStreamKeyCommandOutput>;
266
+ export declare const deserializeAws_restJson1GetChannelCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<GetChannelCommandOutput>;
270
+ export declare const deserializeAws_restJson1GetPlaybackKeyPairCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<GetPlaybackKeyPairCommandOutput>;
274
+ export declare const deserializeAws_restJson1GetRecordingConfigurationCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<GetRecordingConfigurationCommandOutput>;
278
+ export declare const deserializeAws_restJson1GetStreamCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<GetStreamCommandOutput>;
282
+ export declare const deserializeAws_restJson1GetStreamKeyCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<GetStreamKeyCommandOutput>;
286
+ export declare const deserializeAws_restJson1GetStreamSessionCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<GetStreamSessionCommandOutput>;
290
+ export declare const deserializeAws_restJson1ImportPlaybackKeyPairCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ImportPlaybackKeyPairCommandOutput>;
294
+ export declare const deserializeAws_restJson1ListChannelsCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListChannelsCommandOutput>;
298
+ export declare const deserializeAws_restJson1ListPlaybackKeyPairsCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListPlaybackKeyPairsCommandOutput>;
302
+ export declare const deserializeAws_restJson1ListRecordingConfigurationsCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListRecordingConfigurationsCommandOutput>;
306
+ export declare const deserializeAws_restJson1ListStreamKeysCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<ListStreamKeysCommandOutput>;
310
+ export declare const deserializeAws_restJson1ListStreamsCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<ListStreamsCommandOutput>;
314
+ export declare const deserializeAws_restJson1ListStreamSessionsCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<ListStreamSessionsCommandOutput>;
318
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<ListTagsForResourceCommandOutput>;
322
+ export declare const deserializeAws_restJson1PutMetadataCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<PutMetadataCommandOutput>;
326
+ export declare const deserializeAws_restJson1StopStreamCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<StopStreamCommandOutput>;
330
+ export declare const deserializeAws_restJson1TagResourceCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<TagResourceCommandOutput>;
334
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<UntagResourceCommandOutput>;
338
+ export declare const deserializeAws_restJson1UpdateChannelCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<UpdateChannelCommandOutput>;