@aws-sdk/client-ivs-realtime 3.450.0 → 3.453.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.
- package/README.md +184 -5
- package/dist-cjs/IVSRealTime.js +24 -0
- package/dist-cjs/commands/CreateEncoderConfigurationCommand.js +51 -0
- package/dist-cjs/commands/CreateStorageConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteEncoderConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteStorageConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetCompositionCommand.js +51 -0
- package/dist-cjs/commands/GetEncoderConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetStorageConfigurationCommand.js +51 -0
- package/dist-cjs/commands/ListCompositionsCommand.js +51 -0
- package/dist-cjs/commands/ListEncoderConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/ListStorageConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/StartCompositionCommand.js +51 -0
- package/dist-cjs/commands/StopCompositionCommand.js +51 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/models/models_0.js +51 -33
- package/dist-cjs/pagination/ListCompositionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListEncoderConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/ListStorageConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1036 -101
- package/dist-es/IVSRealTime.js +24 -0
- package/dist-es/commands/CreateEncoderConfigurationCommand.js +47 -0
- package/dist-es/commands/CreateStorageConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteEncoderConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteStorageConfigurationCommand.js +47 -0
- package/dist-es/commands/GetCompositionCommand.js +47 -0
- package/dist-es/commands/GetEncoderConfigurationCommand.js +47 -0
- package/dist-es/commands/GetStorageConfigurationCommand.js +47 -0
- package/dist-es/commands/ListCompositionsCommand.js +47 -0
- package/dist-es/commands/ListEncoderConfigurationsCommand.js +47 -0
- package/dist-es/commands/ListStorageConfigurationsCommand.js +47 -0
- package/dist-es/commands/StartCompositionCommand.js +47 -0
- package/dist-es/commands/StopCompositionCommand.js +47 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/models_0.js +48 -30
- package/dist-es/pagination/ListCompositionsPaginator.js +25 -0
- package/dist-es/pagination/ListEncoderConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/ListStorageConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1002 -92
- package/dist-types/IVSRealTime.d.ts +172 -5
- package/dist-types/IVSRealTimeClient.d.ts +102 -7
- package/dist-types/commands/CreateEncoderConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/CreateStorageConfigurationCommand.d.ts +111 -0
- package/dist-types/commands/DeleteEncoderConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/DeleteStorageConfigurationCommand.d.ts +92 -0
- package/dist-types/commands/GetCompositionCommand.d.ts +134 -0
- package/dist-types/commands/GetEncoderConfigurationCommand.d.ts +103 -0
- package/dist-types/commands/GetStorageConfigurationCommand.d.ts +100 -0
- package/dist-types/commands/ListCompositionsCommand.d.ts +112 -0
- package/dist-types/commands/ListEncoderConfigurationsCommand.d.ts +99 -0
- package/dist-types/commands/ListStorageConfigurationsCommand.d.ts +102 -0
- package/dist-types/commands/StartCompositionCommand.d.ts +187 -0
- package/dist-types/commands/StopCompositionCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/index.d.ts +88 -5
- package/dist-types/models/models_0.d.ts +908 -92
- package/dist-types/pagination/ListCompositionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEncoderConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListStorageConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +108 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +204 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateEncoderConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateStorageConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteEncoderConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteStorageConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCompositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetEncoderConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetStorageConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCompositionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListEncoderConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListStorageConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartCompositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StopCompositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +234 -34
- package/dist-types/ts3.4/pagination/ListCompositionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEncoderConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListStorageConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +144 -0
- package/package.json +38 -36
|
@@ -8,30 +8,39 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
-
export declare
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
(typeof ParticipantTokenCapability)[keyof typeof ParticipantTokenCapability];
|
|
17
|
-
export interface CreateParticipantTokenRequest {
|
|
18
|
-
stageArn: string | undefined;
|
|
19
|
-
duration?: number;
|
|
20
|
-
userId?: string;
|
|
21
|
-
attributes?: Record<string, string>;
|
|
22
|
-
capabilities?: ParticipantTokenCapability[];
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
exceptionMessage?: string;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
23
16
|
}
|
|
24
|
-
export interface
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
duration?: number;
|
|
30
|
-
capabilities?: ParticipantTokenCapability[];
|
|
31
|
-
expirationTime?: Date;
|
|
17
|
+
export interface Video {
|
|
18
|
+
width?: number;
|
|
19
|
+
height?: number;
|
|
20
|
+
framerate?: number;
|
|
21
|
+
bitrate?: number;
|
|
32
22
|
}
|
|
33
|
-
export interface
|
|
34
|
-
|
|
23
|
+
export interface CreateEncoderConfigurationRequest {
|
|
24
|
+
name?: string;
|
|
25
|
+
video?: Video;
|
|
26
|
+
tags?: Record<string, string>;
|
|
27
|
+
}
|
|
28
|
+
export interface EncoderConfiguration {
|
|
29
|
+
arn: string | undefined;
|
|
30
|
+
name?: string;
|
|
31
|
+
video?: Video;
|
|
32
|
+
tags?: Record<string, string>;
|
|
33
|
+
}
|
|
34
|
+
export interface CreateEncoderConfigurationResponse {
|
|
35
|
+
encoderConfiguration?: EncoderConfiguration;
|
|
36
|
+
}
|
|
37
|
+
export declare class InternalServerException extends __BaseException {
|
|
38
|
+
readonly name: "InternalServerException";
|
|
39
|
+
readonly $fault: "server";
|
|
40
|
+
exceptionMessage?: string;
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
43
|
+
);
|
|
35
44
|
}
|
|
36
45
|
export declare class PendingVerification extends __BaseException {
|
|
37
46
|
readonly name: "PendingVerification";
|
|
@@ -65,6 +74,31 @@ export declare class ValidationException extends __BaseException {
|
|
|
65
74
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
66
75
|
);
|
|
67
76
|
}
|
|
77
|
+
export declare const ParticipantTokenCapability: {
|
|
78
|
+
readonly PUBLISH: "PUBLISH";
|
|
79
|
+
readonly SUBSCRIBE: "SUBSCRIBE";
|
|
80
|
+
};
|
|
81
|
+
export type ParticipantTokenCapability =
|
|
82
|
+
(typeof ParticipantTokenCapability)[keyof typeof ParticipantTokenCapability];
|
|
83
|
+
export interface CreateParticipantTokenRequest {
|
|
84
|
+
stageArn: string | undefined;
|
|
85
|
+
duration?: number;
|
|
86
|
+
userId?: string;
|
|
87
|
+
attributes?: Record<string, string>;
|
|
88
|
+
capabilities?: ParticipantTokenCapability[];
|
|
89
|
+
}
|
|
90
|
+
export interface ParticipantToken {
|
|
91
|
+
participantId?: string;
|
|
92
|
+
token?: string;
|
|
93
|
+
userId?: string;
|
|
94
|
+
attributes?: Record<string, string>;
|
|
95
|
+
duration?: number;
|
|
96
|
+
capabilities?: ParticipantTokenCapability[];
|
|
97
|
+
expirationTime?: Date;
|
|
98
|
+
}
|
|
99
|
+
export interface CreateParticipantTokenResponse {
|
|
100
|
+
participantToken?: ParticipantToken;
|
|
101
|
+
}
|
|
68
102
|
export interface ParticipantTokenConfiguration {
|
|
69
103
|
duration?: number;
|
|
70
104
|
userId?: string;
|
|
@@ -86,22 +120,124 @@ export interface CreateStageResponse {
|
|
|
86
120
|
stage?: Stage;
|
|
87
121
|
participantTokens?: ParticipantToken[];
|
|
88
122
|
}
|
|
89
|
-
export
|
|
90
|
-
|
|
91
|
-
readonly $fault: "client";
|
|
92
|
-
exceptionMessage?: string;
|
|
93
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
123
|
+
export interface S3StorageConfiguration {
|
|
124
|
+
bucketName: string | undefined;
|
|
94
125
|
}
|
|
126
|
+
export interface CreateStorageConfigurationRequest {
|
|
127
|
+
name?: string;
|
|
128
|
+
s3: S3StorageConfiguration | undefined;
|
|
129
|
+
tags?: Record<string, string>;
|
|
130
|
+
}
|
|
131
|
+
export interface StorageConfiguration {
|
|
132
|
+
arn: string | undefined;
|
|
133
|
+
name?: string;
|
|
134
|
+
s3?: S3StorageConfiguration;
|
|
135
|
+
tags?: Record<string, string>;
|
|
136
|
+
}
|
|
137
|
+
export interface CreateStorageConfigurationResponse {
|
|
138
|
+
storageConfiguration?: StorageConfiguration;
|
|
139
|
+
}
|
|
140
|
+
export interface DeleteEncoderConfigurationRequest {
|
|
141
|
+
arn: string | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface DeleteEncoderConfigurationResponse {}
|
|
95
144
|
export interface DeleteStageRequest {
|
|
96
145
|
arn: string | undefined;
|
|
97
146
|
}
|
|
98
147
|
export interface DeleteStageResponse {}
|
|
148
|
+
export interface DeleteStorageConfigurationRequest {
|
|
149
|
+
arn: string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface DeleteStorageConfigurationResponse {}
|
|
99
152
|
export interface DisconnectParticipantRequest {
|
|
100
153
|
stageArn: string | undefined;
|
|
101
154
|
participantId: string | undefined;
|
|
102
155
|
reason?: string;
|
|
103
156
|
}
|
|
104
157
|
export interface DisconnectParticipantResponse {}
|
|
158
|
+
export interface GetCompositionRequest {
|
|
159
|
+
arn: string | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface ChannelDestinationConfiguration {
|
|
162
|
+
channelArn: string | undefined;
|
|
163
|
+
encoderConfigurationArn?: string;
|
|
164
|
+
}
|
|
165
|
+
export declare const RecordingConfigurationFormat: {
|
|
166
|
+
readonly HLS: "HLS";
|
|
167
|
+
};
|
|
168
|
+
export type RecordingConfigurationFormat =
|
|
169
|
+
(typeof RecordingConfigurationFormat)[keyof typeof RecordingConfigurationFormat];
|
|
170
|
+
export interface RecordingConfiguration {
|
|
171
|
+
format?: RecordingConfigurationFormat;
|
|
172
|
+
}
|
|
173
|
+
export interface S3DestinationConfiguration {
|
|
174
|
+
storageConfigurationArn: string | undefined;
|
|
175
|
+
encoderConfigurationArns: string[] | undefined;
|
|
176
|
+
recordingConfiguration?: RecordingConfiguration;
|
|
177
|
+
}
|
|
178
|
+
export interface DestinationConfiguration {
|
|
179
|
+
name?: string;
|
|
180
|
+
channel?: ChannelDestinationConfiguration;
|
|
181
|
+
s3?: S3DestinationConfiguration;
|
|
182
|
+
}
|
|
183
|
+
export interface S3Detail {
|
|
184
|
+
recordingPrefix: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
export interface DestinationDetail {
|
|
187
|
+
s3?: S3Detail;
|
|
188
|
+
}
|
|
189
|
+
export declare const DestinationState: {
|
|
190
|
+
readonly ACTIVE: "ACTIVE";
|
|
191
|
+
readonly FAILED: "FAILED";
|
|
192
|
+
readonly RECONNECTING: "RECONNECTING";
|
|
193
|
+
readonly STARTING: "STARTING";
|
|
194
|
+
readonly STOPPED: "STOPPED";
|
|
195
|
+
readonly STOPPING: "STOPPING";
|
|
196
|
+
};
|
|
197
|
+
export type DestinationState =
|
|
198
|
+
(typeof DestinationState)[keyof typeof DestinationState];
|
|
199
|
+
export interface Destination {
|
|
200
|
+
id: string | undefined;
|
|
201
|
+
state: DestinationState | undefined;
|
|
202
|
+
startTime?: Date;
|
|
203
|
+
endTime?: Date;
|
|
204
|
+
configuration: DestinationConfiguration | undefined;
|
|
205
|
+
detail?: DestinationDetail;
|
|
206
|
+
}
|
|
207
|
+
export interface GridConfiguration {
|
|
208
|
+
featuredParticipantAttribute?: string;
|
|
209
|
+
}
|
|
210
|
+
export interface LayoutConfiguration {
|
|
211
|
+
grid?: GridConfiguration;
|
|
212
|
+
}
|
|
213
|
+
export declare const CompositionState: {
|
|
214
|
+
readonly ACTIVE: "ACTIVE";
|
|
215
|
+
readonly FAILED: "FAILED";
|
|
216
|
+
readonly STARTING: "STARTING";
|
|
217
|
+
readonly STOPPED: "STOPPED";
|
|
218
|
+
readonly STOPPING: "STOPPING";
|
|
219
|
+
};
|
|
220
|
+
export type CompositionState =
|
|
221
|
+
(typeof CompositionState)[keyof typeof CompositionState];
|
|
222
|
+
export interface Composition {
|
|
223
|
+
arn: string | undefined;
|
|
224
|
+
stageArn: string | undefined;
|
|
225
|
+
state: CompositionState | undefined;
|
|
226
|
+
layout: LayoutConfiguration | undefined;
|
|
227
|
+
destinations: Destination[] | undefined;
|
|
228
|
+
tags?: Record<string, string>;
|
|
229
|
+
startTime?: Date;
|
|
230
|
+
endTime?: Date;
|
|
231
|
+
}
|
|
232
|
+
export interface GetCompositionResponse {
|
|
233
|
+
composition?: Composition;
|
|
234
|
+
}
|
|
235
|
+
export interface GetEncoderConfigurationRequest {
|
|
236
|
+
arn: string | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface GetEncoderConfigurationResponse {
|
|
239
|
+
encoderConfiguration?: EncoderConfiguration;
|
|
240
|
+
}
|
|
105
241
|
export interface GetParticipantRequest {
|
|
106
242
|
stageArn: string | undefined;
|
|
107
243
|
sessionId: string | undefined;
|
|
@@ -148,6 +284,50 @@ export interface StageSession {
|
|
|
148
284
|
export interface GetStageSessionResponse {
|
|
149
285
|
stageSession?: StageSession;
|
|
150
286
|
}
|
|
287
|
+
export interface GetStorageConfigurationRequest {
|
|
288
|
+
arn: string | undefined;
|
|
289
|
+
}
|
|
290
|
+
export interface GetStorageConfigurationResponse {
|
|
291
|
+
storageConfiguration?: StorageConfiguration;
|
|
292
|
+
}
|
|
293
|
+
export interface ListCompositionsRequest {
|
|
294
|
+
filterByStageArn?: string;
|
|
295
|
+
filterByEncoderConfigurationArn?: string;
|
|
296
|
+
nextToken?: string;
|
|
297
|
+
maxResults?: number;
|
|
298
|
+
}
|
|
299
|
+
export interface DestinationSummary {
|
|
300
|
+
id: string | undefined;
|
|
301
|
+
state: DestinationState | undefined;
|
|
302
|
+
startTime?: Date;
|
|
303
|
+
endTime?: Date;
|
|
304
|
+
}
|
|
305
|
+
export interface CompositionSummary {
|
|
306
|
+
arn: string | undefined;
|
|
307
|
+
stageArn: string | undefined;
|
|
308
|
+
destinations: DestinationSummary[] | undefined;
|
|
309
|
+
state: CompositionState | undefined;
|
|
310
|
+
tags?: Record<string, string>;
|
|
311
|
+
startTime?: Date;
|
|
312
|
+
endTime?: Date;
|
|
313
|
+
}
|
|
314
|
+
export interface ListCompositionsResponse {
|
|
315
|
+
compositions: CompositionSummary[] | undefined;
|
|
316
|
+
nextToken?: string;
|
|
317
|
+
}
|
|
318
|
+
export interface ListEncoderConfigurationsRequest {
|
|
319
|
+
nextToken?: string;
|
|
320
|
+
maxResults?: number;
|
|
321
|
+
}
|
|
322
|
+
export interface EncoderConfigurationSummary {
|
|
323
|
+
arn: string | undefined;
|
|
324
|
+
name?: string;
|
|
325
|
+
tags?: Record<string, string>;
|
|
326
|
+
}
|
|
327
|
+
export interface ListEncoderConfigurationsResponse {
|
|
328
|
+
encoderConfigurations: EncoderConfigurationSummary[] | undefined;
|
|
329
|
+
nextToken?: string;
|
|
330
|
+
}
|
|
151
331
|
export interface ListParticipantEventsRequest {
|
|
152
332
|
stageArn: string | undefined;
|
|
153
333
|
sessionId: string | undefined;
|
|
@@ -233,13 +413,19 @@ export interface ListStageSessionsResponse {
|
|
|
233
413
|
stageSessions: StageSessionSummary[] | undefined;
|
|
234
414
|
nextToken?: string;
|
|
235
415
|
}
|
|
236
|
-
export
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
416
|
+
export interface ListStorageConfigurationsRequest {
|
|
417
|
+
nextToken?: string;
|
|
418
|
+
maxResults?: number;
|
|
419
|
+
}
|
|
420
|
+
export interface StorageConfigurationSummary {
|
|
421
|
+
arn: string | undefined;
|
|
422
|
+
name?: string;
|
|
423
|
+
s3?: S3StorageConfiguration;
|
|
424
|
+
tags?: Record<string, string>;
|
|
425
|
+
}
|
|
426
|
+
export interface ListStorageConfigurationsResponse {
|
|
427
|
+
storageConfigurations: StorageConfigurationSummary[] | undefined;
|
|
428
|
+
nextToken?: string;
|
|
243
429
|
}
|
|
244
430
|
export interface ListTagsForResourceRequest {
|
|
245
431
|
resourceArn: string | undefined;
|
|
@@ -247,6 +433,20 @@ export interface ListTagsForResourceRequest {
|
|
|
247
433
|
export interface ListTagsForResourceResponse {
|
|
248
434
|
tags: Record<string, string> | undefined;
|
|
249
435
|
}
|
|
436
|
+
export interface StartCompositionRequest {
|
|
437
|
+
stageArn: string | undefined;
|
|
438
|
+
idempotencyToken?: string;
|
|
439
|
+
layout?: LayoutConfiguration;
|
|
440
|
+
destinations: DestinationConfiguration[] | undefined;
|
|
441
|
+
tags?: Record<string, string>;
|
|
442
|
+
}
|
|
443
|
+
export interface StartCompositionResponse {
|
|
444
|
+
composition?: Composition;
|
|
445
|
+
}
|
|
446
|
+
export interface StopCompositionRequest {
|
|
447
|
+
arn: string | undefined;
|
|
448
|
+
}
|
|
449
|
+
export interface StopCompositionResponse {}
|
|
250
450
|
export interface TagResourceRequest {
|
|
251
451
|
resourceArn: string | undefined;
|
|
252
452
|
tags: Record<string, string> | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCompositionsCommandInput,
|
|
4
|
+
ListCompositionsCommandOutput,
|
|
5
|
+
} from "../commands/ListCompositionsCommand";
|
|
6
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCompositions(
|
|
8
|
+
config: IVSRealTimePaginationConfiguration,
|
|
9
|
+
input: ListCompositionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCompositionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEncoderConfigurationsCommandInput,
|
|
4
|
+
ListEncoderConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListEncoderConfigurationsCommand";
|
|
6
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEncoderConfigurations(
|
|
8
|
+
config: IVSRealTimePaginationConfiguration,
|
|
9
|
+
input: ListEncoderConfigurationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEncoderConfigurationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListStorageConfigurationsCommandInput,
|
|
4
|
+
ListStorageConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListStorageConfigurationsCommand";
|
|
6
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListStorageConfigurations(
|
|
8
|
+
config: IVSRealTimePaginationConfiguration,
|
|
9
|
+
input: ListStorageConfigurationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListStorageConfigurationsCommandOutput>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCompositionsPaginator";
|
|
3
|
+
export * from "./ListEncoderConfigurationsPaginator";
|
|
2
4
|
export * from "./ListParticipantEventsPaginator";
|
|
3
5
|
export * from "./ListParticipantsPaginator";
|
|
4
6
|
export * from "./ListStageSessionsPaginator";
|
|
5
7
|
export * from "./ListStagesPaginator";
|
|
8
|
+
export * from "./ListStorageConfigurationsPaginator";
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateEncoderConfigurationCommandInput,
|
|
8
|
+
CreateEncoderConfigurationCommandOutput,
|
|
9
|
+
} from "../commands/CreateEncoderConfigurationCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateParticipantTokenCommandInput,
|
|
8
12
|
CreateParticipantTokenCommandOutput,
|
|
@@ -11,14 +15,34 @@ import {
|
|
|
11
15
|
CreateStageCommandInput,
|
|
12
16
|
CreateStageCommandOutput,
|
|
13
17
|
} from "../commands/CreateStageCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateStorageConfigurationCommandInput,
|
|
20
|
+
CreateStorageConfigurationCommandOutput,
|
|
21
|
+
} from "../commands/CreateStorageConfigurationCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteEncoderConfigurationCommandInput,
|
|
24
|
+
DeleteEncoderConfigurationCommandOutput,
|
|
25
|
+
} from "../commands/DeleteEncoderConfigurationCommand";
|
|
14
26
|
import {
|
|
15
27
|
DeleteStageCommandInput,
|
|
16
28
|
DeleteStageCommandOutput,
|
|
17
29
|
} from "../commands/DeleteStageCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteStorageConfigurationCommandInput,
|
|
32
|
+
DeleteStorageConfigurationCommandOutput,
|
|
33
|
+
} from "../commands/DeleteStorageConfigurationCommand";
|
|
18
34
|
import {
|
|
19
35
|
DisconnectParticipantCommandInput,
|
|
20
36
|
DisconnectParticipantCommandOutput,
|
|
21
37
|
} from "../commands/DisconnectParticipantCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetCompositionCommandInput,
|
|
40
|
+
GetCompositionCommandOutput,
|
|
41
|
+
} from "../commands/GetCompositionCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetEncoderConfigurationCommandInput,
|
|
44
|
+
GetEncoderConfigurationCommandOutput,
|
|
45
|
+
} from "../commands/GetEncoderConfigurationCommand";
|
|
22
46
|
import {
|
|
23
47
|
GetParticipantCommandInput,
|
|
24
48
|
GetParticipantCommandOutput,
|
|
@@ -31,6 +55,18 @@ import {
|
|
|
31
55
|
GetStageSessionCommandInput,
|
|
32
56
|
GetStageSessionCommandOutput,
|
|
33
57
|
} from "../commands/GetStageSessionCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetStorageConfigurationCommandInput,
|
|
60
|
+
GetStorageConfigurationCommandOutput,
|
|
61
|
+
} from "../commands/GetStorageConfigurationCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListCompositionsCommandInput,
|
|
64
|
+
ListCompositionsCommandOutput,
|
|
65
|
+
} from "../commands/ListCompositionsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListEncoderConfigurationsCommandInput,
|
|
68
|
+
ListEncoderConfigurationsCommandOutput,
|
|
69
|
+
} from "../commands/ListEncoderConfigurationsCommand";
|
|
34
70
|
import {
|
|
35
71
|
ListParticipantEventsCommandInput,
|
|
36
72
|
ListParticipantEventsCommandOutput,
|
|
@@ -47,10 +83,22 @@ import {
|
|
|
47
83
|
ListStageSessionsCommandInput,
|
|
48
84
|
ListStageSessionsCommandOutput,
|
|
49
85
|
} from "../commands/ListStageSessionsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListStorageConfigurationsCommandInput,
|
|
88
|
+
ListStorageConfigurationsCommandOutput,
|
|
89
|
+
} from "../commands/ListStorageConfigurationsCommand";
|
|
50
90
|
import {
|
|
51
91
|
ListTagsForResourceCommandInput,
|
|
52
92
|
ListTagsForResourceCommandOutput,
|
|
53
93
|
} from "../commands/ListTagsForResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
StartCompositionCommandInput,
|
|
96
|
+
StartCompositionCommandOutput,
|
|
97
|
+
} from "../commands/StartCompositionCommand";
|
|
98
|
+
import {
|
|
99
|
+
StopCompositionCommandInput,
|
|
100
|
+
StopCompositionCommandOutput,
|
|
101
|
+
} from "../commands/StopCompositionCommand";
|
|
54
102
|
import {
|
|
55
103
|
TagResourceCommandInput,
|
|
56
104
|
TagResourceCommandOutput,
|
|
@@ -63,6 +111,10 @@ import {
|
|
|
63
111
|
UpdateStageCommandInput,
|
|
64
112
|
UpdateStageCommandOutput,
|
|
65
113
|
} from "../commands/UpdateStageCommand";
|
|
114
|
+
export declare const se_CreateEncoderConfigurationCommand: (
|
|
115
|
+
input: CreateEncoderConfigurationCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
66
118
|
export declare const se_CreateParticipantTokenCommand: (
|
|
67
119
|
input: CreateParticipantTokenCommandInput,
|
|
68
120
|
context: __SerdeContext
|
|
@@ -71,14 +123,34 @@ export declare const se_CreateStageCommand: (
|
|
|
71
123
|
input: CreateStageCommandInput,
|
|
72
124
|
context: __SerdeContext
|
|
73
125
|
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_CreateStorageConfigurationCommand: (
|
|
127
|
+
input: CreateStorageConfigurationCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_DeleteEncoderConfigurationCommand: (
|
|
131
|
+
input: DeleteEncoderConfigurationCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
74
134
|
export declare const se_DeleteStageCommand: (
|
|
75
135
|
input: DeleteStageCommandInput,
|
|
76
136
|
context: __SerdeContext
|
|
77
137
|
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_DeleteStorageConfigurationCommand: (
|
|
139
|
+
input: DeleteStorageConfigurationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
78
142
|
export declare const se_DisconnectParticipantCommand: (
|
|
79
143
|
input: DisconnectParticipantCommandInput,
|
|
80
144
|
context: __SerdeContext
|
|
81
145
|
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_GetCompositionCommand: (
|
|
147
|
+
input: GetCompositionCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_GetEncoderConfigurationCommand: (
|
|
151
|
+
input: GetEncoderConfigurationCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
82
154
|
export declare const se_GetParticipantCommand: (
|
|
83
155
|
input: GetParticipantCommandInput,
|
|
84
156
|
context: __SerdeContext
|
|
@@ -91,6 +163,18 @@ export declare const se_GetStageSessionCommand: (
|
|
|
91
163
|
input: GetStageSessionCommandInput,
|
|
92
164
|
context: __SerdeContext
|
|
93
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_GetStorageConfigurationCommand: (
|
|
167
|
+
input: GetStorageConfigurationCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_ListCompositionsCommand: (
|
|
171
|
+
input: ListCompositionsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_ListEncoderConfigurationsCommand: (
|
|
175
|
+
input: ListEncoderConfigurationsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
94
178
|
export declare const se_ListParticipantEventsCommand: (
|
|
95
179
|
input: ListParticipantEventsCommandInput,
|
|
96
180
|
context: __SerdeContext
|
|
@@ -107,10 +191,22 @@ export declare const se_ListStageSessionsCommand: (
|
|
|
107
191
|
input: ListStageSessionsCommandInput,
|
|
108
192
|
context: __SerdeContext
|
|
109
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_ListStorageConfigurationsCommand: (
|
|
195
|
+
input: ListStorageConfigurationsCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
110
198
|
export declare const se_ListTagsForResourceCommand: (
|
|
111
199
|
input: ListTagsForResourceCommandInput,
|
|
112
200
|
context: __SerdeContext
|
|
113
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_StartCompositionCommand: (
|
|
203
|
+
input: StartCompositionCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_StopCompositionCommand: (
|
|
207
|
+
input: StopCompositionCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
114
210
|
export declare const se_TagResourceCommand: (
|
|
115
211
|
input: TagResourceCommandInput,
|
|
116
212
|
context: __SerdeContext
|
|
@@ -123,6 +219,10 @@ export declare const se_UpdateStageCommand: (
|
|
|
123
219
|
input: UpdateStageCommandInput,
|
|
124
220
|
context: __SerdeContext
|
|
125
221
|
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const de_CreateEncoderConfigurationCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateEncoderConfigurationCommandOutput>;
|
|
126
226
|
export declare const de_CreateParticipantTokenCommand: (
|
|
127
227
|
output: __HttpResponse,
|
|
128
228
|
context: __SerdeContext
|
|
@@ -131,14 +231,34 @@ export declare const de_CreateStageCommand: (
|
|
|
131
231
|
output: __HttpResponse,
|
|
132
232
|
context: __SerdeContext
|
|
133
233
|
) => Promise<CreateStageCommandOutput>;
|
|
234
|
+
export declare const de_CreateStorageConfigurationCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<CreateStorageConfigurationCommandOutput>;
|
|
238
|
+
export declare const de_DeleteEncoderConfigurationCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DeleteEncoderConfigurationCommandOutput>;
|
|
134
242
|
export declare const de_DeleteStageCommand: (
|
|
135
243
|
output: __HttpResponse,
|
|
136
244
|
context: __SerdeContext
|
|
137
245
|
) => Promise<DeleteStageCommandOutput>;
|
|
246
|
+
export declare const de_DeleteStorageConfigurationCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DeleteStorageConfigurationCommandOutput>;
|
|
138
250
|
export declare const de_DisconnectParticipantCommand: (
|
|
139
251
|
output: __HttpResponse,
|
|
140
252
|
context: __SerdeContext
|
|
141
253
|
) => Promise<DisconnectParticipantCommandOutput>;
|
|
254
|
+
export declare const de_GetCompositionCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetCompositionCommandOutput>;
|
|
258
|
+
export declare const de_GetEncoderConfigurationCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<GetEncoderConfigurationCommandOutput>;
|
|
142
262
|
export declare const de_GetParticipantCommand: (
|
|
143
263
|
output: __HttpResponse,
|
|
144
264
|
context: __SerdeContext
|
|
@@ -151,6 +271,18 @@ export declare const de_GetStageSessionCommand: (
|
|
|
151
271
|
output: __HttpResponse,
|
|
152
272
|
context: __SerdeContext
|
|
153
273
|
) => Promise<GetStageSessionCommandOutput>;
|
|
274
|
+
export declare const de_GetStorageConfigurationCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<GetStorageConfigurationCommandOutput>;
|
|
278
|
+
export declare const de_ListCompositionsCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<ListCompositionsCommandOutput>;
|
|
282
|
+
export declare const de_ListEncoderConfigurationsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListEncoderConfigurationsCommandOutput>;
|
|
154
286
|
export declare const de_ListParticipantEventsCommand: (
|
|
155
287
|
output: __HttpResponse,
|
|
156
288
|
context: __SerdeContext
|
|
@@ -167,10 +299,22 @@ export declare const de_ListStageSessionsCommand: (
|
|
|
167
299
|
output: __HttpResponse,
|
|
168
300
|
context: __SerdeContext
|
|
169
301
|
) => Promise<ListStageSessionsCommandOutput>;
|
|
302
|
+
export declare const de_ListStorageConfigurationsCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<ListStorageConfigurationsCommandOutput>;
|
|
170
306
|
export declare const de_ListTagsForResourceCommand: (
|
|
171
307
|
output: __HttpResponse,
|
|
172
308
|
context: __SerdeContext
|
|
173
309
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
310
|
+
export declare const de_StartCompositionCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<StartCompositionCommandOutput>;
|
|
314
|
+
export declare const de_StopCompositionCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<StopCompositionCommandOutput>;
|
|
174
318
|
export declare const de_TagResourceCommand: (
|
|
175
319
|
output: __HttpResponse,
|
|
176
320
|
context: __SerdeContext
|