@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,145 +1,508 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { BatchGetChannelCommandInput, BatchGetChannelCommandOutput } from "./commands/BatchGetChannelCommand";
3
- import { BatchGetStreamKeyCommandInput, BatchGetStreamKeyCommandOutput } from "./commands/BatchGetStreamKeyCommand";
4
- import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
5
- import { CreateRecordingConfigurationCommandInput, CreateRecordingConfigurationCommandOutput } from "./commands/CreateRecordingConfigurationCommand";
6
- import { CreateStreamKeyCommandInput, CreateStreamKeyCommandOutput } from "./commands/CreateStreamKeyCommand";
7
- import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "./commands/DeleteChannelCommand";
8
- import { DeletePlaybackKeyPairCommandInput, DeletePlaybackKeyPairCommandOutput } from "./commands/DeletePlaybackKeyPairCommand";
9
- import { DeleteRecordingConfigurationCommandInput, DeleteRecordingConfigurationCommandOutput } from "./commands/DeleteRecordingConfigurationCommand";
10
- import { DeleteStreamKeyCommandInput, DeleteStreamKeyCommandOutput } from "./commands/DeleteStreamKeyCommand";
11
- import { GetChannelCommandInput, GetChannelCommandOutput } from "./commands/GetChannelCommand";
12
- import { GetPlaybackKeyPairCommandInput, GetPlaybackKeyPairCommandOutput } from "./commands/GetPlaybackKeyPairCommand";
13
- import { GetRecordingConfigurationCommandInput, GetRecordingConfigurationCommandOutput } from "./commands/GetRecordingConfigurationCommand";
14
- import { GetStreamCommandInput, GetStreamCommandOutput } from "./commands/GetStreamCommand";
15
- import { GetStreamKeyCommandInput, GetStreamKeyCommandOutput } from "./commands/GetStreamKeyCommand";
16
- import { GetStreamSessionCommandInput, GetStreamSessionCommandOutput } from "./commands/GetStreamSessionCommand";
17
- import { ImportPlaybackKeyPairCommandInput, ImportPlaybackKeyPairCommandOutput } from "./commands/ImportPlaybackKeyPairCommand";
18
- import { ListChannelsCommandInput, ListChannelsCommandOutput } from "./commands/ListChannelsCommand";
19
- import { ListPlaybackKeyPairsCommandInput, ListPlaybackKeyPairsCommandOutput } from "./commands/ListPlaybackKeyPairsCommand";
20
- import { ListRecordingConfigurationsCommandInput, ListRecordingConfigurationsCommandOutput } from "./commands/ListRecordingConfigurationsCommand";
21
- import { ListStreamKeysCommandInput, ListStreamKeysCommandOutput } from "./commands/ListStreamKeysCommand";
22
- import { ListStreamsCommandInput, ListStreamsCommandOutput } from "./commands/ListStreamsCommand";
23
- import { ListStreamSessionsCommandInput, ListStreamSessionsCommandOutput } from "./commands/ListStreamSessionsCommand";
24
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
25
- import { PutMetadataCommandInput, PutMetadataCommandOutput } from "./commands/PutMetadataCommand";
26
- import { StopStreamCommandInput, StopStreamCommandOutput } from "./commands/StopStreamCommand";
27
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
28
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
29
- import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
30
- import { IvsClient } from "./IvsClient";
31
-
32
- export declare class Ivs extends IvsClient {
33
-
34
- batchGetChannel(args: BatchGetChannelCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetChannelCommandOutput>;
35
- batchGetChannel(args: BatchGetChannelCommandInput, cb: (err: any, data?: BatchGetChannelCommandOutput) => void): void;
36
- batchGetChannel(args: BatchGetChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetChannelCommandOutput) => void): void;
37
-
38
- batchGetStreamKey(args: BatchGetStreamKeyCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetStreamKeyCommandOutput>;
39
- batchGetStreamKey(args: BatchGetStreamKeyCommandInput, cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void): void;
40
- batchGetStreamKey(args: BatchGetStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void): void;
41
-
42
- createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
43
- createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
44
- createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
45
-
46
- createRecordingConfiguration(args: CreateRecordingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecordingConfigurationCommandOutput>;
47
- createRecordingConfiguration(args: CreateRecordingConfigurationCommandInput, cb: (err: any, data?: CreateRecordingConfigurationCommandOutput) => void): void;
48
- createRecordingConfiguration(args: CreateRecordingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecordingConfigurationCommandOutput) => void): void;
49
-
50
- createStreamKey(args: CreateStreamKeyCommandInput, options?: __HttpHandlerOptions): Promise<CreateStreamKeyCommandOutput>;
51
- createStreamKey(args: CreateStreamKeyCommandInput, cb: (err: any, data?: CreateStreamKeyCommandOutput) => void): void;
52
- createStreamKey(args: CreateStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamKeyCommandOutput) => void): void;
53
-
54
- deleteChannel(args: DeleteChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelCommandOutput>;
55
- deleteChannel(args: DeleteChannelCommandInput, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
56
- deleteChannel(args: DeleteChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
57
-
58
- deletePlaybackKeyPair(args: DeletePlaybackKeyPairCommandInput, options?: __HttpHandlerOptions): Promise<DeletePlaybackKeyPairCommandOutput>;
59
- deletePlaybackKeyPair(args: DeletePlaybackKeyPairCommandInput, cb: (err: any, data?: DeletePlaybackKeyPairCommandOutput) => void): void;
60
- deletePlaybackKeyPair(args: DeletePlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePlaybackKeyPairCommandOutput) => void): void;
61
-
62
- deleteRecordingConfiguration(args: DeleteRecordingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecordingConfigurationCommandOutput>;
63
- deleteRecordingConfiguration(args: DeleteRecordingConfigurationCommandInput, cb: (err: any, data?: DeleteRecordingConfigurationCommandOutput) => void): void;
64
- deleteRecordingConfiguration(args: DeleteRecordingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecordingConfigurationCommandOutput) => void): void;
65
-
66
- deleteStreamKey(args: DeleteStreamKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStreamKeyCommandOutput>;
67
- deleteStreamKey(args: DeleteStreamKeyCommandInput, cb: (err: any, data?: DeleteStreamKeyCommandOutput) => void): void;
68
- deleteStreamKey(args: DeleteStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStreamKeyCommandOutput) => void): void;
69
-
70
- getChannel(args: GetChannelCommandInput, options?: __HttpHandlerOptions): Promise<GetChannelCommandOutput>;
71
- getChannel(args: GetChannelCommandInput, cb: (err: any, data?: GetChannelCommandOutput) => void): void;
72
- getChannel(args: GetChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChannelCommandOutput) => void): void;
73
-
74
- getPlaybackKeyPair(args: GetPlaybackKeyPairCommandInput, options?: __HttpHandlerOptions): Promise<GetPlaybackKeyPairCommandOutput>;
75
- getPlaybackKeyPair(args: GetPlaybackKeyPairCommandInput, cb: (err: any, data?: GetPlaybackKeyPairCommandOutput) => void): void;
76
- getPlaybackKeyPair(args: GetPlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPlaybackKeyPairCommandOutput) => void): void;
77
-
78
- getRecordingConfiguration(args: GetRecordingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetRecordingConfigurationCommandOutput>;
79
- getRecordingConfiguration(args: GetRecordingConfigurationCommandInput, cb: (err: any, data?: GetRecordingConfigurationCommandOutput) => void): void;
80
- getRecordingConfiguration(args: GetRecordingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecordingConfigurationCommandOutput) => void): void;
81
-
82
- getStream(args: GetStreamCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamCommandOutput>;
83
- getStream(args: GetStreamCommandInput, cb: (err: any, data?: GetStreamCommandOutput) => void): void;
84
- getStream(args: GetStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamCommandOutput) => void): void;
85
-
86
- getStreamKey(args: GetStreamKeyCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamKeyCommandOutput>;
87
- getStreamKey(args: GetStreamKeyCommandInput, cb: (err: any, data?: GetStreamKeyCommandOutput) => void): void;
88
- getStreamKey(args: GetStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamKeyCommandOutput) => void): void;
89
-
90
- getStreamSession(args: GetStreamSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamSessionCommandOutput>;
91
- getStreamSession(args: GetStreamSessionCommandInput, cb: (err: any, data?: GetStreamSessionCommandOutput) => void): void;
92
- getStreamSession(args: GetStreamSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamSessionCommandOutput) => void): void;
93
-
94
- importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, options?: __HttpHandlerOptions): Promise<ImportPlaybackKeyPairCommandOutput>;
95
- importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void): void;
96
- importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void): void;
97
-
98
- listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
99
- listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
100
- listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
101
-
102
- listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, options?: __HttpHandlerOptions): Promise<ListPlaybackKeyPairsCommandOutput>;
103
- listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void): void;
104
- listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void): void;
105
-
106
- listRecordingConfigurations(args: ListRecordingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecordingConfigurationsCommandOutput>;
107
- listRecordingConfigurations(args: ListRecordingConfigurationsCommandInput, cb: (err: any, data?: ListRecordingConfigurationsCommandOutput) => void): void;
108
- listRecordingConfigurations(args: ListRecordingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecordingConfigurationsCommandOutput) => void): void;
109
-
110
- listStreamKeys(args: ListStreamKeysCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamKeysCommandOutput>;
111
- listStreamKeys(args: ListStreamKeysCommandInput, cb: (err: any, data?: ListStreamKeysCommandOutput) => void): void;
112
- listStreamKeys(args: ListStreamKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamKeysCommandOutput) => void): void;
113
-
114
- listStreams(args: ListStreamsCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamsCommandOutput>;
115
- listStreams(args: ListStreamsCommandInput, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
116
- listStreams(args: ListStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
117
-
118
- listStreamSessions(args: ListStreamSessionsCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamSessionsCommandOutput>;
119
- listStreamSessions(args: ListStreamSessionsCommandInput, cb: (err: any, data?: ListStreamSessionsCommandOutput) => void): void;
120
- listStreamSessions(args: ListStreamSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamSessionsCommandOutput) => void): void;
121
-
122
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
123
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
124
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
125
-
126
- putMetadata(args: PutMetadataCommandInput, options?: __HttpHandlerOptions): Promise<PutMetadataCommandOutput>;
127
- putMetadata(args: PutMetadataCommandInput, cb: (err: any, data?: PutMetadataCommandOutput) => void): void;
128
- putMetadata(args: PutMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMetadataCommandOutput) => void): void;
129
-
130
- stopStream(args: StopStreamCommandInput, options?: __HttpHandlerOptions): Promise<StopStreamCommandOutput>;
131
- stopStream(args: StopStreamCommandInput, cb: (err: any, data?: StopStreamCommandOutput) => void): void;
132
- stopStream(args: StopStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopStreamCommandOutput) => void): void;
133
-
134
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
135
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
136
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
137
-
138
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
139
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
140
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
141
-
142
- updateChannel(args: UpdateChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelCommandOutput>;
143
- updateChannel(args: UpdateChannelCommandInput, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
144
- updateChannel(args: UpdateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
145
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ BatchGetChannelCommandInput,
4
+ BatchGetChannelCommandOutput,
5
+ } from "./commands/BatchGetChannelCommand";
6
+ import {
7
+ BatchGetStreamKeyCommandInput,
8
+ BatchGetStreamKeyCommandOutput,
9
+ } from "./commands/BatchGetStreamKeyCommand";
10
+ import {
11
+ CreateChannelCommandInput,
12
+ CreateChannelCommandOutput,
13
+ } from "./commands/CreateChannelCommand";
14
+ import {
15
+ CreateRecordingConfigurationCommandInput,
16
+ CreateRecordingConfigurationCommandOutput,
17
+ } from "./commands/CreateRecordingConfigurationCommand";
18
+ import {
19
+ CreateStreamKeyCommandInput,
20
+ CreateStreamKeyCommandOutput,
21
+ } from "./commands/CreateStreamKeyCommand";
22
+ import {
23
+ DeleteChannelCommandInput,
24
+ DeleteChannelCommandOutput,
25
+ } from "./commands/DeleteChannelCommand";
26
+ import {
27
+ DeletePlaybackKeyPairCommandInput,
28
+ DeletePlaybackKeyPairCommandOutput,
29
+ } from "./commands/DeletePlaybackKeyPairCommand";
30
+ import {
31
+ DeleteRecordingConfigurationCommandInput,
32
+ DeleteRecordingConfigurationCommandOutput,
33
+ } from "./commands/DeleteRecordingConfigurationCommand";
34
+ import {
35
+ DeleteStreamKeyCommandInput,
36
+ DeleteStreamKeyCommandOutput,
37
+ } from "./commands/DeleteStreamKeyCommand";
38
+ import {
39
+ GetChannelCommandInput,
40
+ GetChannelCommandOutput,
41
+ } from "./commands/GetChannelCommand";
42
+ import {
43
+ GetPlaybackKeyPairCommandInput,
44
+ GetPlaybackKeyPairCommandOutput,
45
+ } from "./commands/GetPlaybackKeyPairCommand";
46
+ import {
47
+ GetRecordingConfigurationCommandInput,
48
+ GetRecordingConfigurationCommandOutput,
49
+ } from "./commands/GetRecordingConfigurationCommand";
50
+ import {
51
+ GetStreamCommandInput,
52
+ GetStreamCommandOutput,
53
+ } from "./commands/GetStreamCommand";
54
+ import {
55
+ GetStreamKeyCommandInput,
56
+ GetStreamKeyCommandOutput,
57
+ } from "./commands/GetStreamKeyCommand";
58
+ import {
59
+ GetStreamSessionCommandInput,
60
+ GetStreamSessionCommandOutput,
61
+ } from "./commands/GetStreamSessionCommand";
62
+ import {
63
+ ImportPlaybackKeyPairCommandInput,
64
+ ImportPlaybackKeyPairCommandOutput,
65
+ } from "./commands/ImportPlaybackKeyPairCommand";
66
+ import {
67
+ ListChannelsCommandInput,
68
+ ListChannelsCommandOutput,
69
+ } from "./commands/ListChannelsCommand";
70
+ import {
71
+ ListPlaybackKeyPairsCommandInput,
72
+ ListPlaybackKeyPairsCommandOutput,
73
+ } from "./commands/ListPlaybackKeyPairsCommand";
74
+ import {
75
+ ListRecordingConfigurationsCommandInput,
76
+ ListRecordingConfigurationsCommandOutput,
77
+ } from "./commands/ListRecordingConfigurationsCommand";
78
+ import {
79
+ ListStreamKeysCommandInput,
80
+ ListStreamKeysCommandOutput,
81
+ } from "./commands/ListStreamKeysCommand";
82
+ import {
83
+ ListStreamsCommandInput,
84
+ ListStreamsCommandOutput,
85
+ } from "./commands/ListStreamsCommand";
86
+ import {
87
+ ListStreamSessionsCommandInput,
88
+ ListStreamSessionsCommandOutput,
89
+ } from "./commands/ListStreamSessionsCommand";
90
+ import {
91
+ ListTagsForResourceCommandInput,
92
+ ListTagsForResourceCommandOutput,
93
+ } from "./commands/ListTagsForResourceCommand";
94
+ import {
95
+ PutMetadataCommandInput,
96
+ PutMetadataCommandOutput,
97
+ } from "./commands/PutMetadataCommand";
98
+ import {
99
+ StopStreamCommandInput,
100
+ StopStreamCommandOutput,
101
+ } from "./commands/StopStreamCommand";
102
+ import {
103
+ TagResourceCommandInput,
104
+ TagResourceCommandOutput,
105
+ } from "./commands/TagResourceCommand";
106
+ import {
107
+ UntagResourceCommandInput,
108
+ UntagResourceCommandOutput,
109
+ } from "./commands/UntagResourceCommand";
110
+ import {
111
+ UpdateChannelCommandInput,
112
+ UpdateChannelCommandOutput,
113
+ } from "./commands/UpdateChannelCommand";
114
+ import { IvsClient } from "./IvsClient";
115
+
116
+ export declare class Ivs extends IvsClient {
117
+ batchGetChannel(
118
+ args: BatchGetChannelCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<BatchGetChannelCommandOutput>;
121
+ batchGetChannel(
122
+ args: BatchGetChannelCommandInput,
123
+ cb: (err: any, data?: BatchGetChannelCommandOutput) => void
124
+ ): void;
125
+ batchGetChannel(
126
+ args: BatchGetChannelCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: BatchGetChannelCommandOutput) => void
129
+ ): void;
130
+
131
+ batchGetStreamKey(
132
+ args: BatchGetStreamKeyCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<BatchGetStreamKeyCommandOutput>;
135
+ batchGetStreamKey(
136
+ args: BatchGetStreamKeyCommandInput,
137
+ cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void
138
+ ): void;
139
+ batchGetStreamKey(
140
+ args: BatchGetStreamKeyCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void
143
+ ): void;
144
+
145
+ createChannel(
146
+ args: CreateChannelCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<CreateChannelCommandOutput>;
149
+ createChannel(
150
+ args: CreateChannelCommandInput,
151
+ cb: (err: any, data?: CreateChannelCommandOutput) => void
152
+ ): void;
153
+ createChannel(
154
+ args: CreateChannelCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: CreateChannelCommandOutput) => void
157
+ ): void;
158
+
159
+ createRecordingConfiguration(
160
+ args: CreateRecordingConfigurationCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<CreateRecordingConfigurationCommandOutput>;
163
+ createRecordingConfiguration(
164
+ args: CreateRecordingConfigurationCommandInput,
165
+ cb: (err: any, data?: CreateRecordingConfigurationCommandOutput) => void
166
+ ): void;
167
+ createRecordingConfiguration(
168
+ args: CreateRecordingConfigurationCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: CreateRecordingConfigurationCommandOutput) => void
171
+ ): void;
172
+
173
+ createStreamKey(
174
+ args: CreateStreamKeyCommandInput,
175
+ options?: __HttpHandlerOptions
176
+ ): Promise<CreateStreamKeyCommandOutput>;
177
+ createStreamKey(
178
+ args: CreateStreamKeyCommandInput,
179
+ cb: (err: any, data?: CreateStreamKeyCommandOutput) => void
180
+ ): void;
181
+ createStreamKey(
182
+ args: CreateStreamKeyCommandInput,
183
+ options: __HttpHandlerOptions,
184
+ cb: (err: any, data?: CreateStreamKeyCommandOutput) => void
185
+ ): void;
186
+
187
+ deleteChannel(
188
+ args: DeleteChannelCommandInput,
189
+ options?: __HttpHandlerOptions
190
+ ): Promise<DeleteChannelCommandOutput>;
191
+ deleteChannel(
192
+ args: DeleteChannelCommandInput,
193
+ cb: (err: any, data?: DeleteChannelCommandOutput) => void
194
+ ): void;
195
+ deleteChannel(
196
+ args: DeleteChannelCommandInput,
197
+ options: __HttpHandlerOptions,
198
+ cb: (err: any, data?: DeleteChannelCommandOutput) => void
199
+ ): void;
200
+
201
+ deletePlaybackKeyPair(
202
+ args: DeletePlaybackKeyPairCommandInput,
203
+ options?: __HttpHandlerOptions
204
+ ): Promise<DeletePlaybackKeyPairCommandOutput>;
205
+ deletePlaybackKeyPair(
206
+ args: DeletePlaybackKeyPairCommandInput,
207
+ cb: (err: any, data?: DeletePlaybackKeyPairCommandOutput) => void
208
+ ): void;
209
+ deletePlaybackKeyPair(
210
+ args: DeletePlaybackKeyPairCommandInput,
211
+ options: __HttpHandlerOptions,
212
+ cb: (err: any, data?: DeletePlaybackKeyPairCommandOutput) => void
213
+ ): void;
214
+
215
+ deleteRecordingConfiguration(
216
+ args: DeleteRecordingConfigurationCommandInput,
217
+ options?: __HttpHandlerOptions
218
+ ): Promise<DeleteRecordingConfigurationCommandOutput>;
219
+ deleteRecordingConfiguration(
220
+ args: DeleteRecordingConfigurationCommandInput,
221
+ cb: (err: any, data?: DeleteRecordingConfigurationCommandOutput) => void
222
+ ): void;
223
+ deleteRecordingConfiguration(
224
+ args: DeleteRecordingConfigurationCommandInput,
225
+ options: __HttpHandlerOptions,
226
+ cb: (err: any, data?: DeleteRecordingConfigurationCommandOutput) => void
227
+ ): void;
228
+
229
+ deleteStreamKey(
230
+ args: DeleteStreamKeyCommandInput,
231
+ options?: __HttpHandlerOptions
232
+ ): Promise<DeleteStreamKeyCommandOutput>;
233
+ deleteStreamKey(
234
+ args: DeleteStreamKeyCommandInput,
235
+ cb: (err: any, data?: DeleteStreamKeyCommandOutput) => void
236
+ ): void;
237
+ deleteStreamKey(
238
+ args: DeleteStreamKeyCommandInput,
239
+ options: __HttpHandlerOptions,
240
+ cb: (err: any, data?: DeleteStreamKeyCommandOutput) => void
241
+ ): void;
242
+
243
+ getChannel(
244
+ args: GetChannelCommandInput,
245
+ options?: __HttpHandlerOptions
246
+ ): Promise<GetChannelCommandOutput>;
247
+ getChannel(
248
+ args: GetChannelCommandInput,
249
+ cb: (err: any, data?: GetChannelCommandOutput) => void
250
+ ): void;
251
+ getChannel(
252
+ args: GetChannelCommandInput,
253
+ options: __HttpHandlerOptions,
254
+ cb: (err: any, data?: GetChannelCommandOutput) => void
255
+ ): void;
256
+
257
+ getPlaybackKeyPair(
258
+ args: GetPlaybackKeyPairCommandInput,
259
+ options?: __HttpHandlerOptions
260
+ ): Promise<GetPlaybackKeyPairCommandOutput>;
261
+ getPlaybackKeyPair(
262
+ args: GetPlaybackKeyPairCommandInput,
263
+ cb: (err: any, data?: GetPlaybackKeyPairCommandOutput) => void
264
+ ): void;
265
+ getPlaybackKeyPair(
266
+ args: GetPlaybackKeyPairCommandInput,
267
+ options: __HttpHandlerOptions,
268
+ cb: (err: any, data?: GetPlaybackKeyPairCommandOutput) => void
269
+ ): void;
270
+
271
+ getRecordingConfiguration(
272
+ args: GetRecordingConfigurationCommandInput,
273
+ options?: __HttpHandlerOptions
274
+ ): Promise<GetRecordingConfigurationCommandOutput>;
275
+ getRecordingConfiguration(
276
+ args: GetRecordingConfigurationCommandInput,
277
+ cb: (err: any, data?: GetRecordingConfigurationCommandOutput) => void
278
+ ): void;
279
+ getRecordingConfiguration(
280
+ args: GetRecordingConfigurationCommandInput,
281
+ options: __HttpHandlerOptions,
282
+ cb: (err: any, data?: GetRecordingConfigurationCommandOutput) => void
283
+ ): void;
284
+
285
+ getStream(
286
+ args: GetStreamCommandInput,
287
+ options?: __HttpHandlerOptions
288
+ ): Promise<GetStreamCommandOutput>;
289
+ getStream(
290
+ args: GetStreamCommandInput,
291
+ cb: (err: any, data?: GetStreamCommandOutput) => void
292
+ ): void;
293
+ getStream(
294
+ args: GetStreamCommandInput,
295
+ options: __HttpHandlerOptions,
296
+ cb: (err: any, data?: GetStreamCommandOutput) => void
297
+ ): void;
298
+
299
+ getStreamKey(
300
+ args: GetStreamKeyCommandInput,
301
+ options?: __HttpHandlerOptions
302
+ ): Promise<GetStreamKeyCommandOutput>;
303
+ getStreamKey(
304
+ args: GetStreamKeyCommandInput,
305
+ cb: (err: any, data?: GetStreamKeyCommandOutput) => void
306
+ ): void;
307
+ getStreamKey(
308
+ args: GetStreamKeyCommandInput,
309
+ options: __HttpHandlerOptions,
310
+ cb: (err: any, data?: GetStreamKeyCommandOutput) => void
311
+ ): void;
312
+
313
+ getStreamSession(
314
+ args: GetStreamSessionCommandInput,
315
+ options?: __HttpHandlerOptions
316
+ ): Promise<GetStreamSessionCommandOutput>;
317
+ getStreamSession(
318
+ args: GetStreamSessionCommandInput,
319
+ cb: (err: any, data?: GetStreamSessionCommandOutput) => void
320
+ ): void;
321
+ getStreamSession(
322
+ args: GetStreamSessionCommandInput,
323
+ options: __HttpHandlerOptions,
324
+ cb: (err: any, data?: GetStreamSessionCommandOutput) => void
325
+ ): void;
326
+
327
+ importPlaybackKeyPair(
328
+ args: ImportPlaybackKeyPairCommandInput,
329
+ options?: __HttpHandlerOptions
330
+ ): Promise<ImportPlaybackKeyPairCommandOutput>;
331
+ importPlaybackKeyPair(
332
+ args: ImportPlaybackKeyPairCommandInput,
333
+ cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void
334
+ ): void;
335
+ importPlaybackKeyPair(
336
+ args: ImportPlaybackKeyPairCommandInput,
337
+ options: __HttpHandlerOptions,
338
+ cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void
339
+ ): void;
340
+
341
+ listChannels(
342
+ args: ListChannelsCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<ListChannelsCommandOutput>;
345
+ listChannels(
346
+ args: ListChannelsCommandInput,
347
+ cb: (err: any, data?: ListChannelsCommandOutput) => void
348
+ ): void;
349
+ listChannels(
350
+ args: ListChannelsCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: ListChannelsCommandOutput) => void
353
+ ): void;
354
+
355
+ listPlaybackKeyPairs(
356
+ args: ListPlaybackKeyPairsCommandInput,
357
+ options?: __HttpHandlerOptions
358
+ ): Promise<ListPlaybackKeyPairsCommandOutput>;
359
+ listPlaybackKeyPairs(
360
+ args: ListPlaybackKeyPairsCommandInput,
361
+ cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void
362
+ ): void;
363
+ listPlaybackKeyPairs(
364
+ args: ListPlaybackKeyPairsCommandInput,
365
+ options: __HttpHandlerOptions,
366
+ cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void
367
+ ): void;
368
+
369
+ listRecordingConfigurations(
370
+ args: ListRecordingConfigurationsCommandInput,
371
+ options?: __HttpHandlerOptions
372
+ ): Promise<ListRecordingConfigurationsCommandOutput>;
373
+ listRecordingConfigurations(
374
+ args: ListRecordingConfigurationsCommandInput,
375
+ cb: (err: any, data?: ListRecordingConfigurationsCommandOutput) => void
376
+ ): void;
377
+ listRecordingConfigurations(
378
+ args: ListRecordingConfigurationsCommandInput,
379
+ options: __HttpHandlerOptions,
380
+ cb: (err: any, data?: ListRecordingConfigurationsCommandOutput) => void
381
+ ): void;
382
+
383
+ listStreamKeys(
384
+ args: ListStreamKeysCommandInput,
385
+ options?: __HttpHandlerOptions
386
+ ): Promise<ListStreamKeysCommandOutput>;
387
+ listStreamKeys(
388
+ args: ListStreamKeysCommandInput,
389
+ cb: (err: any, data?: ListStreamKeysCommandOutput) => void
390
+ ): void;
391
+ listStreamKeys(
392
+ args: ListStreamKeysCommandInput,
393
+ options: __HttpHandlerOptions,
394
+ cb: (err: any, data?: ListStreamKeysCommandOutput) => void
395
+ ): void;
396
+
397
+ listStreams(
398
+ args: ListStreamsCommandInput,
399
+ options?: __HttpHandlerOptions
400
+ ): Promise<ListStreamsCommandOutput>;
401
+ listStreams(
402
+ args: ListStreamsCommandInput,
403
+ cb: (err: any, data?: ListStreamsCommandOutput) => void
404
+ ): void;
405
+ listStreams(
406
+ args: ListStreamsCommandInput,
407
+ options: __HttpHandlerOptions,
408
+ cb: (err: any, data?: ListStreamsCommandOutput) => void
409
+ ): void;
410
+
411
+ listStreamSessions(
412
+ args: ListStreamSessionsCommandInput,
413
+ options?: __HttpHandlerOptions
414
+ ): Promise<ListStreamSessionsCommandOutput>;
415
+ listStreamSessions(
416
+ args: ListStreamSessionsCommandInput,
417
+ cb: (err: any, data?: ListStreamSessionsCommandOutput) => void
418
+ ): void;
419
+ listStreamSessions(
420
+ args: ListStreamSessionsCommandInput,
421
+ options: __HttpHandlerOptions,
422
+ cb: (err: any, data?: ListStreamSessionsCommandOutput) => void
423
+ ): void;
424
+
425
+ listTagsForResource(
426
+ args: ListTagsForResourceCommandInput,
427
+ options?: __HttpHandlerOptions
428
+ ): Promise<ListTagsForResourceCommandOutput>;
429
+ listTagsForResource(
430
+ args: ListTagsForResourceCommandInput,
431
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
432
+ ): void;
433
+ listTagsForResource(
434
+ args: ListTagsForResourceCommandInput,
435
+ options: __HttpHandlerOptions,
436
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
437
+ ): void;
438
+
439
+ putMetadata(
440
+ args: PutMetadataCommandInput,
441
+ options?: __HttpHandlerOptions
442
+ ): Promise<PutMetadataCommandOutput>;
443
+ putMetadata(
444
+ args: PutMetadataCommandInput,
445
+ cb: (err: any, data?: PutMetadataCommandOutput) => void
446
+ ): void;
447
+ putMetadata(
448
+ args: PutMetadataCommandInput,
449
+ options: __HttpHandlerOptions,
450
+ cb: (err: any, data?: PutMetadataCommandOutput) => void
451
+ ): void;
452
+
453
+ stopStream(
454
+ args: StopStreamCommandInput,
455
+ options?: __HttpHandlerOptions
456
+ ): Promise<StopStreamCommandOutput>;
457
+ stopStream(
458
+ args: StopStreamCommandInput,
459
+ cb: (err: any, data?: StopStreamCommandOutput) => void
460
+ ): void;
461
+ stopStream(
462
+ args: StopStreamCommandInput,
463
+ options: __HttpHandlerOptions,
464
+ cb: (err: any, data?: StopStreamCommandOutput) => void
465
+ ): void;
466
+
467
+ tagResource(
468
+ args: TagResourceCommandInput,
469
+ options?: __HttpHandlerOptions
470
+ ): Promise<TagResourceCommandOutput>;
471
+ tagResource(
472
+ args: TagResourceCommandInput,
473
+ cb: (err: any, data?: TagResourceCommandOutput) => void
474
+ ): void;
475
+ tagResource(
476
+ args: TagResourceCommandInput,
477
+ options: __HttpHandlerOptions,
478
+ cb: (err: any, data?: TagResourceCommandOutput) => void
479
+ ): void;
480
+
481
+ untagResource(
482
+ args: UntagResourceCommandInput,
483
+ options?: __HttpHandlerOptions
484
+ ): Promise<UntagResourceCommandOutput>;
485
+ untagResource(
486
+ args: UntagResourceCommandInput,
487
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
488
+ ): void;
489
+ untagResource(
490
+ args: UntagResourceCommandInput,
491
+ options: __HttpHandlerOptions,
492
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
493
+ ): void;
494
+
495
+ updateChannel(
496
+ args: UpdateChannelCommandInput,
497
+ options?: __HttpHandlerOptions
498
+ ): Promise<UpdateChannelCommandOutput>;
499
+ updateChannel(
500
+ args: UpdateChannelCommandInput,
501
+ cb: (err: any, data?: UpdateChannelCommandOutput) => void
502
+ ): void;
503
+ updateChannel(
504
+ args: UpdateChannelCommandInput,
505
+ options: __HttpHandlerOptions,
506
+ cb: (err: any, data?: UpdateChannelCommandOutput) => void
507
+ ): void;
508
+ }