@aws-sdk/client-mediaconnect 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/MediaConnect.d.ts +0 -30
- package/dist-types/ts3.4/MediaConnectClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddFlowMediaStreamsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddFlowOutputsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddFlowSourcesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddFlowVpcInterfacesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GrantFlowEntitlementsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListEntitlementsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListReservationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveFlowMediaStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveFlowOutputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveFlowSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveFlowVpcInterfaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RevokeFlowEntitlementCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFlowEntitlementCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFlowMediaStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFlowOutputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFlowSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/MediaConnectServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -475
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForFlowActive.d.ts +0 -2
- package/dist-types/ts3.4/waiters/waitForFlowDeleted.d.ts +0 -2
- package/dist-types/ts3.4/waiters/waitForFlowStandby.d.ts +0 -2
- package/package.json +27 -27
|
@@ -30,26 +30,17 @@ export declare enum Tcs {
|
|
|
30
30
|
ST2065_1 = "ST2065-1",
|
|
31
31
|
ST428_1 = "ST428-1",
|
|
32
32
|
}
|
|
33
|
-
|
|
34
33
|
export interface FmtpRequest {
|
|
35
34
|
ChannelOrder?: string;
|
|
36
|
-
|
|
37
35
|
Colorimetry?: Colorimetry | string;
|
|
38
|
-
|
|
39
36
|
ExactFramerate?: string;
|
|
40
|
-
|
|
41
37
|
Par?: string;
|
|
42
|
-
|
|
43
38
|
Range?: Range | string;
|
|
44
|
-
|
|
45
39
|
ScanMode?: ScanMode | string;
|
|
46
|
-
|
|
47
40
|
Tcs?: Tcs | string;
|
|
48
41
|
}
|
|
49
|
-
|
|
50
42
|
export interface MediaStreamAttributesRequest {
|
|
51
43
|
Fmtp?: FmtpRequest;
|
|
52
|
-
|
|
53
44
|
Lang?: string;
|
|
54
45
|
}
|
|
55
46
|
export declare enum MediaStreamType {
|
|
@@ -57,20 +48,13 @@ export declare enum MediaStreamType {
|
|
|
57
48
|
audio = "audio",
|
|
58
49
|
video = "video",
|
|
59
50
|
}
|
|
60
|
-
|
|
61
51
|
export interface AddMediaStreamRequest {
|
|
62
52
|
Attributes?: MediaStreamAttributesRequest;
|
|
63
|
-
|
|
64
53
|
ClockRate?: number;
|
|
65
|
-
|
|
66
54
|
Description?: string;
|
|
67
|
-
|
|
68
55
|
MediaStreamId: number | undefined;
|
|
69
|
-
|
|
70
56
|
MediaStreamName: string | undefined;
|
|
71
|
-
|
|
72
57
|
MediaStreamType: MediaStreamType | string | undefined;
|
|
73
|
-
|
|
74
58
|
VideoFormat?: string;
|
|
75
59
|
}
|
|
76
60
|
export declare enum Algorithm {
|
|
@@ -83,36 +67,23 @@ export declare enum KeyType {
|
|
|
83
67
|
srt_password = "srt-password",
|
|
84
68
|
static_key = "static-key",
|
|
85
69
|
}
|
|
86
|
-
|
|
87
70
|
export interface Encryption {
|
|
88
71
|
Algorithm?: Algorithm | string;
|
|
89
|
-
|
|
90
72
|
ConstantInitializationVector?: string;
|
|
91
|
-
|
|
92
73
|
DeviceId?: string;
|
|
93
|
-
|
|
94
74
|
KeyType?: KeyType | string;
|
|
95
|
-
|
|
96
75
|
Region?: string;
|
|
97
|
-
|
|
98
76
|
ResourceId?: string;
|
|
99
|
-
|
|
100
77
|
RoleArn: string | undefined;
|
|
101
|
-
|
|
102
78
|
SecretArn?: string;
|
|
103
|
-
|
|
104
79
|
Url?: string;
|
|
105
80
|
}
|
|
106
|
-
|
|
107
81
|
export interface InterfaceRequest {
|
|
108
82
|
Name: string | undefined;
|
|
109
83
|
}
|
|
110
|
-
|
|
111
84
|
export interface DestinationConfigurationRequest {
|
|
112
85
|
DestinationIp: string | undefined;
|
|
113
|
-
|
|
114
86
|
DestinationPort: number | undefined;
|
|
115
|
-
|
|
116
87
|
Interface: InterfaceRequest | undefined;
|
|
117
88
|
}
|
|
118
89
|
export declare enum EncodingName {
|
|
@@ -125,20 +96,14 @@ export declare enum EncoderProfile {
|
|
|
125
96
|
high = "high",
|
|
126
97
|
main = "main",
|
|
127
98
|
}
|
|
128
|
-
|
|
129
99
|
export interface EncodingParametersRequest {
|
|
130
100
|
CompressionFactor: number | undefined;
|
|
131
|
-
|
|
132
101
|
EncoderProfile: EncoderProfile | string | undefined;
|
|
133
102
|
}
|
|
134
|
-
|
|
135
103
|
export interface MediaStreamOutputConfigurationRequest {
|
|
136
104
|
DestinationConfigurations?: DestinationConfigurationRequest[];
|
|
137
|
-
|
|
138
105
|
EncodingName: EncodingName | string | undefined;
|
|
139
|
-
|
|
140
106
|
EncodingParameters?: EncodingParametersRequest;
|
|
141
|
-
|
|
142
107
|
MediaStreamName: string | undefined;
|
|
143
108
|
}
|
|
144
109
|
export declare enum Protocol {
|
|
@@ -152,110 +117,68 @@ export declare enum Protocol {
|
|
|
152
117
|
zixi_pull = "zixi-pull",
|
|
153
118
|
zixi_push = "zixi-push",
|
|
154
119
|
}
|
|
155
|
-
|
|
156
120
|
export interface VpcInterfaceAttachment {
|
|
157
121
|
VpcInterfaceName?: string;
|
|
158
122
|
}
|
|
159
|
-
|
|
160
123
|
export interface AddOutputRequest {
|
|
161
124
|
CidrAllowList?: string[];
|
|
162
|
-
|
|
163
125
|
Description?: string;
|
|
164
|
-
|
|
165
126
|
Destination?: string;
|
|
166
|
-
|
|
167
127
|
Encryption?: Encryption;
|
|
168
|
-
|
|
169
128
|
MaxLatency?: number;
|
|
170
|
-
|
|
171
129
|
MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[];
|
|
172
|
-
|
|
173
130
|
MinLatency?: number;
|
|
174
|
-
|
|
175
131
|
Name?: string;
|
|
176
|
-
|
|
177
132
|
Port?: number;
|
|
178
|
-
|
|
179
133
|
Protocol: Protocol | string | undefined;
|
|
180
|
-
|
|
181
134
|
RemoteId?: string;
|
|
182
|
-
|
|
183
135
|
SenderControlPort?: number;
|
|
184
|
-
|
|
185
136
|
SmoothingLatency?: number;
|
|
186
|
-
|
|
187
137
|
StreamId?: string;
|
|
188
|
-
|
|
189
138
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
190
139
|
}
|
|
191
|
-
|
|
192
140
|
export interface Interface {
|
|
193
141
|
Name: string | undefined;
|
|
194
142
|
}
|
|
195
|
-
|
|
196
143
|
export interface DestinationConfiguration {
|
|
197
144
|
DestinationIp: string | undefined;
|
|
198
|
-
|
|
199
145
|
DestinationPort: number | undefined;
|
|
200
|
-
|
|
201
146
|
Interface: Interface | undefined;
|
|
202
|
-
|
|
203
147
|
OutboundIp: string | undefined;
|
|
204
148
|
}
|
|
205
149
|
export declare enum EntitlementStatus {
|
|
206
150
|
DISABLED = "DISABLED",
|
|
207
151
|
ENABLED = "ENABLED",
|
|
208
152
|
}
|
|
209
|
-
|
|
210
153
|
export interface Entitlement {
|
|
211
154
|
DataTransferSubscriberFeePercent?: number;
|
|
212
|
-
|
|
213
155
|
Description?: string;
|
|
214
|
-
|
|
215
156
|
Encryption?: Encryption;
|
|
216
|
-
|
|
217
157
|
EntitlementArn: string | undefined;
|
|
218
|
-
|
|
219
158
|
EntitlementStatus?: EntitlementStatus | string;
|
|
220
|
-
|
|
221
159
|
Name: string | undefined;
|
|
222
|
-
|
|
223
160
|
Subscribers: string[] | undefined;
|
|
224
161
|
}
|
|
225
|
-
|
|
226
162
|
export interface GrantEntitlementRequest {
|
|
227
163
|
DataTransferSubscriberFeePercent?: number;
|
|
228
|
-
|
|
229
164
|
Description?: string;
|
|
230
|
-
|
|
231
165
|
Encryption?: Encryption;
|
|
232
|
-
|
|
233
166
|
EntitlementStatus?: EntitlementStatus | string;
|
|
234
|
-
|
|
235
167
|
Name?: string;
|
|
236
|
-
|
|
237
168
|
Subscribers: string[] | undefined;
|
|
238
169
|
}
|
|
239
|
-
|
|
240
170
|
export interface InputConfiguration {
|
|
241
171
|
InputIp: string | undefined;
|
|
242
|
-
|
|
243
172
|
InputPort: number | undefined;
|
|
244
|
-
|
|
245
173
|
Interface: Interface | undefined;
|
|
246
174
|
}
|
|
247
|
-
|
|
248
175
|
export interface InputConfigurationRequest {
|
|
249
176
|
InputPort: number | undefined;
|
|
250
|
-
|
|
251
177
|
Interface: InterfaceRequest | undefined;
|
|
252
178
|
}
|
|
253
|
-
|
|
254
179
|
export interface ListedEntitlement {
|
|
255
180
|
DataTransferSubscriberFeePercent?: number;
|
|
256
|
-
|
|
257
181
|
EntitlementArn: string | undefined;
|
|
258
|
-
|
|
259
182
|
EntitlementName: string | undefined;
|
|
260
183
|
}
|
|
261
184
|
export declare enum MaintenanceDay {
|
|
@@ -267,14 +190,10 @@ export declare enum MaintenanceDay {
|
|
|
267
190
|
Tuesday = "Tuesday",
|
|
268
191
|
Wednesday = "Wednesday",
|
|
269
192
|
}
|
|
270
|
-
|
|
271
193
|
export interface Maintenance {
|
|
272
194
|
MaintenanceDay?: MaintenanceDay | string;
|
|
273
|
-
|
|
274
195
|
MaintenanceDeadline?: string;
|
|
275
|
-
|
|
276
196
|
MaintenanceScheduledDate?: string;
|
|
277
|
-
|
|
278
197
|
MaintenanceStartHour?: string;
|
|
279
198
|
}
|
|
280
199
|
export declare enum SourceType {
|
|
@@ -290,92 +209,56 @@ export declare enum Status {
|
|
|
290
209
|
STOPPING = "STOPPING",
|
|
291
210
|
UPDATING = "UPDATING",
|
|
292
211
|
}
|
|
293
|
-
|
|
294
212
|
export interface ListedFlow {
|
|
295
213
|
AvailabilityZone: string | undefined;
|
|
296
|
-
|
|
297
214
|
Description: string | undefined;
|
|
298
|
-
|
|
299
215
|
FlowArn: string | undefined;
|
|
300
|
-
|
|
301
216
|
Name: string | undefined;
|
|
302
|
-
|
|
303
217
|
SourceType: SourceType | string | undefined;
|
|
304
|
-
|
|
305
218
|
Status: Status | string | undefined;
|
|
306
|
-
|
|
307
219
|
Maintenance?: Maintenance;
|
|
308
220
|
}
|
|
309
|
-
|
|
310
221
|
export interface Fmtp {
|
|
311
222
|
ChannelOrder?: string;
|
|
312
|
-
|
|
313
223
|
Colorimetry?: Colorimetry | string;
|
|
314
|
-
|
|
315
224
|
ExactFramerate?: string;
|
|
316
|
-
|
|
317
225
|
Par?: string;
|
|
318
|
-
|
|
319
226
|
Range?: Range | string;
|
|
320
|
-
|
|
321
227
|
ScanMode?: ScanMode | string;
|
|
322
|
-
|
|
323
228
|
Tcs?: Tcs | string;
|
|
324
229
|
}
|
|
325
|
-
|
|
326
230
|
export interface MediaStreamAttributes {
|
|
327
231
|
Fmtp: Fmtp | undefined;
|
|
328
|
-
|
|
329
232
|
Lang?: string;
|
|
330
233
|
}
|
|
331
|
-
|
|
332
234
|
export interface MediaStream {
|
|
333
235
|
Attributes?: MediaStreamAttributes;
|
|
334
|
-
|
|
335
236
|
ClockRate?: number;
|
|
336
|
-
|
|
337
237
|
Description?: string;
|
|
338
|
-
|
|
339
238
|
Fmt: number | undefined;
|
|
340
|
-
|
|
341
239
|
MediaStreamId: number | undefined;
|
|
342
|
-
|
|
343
240
|
MediaStreamName: string | undefined;
|
|
344
|
-
|
|
345
241
|
MediaStreamType: MediaStreamType | string | undefined;
|
|
346
|
-
|
|
347
242
|
VideoFormat?: string;
|
|
348
243
|
}
|
|
349
|
-
|
|
350
244
|
export interface EncodingParameters {
|
|
351
245
|
CompressionFactor: number | undefined;
|
|
352
|
-
|
|
353
246
|
EncoderProfile: EncoderProfile | string | undefined;
|
|
354
247
|
}
|
|
355
|
-
|
|
356
248
|
export interface MediaStreamOutputConfiguration {
|
|
357
249
|
DestinationConfigurations?: DestinationConfiguration[];
|
|
358
|
-
|
|
359
250
|
EncodingName: EncodingName | string | undefined;
|
|
360
|
-
|
|
361
251
|
EncodingParameters?: EncodingParameters;
|
|
362
|
-
|
|
363
252
|
MediaStreamName: string | undefined;
|
|
364
253
|
}
|
|
365
|
-
|
|
366
254
|
export interface MediaStreamSourceConfiguration {
|
|
367
255
|
EncodingName: EncodingName | string | undefined;
|
|
368
|
-
|
|
369
256
|
InputConfigurations?: InputConfiguration[];
|
|
370
|
-
|
|
371
257
|
MediaStreamName: string | undefined;
|
|
372
258
|
}
|
|
373
|
-
|
|
374
259
|
export interface MediaStreamSourceConfigurationRequest {
|
|
375
260
|
EncodingName: EncodingName | string | undefined;
|
|
376
|
-
|
|
377
261
|
InputConfigurations?: InputConfigurationRequest[];
|
|
378
|
-
|
|
379
262
|
MediaStreamName: string | undefined;
|
|
380
263
|
}
|
|
381
264
|
export declare enum DurationUnits {
|
|
@@ -387,80 +270,46 @@ export declare enum PriceUnits {
|
|
|
387
270
|
export declare enum ResourceType {
|
|
388
271
|
Mbps_Outbound_Bandwidth = "Mbps_Outbound_Bandwidth",
|
|
389
272
|
}
|
|
390
|
-
|
|
391
273
|
export interface ResourceSpecification {
|
|
392
274
|
ReservedBitrate?: number;
|
|
393
|
-
|
|
394
275
|
ResourceType: ResourceType | string | undefined;
|
|
395
276
|
}
|
|
396
|
-
|
|
397
277
|
export interface Offering {
|
|
398
278
|
CurrencyCode: string | undefined;
|
|
399
|
-
|
|
400
279
|
Duration: number | undefined;
|
|
401
|
-
|
|
402
280
|
DurationUnits: DurationUnits | string | undefined;
|
|
403
|
-
|
|
404
281
|
OfferingArn: string | undefined;
|
|
405
|
-
|
|
406
282
|
OfferingDescription: string | undefined;
|
|
407
|
-
|
|
408
283
|
PricePerUnit: string | undefined;
|
|
409
|
-
|
|
410
284
|
PriceUnits: PriceUnits | string | undefined;
|
|
411
|
-
|
|
412
285
|
ResourceSpecification: ResourceSpecification | undefined;
|
|
413
286
|
}
|
|
414
|
-
|
|
415
287
|
export interface Transport {
|
|
416
288
|
CidrAllowList?: string[];
|
|
417
|
-
|
|
418
289
|
MaxBitrate?: number;
|
|
419
|
-
|
|
420
290
|
MaxLatency?: number;
|
|
421
|
-
|
|
422
291
|
MaxSyncBuffer?: number;
|
|
423
|
-
|
|
424
292
|
MinLatency?: number;
|
|
425
|
-
|
|
426
293
|
Protocol: Protocol | string | undefined;
|
|
427
|
-
|
|
428
294
|
RemoteId?: string;
|
|
429
|
-
|
|
430
295
|
SenderControlPort?: number;
|
|
431
|
-
|
|
432
296
|
SenderIpAddress?: string;
|
|
433
|
-
|
|
434
297
|
SmoothingLatency?: number;
|
|
435
|
-
|
|
436
298
|
StreamId?: string;
|
|
437
299
|
}
|
|
438
|
-
|
|
439
300
|
export interface Output {
|
|
440
301
|
DataTransferSubscriberFeePercent?: number;
|
|
441
|
-
|
|
442
302
|
Description?: string;
|
|
443
|
-
|
|
444
303
|
Destination?: string;
|
|
445
|
-
|
|
446
304
|
Encryption?: Encryption;
|
|
447
|
-
|
|
448
305
|
EntitlementArn?: string;
|
|
449
|
-
|
|
450
306
|
ListenerAddress?: string;
|
|
451
|
-
|
|
452
307
|
MediaLiveInputArn?: string;
|
|
453
|
-
|
|
454
308
|
MediaStreamOutputConfigurations?: MediaStreamOutputConfiguration[];
|
|
455
|
-
|
|
456
309
|
Name: string | undefined;
|
|
457
|
-
|
|
458
310
|
OutputArn: string | undefined;
|
|
459
|
-
|
|
460
311
|
Port?: number;
|
|
461
|
-
|
|
462
312
|
Transport?: Transport;
|
|
463
|
-
|
|
464
313
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
465
314
|
}
|
|
466
315
|
export declare enum ReservationState {
|
|
@@ -469,258 +318,166 @@ export declare enum ReservationState {
|
|
|
469
318
|
EXPIRED = "EXPIRED",
|
|
470
319
|
PROCESSING = "PROCESSING",
|
|
471
320
|
}
|
|
472
|
-
|
|
473
321
|
export interface Reservation {
|
|
474
322
|
CurrencyCode: string | undefined;
|
|
475
|
-
|
|
476
323
|
Duration: number | undefined;
|
|
477
|
-
|
|
478
324
|
DurationUnits: DurationUnits | string | undefined;
|
|
479
|
-
|
|
480
325
|
End: string | undefined;
|
|
481
|
-
|
|
482
326
|
OfferingArn: string | undefined;
|
|
483
|
-
|
|
484
327
|
OfferingDescription: string | undefined;
|
|
485
|
-
|
|
486
328
|
PricePerUnit: string | undefined;
|
|
487
|
-
|
|
488
329
|
PriceUnits: PriceUnits | string | undefined;
|
|
489
|
-
|
|
490
330
|
ReservationArn: string | undefined;
|
|
491
|
-
|
|
492
331
|
ReservationName: string | undefined;
|
|
493
|
-
|
|
494
332
|
ReservationState: ReservationState | string | undefined;
|
|
495
|
-
|
|
496
333
|
ResourceSpecification: ResourceSpecification | undefined;
|
|
497
|
-
|
|
498
334
|
Start: string | undefined;
|
|
499
335
|
}
|
|
500
|
-
|
|
501
336
|
export interface SetSourceRequest {
|
|
502
337
|
Decryption?: Encryption;
|
|
503
|
-
|
|
504
338
|
Description?: string;
|
|
505
|
-
|
|
506
339
|
EntitlementArn?: string;
|
|
507
|
-
|
|
508
340
|
IngestPort?: number;
|
|
509
|
-
|
|
510
341
|
MaxBitrate?: number;
|
|
511
|
-
|
|
512
342
|
MaxLatency?: number;
|
|
513
|
-
|
|
514
343
|
MaxSyncBuffer?: number;
|
|
515
|
-
|
|
516
344
|
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
|
|
517
|
-
|
|
518
345
|
MinLatency?: number;
|
|
519
|
-
|
|
520
346
|
Name?: string;
|
|
521
|
-
|
|
522
347
|
Protocol?: Protocol | string;
|
|
523
|
-
|
|
524
348
|
SenderControlPort?: number;
|
|
525
|
-
|
|
526
349
|
SenderIpAddress?: string;
|
|
527
|
-
|
|
528
350
|
StreamId?: string;
|
|
529
|
-
|
|
530
351
|
VpcInterfaceName?: string;
|
|
531
|
-
|
|
532
352
|
WhitelistCidr?: string;
|
|
533
353
|
}
|
|
534
|
-
|
|
535
354
|
export interface Source {
|
|
536
355
|
DataTransferSubscriberFeePercent?: number;
|
|
537
|
-
|
|
538
356
|
Decryption?: Encryption;
|
|
539
|
-
|
|
540
357
|
Description?: string;
|
|
541
|
-
|
|
542
358
|
EntitlementArn?: string;
|
|
543
|
-
|
|
544
359
|
IngestIp?: string;
|
|
545
|
-
|
|
546
360
|
IngestPort?: number;
|
|
547
|
-
|
|
548
361
|
MediaStreamSourceConfigurations?: MediaStreamSourceConfiguration[];
|
|
549
|
-
|
|
550
362
|
Name: string | undefined;
|
|
551
|
-
|
|
552
363
|
SenderControlPort?: number;
|
|
553
|
-
|
|
554
364
|
SenderIpAddress?: string;
|
|
555
|
-
|
|
556
365
|
SourceArn: string | undefined;
|
|
557
|
-
|
|
558
366
|
Transport?: Transport;
|
|
559
|
-
|
|
560
367
|
VpcInterfaceName?: string;
|
|
561
|
-
|
|
562
368
|
WhitelistCidr?: string;
|
|
563
369
|
}
|
|
564
370
|
export declare enum NetworkInterfaceType {
|
|
565
371
|
efa = "efa",
|
|
566
372
|
ena = "ena",
|
|
567
373
|
}
|
|
568
|
-
|
|
569
374
|
export interface VpcInterface {
|
|
570
375
|
Name: string | undefined;
|
|
571
|
-
|
|
572
376
|
NetworkInterfaceIds: string[] | undefined;
|
|
573
|
-
|
|
574
377
|
NetworkInterfaceType: NetworkInterfaceType | string | undefined;
|
|
575
|
-
|
|
576
378
|
RoleArn: string | undefined;
|
|
577
|
-
|
|
578
379
|
SecurityGroupIds: string[] | undefined;
|
|
579
|
-
|
|
580
380
|
SubnetId: string | undefined;
|
|
581
381
|
}
|
|
582
|
-
|
|
583
382
|
export interface VpcInterfaceRequest {
|
|
584
383
|
Name: string | undefined;
|
|
585
|
-
|
|
586
384
|
NetworkInterfaceType?: NetworkInterfaceType | string;
|
|
587
|
-
|
|
588
385
|
RoleArn: string | undefined;
|
|
589
|
-
|
|
590
386
|
SecurityGroupIds: string[] | undefined;
|
|
591
|
-
|
|
592
387
|
SubnetId: string | undefined;
|
|
593
388
|
}
|
|
594
|
-
|
|
595
389
|
export interface AddFlowMediaStreamsRequest {
|
|
596
390
|
FlowArn: string | undefined;
|
|
597
|
-
|
|
598
391
|
MediaStreams: AddMediaStreamRequest[] | undefined;
|
|
599
392
|
}
|
|
600
393
|
export interface AddFlowMediaStreamsResponse {
|
|
601
394
|
FlowArn?: string;
|
|
602
|
-
|
|
603
395
|
MediaStreams?: MediaStream[];
|
|
604
396
|
}
|
|
605
|
-
|
|
606
397
|
export declare class BadRequestException extends __BaseException {
|
|
607
398
|
readonly name: "BadRequestException";
|
|
608
399
|
readonly $fault: "client";
|
|
609
|
-
|
|
610
400
|
Message: string | undefined;
|
|
611
|
-
|
|
612
401
|
constructor(
|
|
613
402
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
614
403
|
);
|
|
615
404
|
}
|
|
616
|
-
|
|
617
405
|
export declare class ForbiddenException extends __BaseException {
|
|
618
406
|
readonly name: "ForbiddenException";
|
|
619
407
|
readonly $fault: "client";
|
|
620
|
-
|
|
621
408
|
Message: string | undefined;
|
|
622
|
-
|
|
623
409
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
624
410
|
}
|
|
625
|
-
|
|
626
411
|
export declare class InternalServerErrorException extends __BaseException {
|
|
627
412
|
readonly name: "InternalServerErrorException";
|
|
628
413
|
readonly $fault: "server";
|
|
629
|
-
|
|
630
414
|
Message: string | undefined;
|
|
631
|
-
|
|
632
415
|
constructor(
|
|
633
416
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
634
417
|
);
|
|
635
418
|
}
|
|
636
|
-
|
|
637
419
|
export declare class NotFoundException extends __BaseException {
|
|
638
420
|
readonly name: "NotFoundException";
|
|
639
421
|
readonly $fault: "client";
|
|
640
|
-
|
|
641
422
|
Message: string | undefined;
|
|
642
|
-
|
|
643
423
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
644
424
|
}
|
|
645
|
-
|
|
646
425
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
647
426
|
readonly name: "ServiceUnavailableException";
|
|
648
427
|
readonly $fault: "server";
|
|
649
|
-
|
|
650
428
|
Message: string | undefined;
|
|
651
|
-
|
|
652
429
|
constructor(
|
|
653
430
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
654
431
|
);
|
|
655
432
|
}
|
|
656
|
-
|
|
657
433
|
export declare class TooManyRequestsException extends __BaseException {
|
|
658
434
|
readonly name: "TooManyRequestsException";
|
|
659
435
|
readonly $fault: "client";
|
|
660
|
-
|
|
661
436
|
Message: string | undefined;
|
|
662
|
-
|
|
663
437
|
constructor(
|
|
664
438
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
665
439
|
);
|
|
666
440
|
}
|
|
667
|
-
|
|
668
441
|
export declare class AddFlowOutputs420Exception extends __BaseException {
|
|
669
442
|
readonly name: "AddFlowOutputs420Exception";
|
|
670
443
|
readonly $fault: "client";
|
|
671
|
-
|
|
672
444
|
Message: string | undefined;
|
|
673
|
-
|
|
674
445
|
constructor(
|
|
675
446
|
opts: __ExceptionOptionType<AddFlowOutputs420Exception, __BaseException>
|
|
676
447
|
);
|
|
677
448
|
}
|
|
678
|
-
|
|
679
449
|
export interface AddFlowOutputsRequest {
|
|
680
450
|
FlowArn: string | undefined;
|
|
681
|
-
|
|
682
451
|
Outputs: AddOutputRequest[] | undefined;
|
|
683
452
|
}
|
|
684
453
|
export interface AddFlowOutputsResponse {
|
|
685
454
|
FlowArn?: string;
|
|
686
|
-
|
|
687
455
|
Outputs?: Output[];
|
|
688
456
|
}
|
|
689
|
-
|
|
690
457
|
export interface AddFlowSourcesRequest {
|
|
691
458
|
FlowArn: string | undefined;
|
|
692
|
-
|
|
693
459
|
Sources: SetSourceRequest[] | undefined;
|
|
694
460
|
}
|
|
695
461
|
export interface AddFlowSourcesResponse {
|
|
696
462
|
FlowArn?: string;
|
|
697
|
-
|
|
698
463
|
Sources?: Source[];
|
|
699
464
|
}
|
|
700
|
-
|
|
701
465
|
export interface AddFlowVpcInterfacesRequest {
|
|
702
466
|
FlowArn: string | undefined;
|
|
703
|
-
|
|
704
467
|
VpcInterfaces: VpcInterfaceRequest[] | undefined;
|
|
705
468
|
}
|
|
706
469
|
export interface AddFlowVpcInterfacesResponse {
|
|
707
470
|
FlowArn?: string;
|
|
708
|
-
|
|
709
471
|
VpcInterfaces?: VpcInterface[];
|
|
710
472
|
}
|
|
711
|
-
|
|
712
473
|
export interface AddMaintenance {
|
|
713
474
|
MaintenanceDay: MaintenanceDay | string | undefined;
|
|
714
|
-
|
|
715
475
|
MaintenanceStartHour: string | undefined;
|
|
716
476
|
}
|
|
717
|
-
|
|
718
477
|
export declare class CreateFlow420Exception extends __BaseException {
|
|
719
478
|
readonly name: "CreateFlow420Exception";
|
|
720
479
|
readonly $fault: "client";
|
|
721
|
-
|
|
722
480
|
Message: string | undefined;
|
|
723
|
-
|
|
724
481
|
constructor(
|
|
725
482
|
opts: __ExceptionOptionType<CreateFlow420Exception, __BaseException>
|
|
726
483
|
);
|
|
@@ -729,7 +486,6 @@ export declare enum FailoverMode {
|
|
|
729
486
|
FAILOVER = "FAILOVER",
|
|
730
487
|
MERGE = "MERGE",
|
|
731
488
|
}
|
|
732
|
-
|
|
733
489
|
export interface SourcePriority {
|
|
734
490
|
PrimarySource?: string;
|
|
735
491
|
}
|
|
@@ -737,63 +493,38 @@ export declare enum State {
|
|
|
737
493
|
DISABLED = "DISABLED",
|
|
738
494
|
ENABLED = "ENABLED",
|
|
739
495
|
}
|
|
740
|
-
|
|
741
496
|
export interface FailoverConfig {
|
|
742
497
|
FailoverMode?: FailoverMode | string;
|
|
743
|
-
|
|
744
498
|
RecoveryWindow?: number;
|
|
745
|
-
|
|
746
499
|
SourcePriority?: SourcePriority;
|
|
747
500
|
State?: State | string;
|
|
748
501
|
}
|
|
749
|
-
|
|
750
502
|
export interface CreateFlowRequest {
|
|
751
503
|
AvailabilityZone?: string;
|
|
752
|
-
|
|
753
504
|
Entitlements?: GrantEntitlementRequest[];
|
|
754
|
-
|
|
755
505
|
MediaStreams?: AddMediaStreamRequest[];
|
|
756
|
-
|
|
757
506
|
Name: string | undefined;
|
|
758
|
-
|
|
759
507
|
Outputs?: AddOutputRequest[];
|
|
760
|
-
|
|
761
508
|
Source?: SetSourceRequest;
|
|
762
|
-
|
|
763
509
|
SourceFailoverConfig?: FailoverConfig;
|
|
764
510
|
Sources?: SetSourceRequest[];
|
|
765
|
-
|
|
766
511
|
VpcInterfaces?: VpcInterfaceRequest[];
|
|
767
|
-
|
|
768
512
|
Maintenance?: AddMaintenance;
|
|
769
513
|
}
|
|
770
|
-
|
|
771
514
|
export interface Flow {
|
|
772
515
|
AvailabilityZone: string | undefined;
|
|
773
|
-
|
|
774
516
|
Description?: string;
|
|
775
|
-
|
|
776
517
|
EgressIp?: string;
|
|
777
|
-
|
|
778
518
|
Entitlements: Entitlement[] | undefined;
|
|
779
|
-
|
|
780
519
|
FlowArn: string | undefined;
|
|
781
|
-
|
|
782
520
|
MediaStreams?: MediaStream[];
|
|
783
|
-
|
|
784
521
|
Name: string | undefined;
|
|
785
|
-
|
|
786
522
|
Outputs: Output[] | undefined;
|
|
787
|
-
|
|
788
523
|
Source: Source | undefined;
|
|
789
|
-
|
|
790
524
|
SourceFailoverConfig?: FailoverConfig;
|
|
791
525
|
Sources?: Source[];
|
|
792
|
-
|
|
793
526
|
Status: Status | string | undefined;
|
|
794
|
-
|
|
795
527
|
VpcInterfaces?: VpcInterface[];
|
|
796
|
-
|
|
797
528
|
Maintenance?: Maintenance;
|
|
798
529
|
}
|
|
799
530
|
export interface CreateFlowResponse {
|
|
@@ -804,19 +535,16 @@ export interface DeleteFlowRequest {
|
|
|
804
535
|
}
|
|
805
536
|
export interface DeleteFlowResponse {
|
|
806
537
|
FlowArn?: string;
|
|
807
|
-
|
|
808
538
|
Status?: Status | string;
|
|
809
539
|
}
|
|
810
540
|
export interface DescribeFlowRequest {
|
|
811
541
|
FlowArn: string | undefined;
|
|
812
542
|
}
|
|
813
|
-
|
|
814
543
|
export interface Messages {
|
|
815
544
|
Errors: string[] | undefined;
|
|
816
545
|
}
|
|
817
546
|
export interface DescribeFlowResponse {
|
|
818
547
|
Flow?: Flow;
|
|
819
|
-
|
|
820
548
|
Messages?: Messages;
|
|
821
549
|
}
|
|
822
550
|
export interface DescribeOfferingRequest {
|
|
@@ -831,13 +559,10 @@ export interface DescribeReservationRequest {
|
|
|
831
559
|
export interface DescribeReservationResponse {
|
|
832
560
|
Reservation?: Reservation;
|
|
833
561
|
}
|
|
834
|
-
|
|
835
562
|
export declare class GrantFlowEntitlements420Exception extends __BaseException {
|
|
836
563
|
readonly name: "GrantFlowEntitlements420Exception";
|
|
837
564
|
readonly $fault: "client";
|
|
838
|
-
|
|
839
565
|
Message: string | undefined;
|
|
840
|
-
|
|
841
566
|
constructor(
|
|
842
567
|
opts: __ExceptionOptionType<
|
|
843
568
|
GrantFlowEntitlements420Exception,
|
|
@@ -845,55 +570,44 @@ export declare class GrantFlowEntitlements420Exception extends __BaseException {
|
|
|
845
570
|
>
|
|
846
571
|
);
|
|
847
572
|
}
|
|
848
|
-
|
|
849
573
|
export interface GrantFlowEntitlementsRequest {
|
|
850
574
|
Entitlements: GrantEntitlementRequest[] | undefined;
|
|
851
|
-
|
|
852
575
|
FlowArn: string | undefined;
|
|
853
576
|
}
|
|
854
577
|
export interface GrantFlowEntitlementsResponse {
|
|
855
578
|
Entitlements?: Entitlement[];
|
|
856
|
-
|
|
857
579
|
FlowArn?: string;
|
|
858
580
|
}
|
|
859
581
|
export interface ListEntitlementsRequest {
|
|
860
582
|
MaxResults?: number;
|
|
861
|
-
|
|
862
583
|
NextToken?: string;
|
|
863
584
|
}
|
|
864
585
|
export interface ListEntitlementsResponse {
|
|
865
586
|
Entitlements?: ListedEntitlement[];
|
|
866
|
-
|
|
867
587
|
NextToken?: string;
|
|
868
588
|
}
|
|
869
589
|
export interface ListFlowsRequest {
|
|
870
590
|
MaxResults?: number;
|
|
871
|
-
|
|
872
591
|
NextToken?: string;
|
|
873
592
|
}
|
|
874
593
|
export interface ListFlowsResponse {
|
|
875
594
|
Flows?: ListedFlow[];
|
|
876
|
-
|
|
877
595
|
NextToken?: string;
|
|
878
596
|
}
|
|
879
597
|
export interface ListOfferingsRequest {
|
|
880
598
|
MaxResults?: number;
|
|
881
|
-
|
|
882
599
|
NextToken?: string;
|
|
883
600
|
}
|
|
884
601
|
export interface ListOfferingsResponse {
|
|
885
602
|
NextToken?: string;
|
|
886
|
-
|
|
887
603
|
Offerings?: Offering[];
|
|
888
604
|
}
|
|
889
605
|
export interface ListReservationsRequest {
|
|
890
606
|
MaxResults?: number;
|
|
891
|
-
|
|
892
607
|
NextToken?: string;
|
|
893
608
|
}
|
|
894
609
|
export interface ListReservationsResponse {
|
|
895
610
|
NextToken?: string;
|
|
896
|
-
|
|
897
611
|
Reservations?: Reservation[];
|
|
898
612
|
}
|
|
899
613
|
export interface ListTagsForResourceRequest {
|
|
@@ -902,12 +616,9 @@ export interface ListTagsForResourceRequest {
|
|
|
902
616
|
export interface ListTagsForResourceResponse {
|
|
903
617
|
Tags?: Record<string, string>;
|
|
904
618
|
}
|
|
905
|
-
|
|
906
619
|
export interface PurchaseOfferingRequest {
|
|
907
620
|
OfferingArn: string | undefined;
|
|
908
|
-
|
|
909
621
|
ReservationName: string | undefined;
|
|
910
|
-
|
|
911
622
|
Start: string | undefined;
|
|
912
623
|
}
|
|
913
624
|
export interface PurchaseOfferingResponse {
|
|
@@ -915,54 +626,43 @@ export interface PurchaseOfferingResponse {
|
|
|
915
626
|
}
|
|
916
627
|
export interface RemoveFlowMediaStreamRequest {
|
|
917
628
|
FlowArn: string | undefined;
|
|
918
|
-
|
|
919
629
|
MediaStreamName: string | undefined;
|
|
920
630
|
}
|
|
921
631
|
export interface RemoveFlowMediaStreamResponse {
|
|
922
632
|
FlowArn?: string;
|
|
923
|
-
|
|
924
633
|
MediaStreamName?: string;
|
|
925
634
|
}
|
|
926
635
|
export interface RemoveFlowOutputRequest {
|
|
927
636
|
FlowArn: string | undefined;
|
|
928
|
-
|
|
929
637
|
OutputArn: string | undefined;
|
|
930
638
|
}
|
|
931
639
|
export interface RemoveFlowOutputResponse {
|
|
932
640
|
FlowArn?: string;
|
|
933
|
-
|
|
934
641
|
OutputArn?: string;
|
|
935
642
|
}
|
|
936
643
|
export interface RemoveFlowSourceRequest {
|
|
937
644
|
FlowArn: string | undefined;
|
|
938
|
-
|
|
939
645
|
SourceArn: string | undefined;
|
|
940
646
|
}
|
|
941
647
|
export interface RemoveFlowSourceResponse {
|
|
942
648
|
FlowArn?: string;
|
|
943
|
-
|
|
944
649
|
SourceArn?: string;
|
|
945
650
|
}
|
|
946
651
|
export interface RemoveFlowVpcInterfaceRequest {
|
|
947
652
|
FlowArn: string | undefined;
|
|
948
|
-
|
|
949
653
|
VpcInterfaceName: string | undefined;
|
|
950
654
|
}
|
|
951
655
|
export interface RemoveFlowVpcInterfaceResponse {
|
|
952
656
|
FlowArn?: string;
|
|
953
|
-
|
|
954
657
|
NonDeletedNetworkInterfaceIds?: string[];
|
|
955
|
-
|
|
956
658
|
VpcInterfaceName?: string;
|
|
957
659
|
}
|
|
958
660
|
export interface RevokeFlowEntitlementRequest {
|
|
959
661
|
EntitlementArn: string | undefined;
|
|
960
|
-
|
|
961
662
|
FlowArn: string | undefined;
|
|
962
663
|
}
|
|
963
664
|
export interface RevokeFlowEntitlementResponse {
|
|
964
665
|
EntitlementArn?: string;
|
|
965
|
-
|
|
966
666
|
FlowArn?: string;
|
|
967
667
|
}
|
|
968
668
|
export interface StartFlowRequest {
|
|
@@ -970,7 +670,6 @@ export interface StartFlowRequest {
|
|
|
970
670
|
}
|
|
971
671
|
export interface StartFlowResponse {
|
|
972
672
|
FlowArn?: string;
|
|
973
|
-
|
|
974
673
|
Status?: Status | string;
|
|
975
674
|
}
|
|
976
675
|
export interface StopFlowRequest {
|
|
@@ -978,559 +677,385 @@ export interface StopFlowRequest {
|
|
|
978
677
|
}
|
|
979
678
|
export interface StopFlowResponse {
|
|
980
679
|
FlowArn?: string;
|
|
981
|
-
|
|
982
680
|
Status?: Status | string;
|
|
983
681
|
}
|
|
984
|
-
|
|
985
682
|
export interface TagResourceRequest {
|
|
986
683
|
ResourceArn: string | undefined;
|
|
987
|
-
|
|
988
684
|
Tags: Record<string, string> | undefined;
|
|
989
685
|
}
|
|
990
686
|
export interface UntagResourceRequest {
|
|
991
687
|
ResourceArn: string | undefined;
|
|
992
|
-
|
|
993
688
|
TagKeys: string[] | undefined;
|
|
994
689
|
}
|
|
995
|
-
|
|
996
690
|
export interface UpdateMaintenance {
|
|
997
691
|
MaintenanceDay?: MaintenanceDay | string;
|
|
998
|
-
|
|
999
692
|
MaintenanceScheduledDate?: string;
|
|
1000
|
-
|
|
1001
693
|
MaintenanceStartHour?: string;
|
|
1002
694
|
}
|
|
1003
|
-
|
|
1004
695
|
export interface UpdateFailoverConfig {
|
|
1005
696
|
FailoverMode?: FailoverMode | string;
|
|
1006
|
-
|
|
1007
697
|
RecoveryWindow?: number;
|
|
1008
|
-
|
|
1009
698
|
SourcePriority?: SourcePriority;
|
|
1010
699
|
State?: State | string;
|
|
1011
700
|
}
|
|
1012
|
-
|
|
1013
701
|
export interface UpdateFlowRequest {
|
|
1014
702
|
FlowArn: string | undefined;
|
|
1015
|
-
|
|
1016
703
|
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
1017
|
-
|
|
1018
704
|
Maintenance?: UpdateMaintenance;
|
|
1019
705
|
}
|
|
1020
706
|
export interface UpdateFlowResponse {
|
|
1021
707
|
Flow?: Flow;
|
|
1022
708
|
}
|
|
1023
|
-
|
|
1024
709
|
export interface UpdateEncryption {
|
|
1025
710
|
Algorithm?: Algorithm | string;
|
|
1026
|
-
|
|
1027
711
|
ConstantInitializationVector?: string;
|
|
1028
|
-
|
|
1029
712
|
DeviceId?: string;
|
|
1030
|
-
|
|
1031
713
|
KeyType?: KeyType | string;
|
|
1032
|
-
|
|
1033
714
|
Region?: string;
|
|
1034
|
-
|
|
1035
715
|
ResourceId?: string;
|
|
1036
|
-
|
|
1037
716
|
RoleArn?: string;
|
|
1038
|
-
|
|
1039
717
|
SecretArn?: string;
|
|
1040
|
-
|
|
1041
718
|
Url?: string;
|
|
1042
719
|
}
|
|
1043
|
-
|
|
1044
720
|
export interface UpdateFlowEntitlementRequest {
|
|
1045
721
|
Description?: string;
|
|
1046
|
-
|
|
1047
722
|
Encryption?: UpdateEncryption;
|
|
1048
|
-
|
|
1049
723
|
EntitlementArn: string | undefined;
|
|
1050
|
-
|
|
1051
724
|
EntitlementStatus?: EntitlementStatus | string;
|
|
1052
|
-
|
|
1053
725
|
FlowArn: string | undefined;
|
|
1054
|
-
|
|
1055
726
|
Subscribers?: string[];
|
|
1056
727
|
}
|
|
1057
728
|
export interface UpdateFlowEntitlementResponse {
|
|
1058
729
|
Entitlement?: Entitlement;
|
|
1059
|
-
|
|
1060
730
|
FlowArn?: string;
|
|
1061
731
|
}
|
|
1062
|
-
|
|
1063
732
|
export interface UpdateFlowMediaStreamRequest {
|
|
1064
733
|
Attributes?: MediaStreamAttributesRequest;
|
|
1065
|
-
|
|
1066
734
|
ClockRate?: number;
|
|
1067
|
-
|
|
1068
735
|
Description?: string;
|
|
1069
|
-
|
|
1070
736
|
FlowArn: string | undefined;
|
|
1071
|
-
|
|
1072
737
|
MediaStreamName: string | undefined;
|
|
1073
|
-
|
|
1074
738
|
MediaStreamType?: MediaStreamType | string;
|
|
1075
|
-
|
|
1076
739
|
VideoFormat?: string;
|
|
1077
740
|
}
|
|
1078
741
|
export interface UpdateFlowMediaStreamResponse {
|
|
1079
742
|
FlowArn?: string;
|
|
1080
|
-
|
|
1081
743
|
MediaStream?: MediaStream;
|
|
1082
744
|
}
|
|
1083
|
-
|
|
1084
745
|
export interface UpdateFlowOutputRequest {
|
|
1085
746
|
CidrAllowList?: string[];
|
|
1086
|
-
|
|
1087
747
|
Description?: string;
|
|
1088
|
-
|
|
1089
748
|
Destination?: string;
|
|
1090
|
-
|
|
1091
749
|
Encryption?: UpdateEncryption;
|
|
1092
|
-
|
|
1093
750
|
FlowArn: string | undefined;
|
|
1094
|
-
|
|
1095
751
|
MaxLatency?: number;
|
|
1096
|
-
|
|
1097
752
|
MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[];
|
|
1098
|
-
|
|
1099
753
|
MinLatency?: number;
|
|
1100
|
-
|
|
1101
754
|
OutputArn: string | undefined;
|
|
1102
|
-
|
|
1103
755
|
Port?: number;
|
|
1104
|
-
|
|
1105
756
|
Protocol?: Protocol | string;
|
|
1106
|
-
|
|
1107
757
|
RemoteId?: string;
|
|
1108
|
-
|
|
1109
758
|
SenderControlPort?: number;
|
|
1110
|
-
|
|
1111
759
|
SenderIpAddress?: string;
|
|
1112
|
-
|
|
1113
760
|
SmoothingLatency?: number;
|
|
1114
|
-
|
|
1115
761
|
StreamId?: string;
|
|
1116
|
-
|
|
1117
762
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1118
763
|
}
|
|
1119
764
|
export interface UpdateFlowOutputResponse {
|
|
1120
765
|
FlowArn?: string;
|
|
1121
|
-
|
|
1122
766
|
Output?: Output;
|
|
1123
767
|
}
|
|
1124
|
-
|
|
1125
768
|
export interface UpdateFlowSourceRequest {
|
|
1126
769
|
Decryption?: UpdateEncryption;
|
|
1127
|
-
|
|
1128
770
|
Description?: string;
|
|
1129
|
-
|
|
1130
771
|
EntitlementArn?: string;
|
|
1131
|
-
|
|
1132
772
|
FlowArn: string | undefined;
|
|
1133
|
-
|
|
1134
773
|
IngestPort?: number;
|
|
1135
|
-
|
|
1136
774
|
MaxBitrate?: number;
|
|
1137
|
-
|
|
1138
775
|
MaxLatency?: number;
|
|
1139
|
-
|
|
1140
776
|
MaxSyncBuffer?: number;
|
|
1141
|
-
|
|
1142
777
|
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
|
|
1143
|
-
|
|
1144
778
|
MinLatency?: number;
|
|
1145
|
-
|
|
1146
779
|
Protocol?: Protocol | string;
|
|
1147
|
-
|
|
1148
780
|
SenderControlPort?: number;
|
|
1149
|
-
|
|
1150
781
|
SenderIpAddress?: string;
|
|
1151
|
-
|
|
1152
782
|
SourceArn: string | undefined;
|
|
1153
|
-
|
|
1154
783
|
StreamId?: string;
|
|
1155
|
-
|
|
1156
784
|
VpcInterfaceName?: string;
|
|
1157
|
-
|
|
1158
785
|
WhitelistCidr?: string;
|
|
1159
786
|
}
|
|
1160
787
|
export interface UpdateFlowSourceResponse {
|
|
1161
788
|
FlowArn?: string;
|
|
1162
|
-
|
|
1163
789
|
Source?: Source;
|
|
1164
790
|
}
|
|
1165
|
-
|
|
1166
791
|
export declare const FmtpRequestFilterSensitiveLog: (obj: FmtpRequest) => any;
|
|
1167
|
-
|
|
1168
792
|
export declare const MediaStreamAttributesRequestFilterSensitiveLog: (
|
|
1169
793
|
obj: MediaStreamAttributesRequest
|
|
1170
794
|
) => any;
|
|
1171
|
-
|
|
1172
795
|
export declare const AddMediaStreamRequestFilterSensitiveLog: (
|
|
1173
796
|
obj: AddMediaStreamRequest
|
|
1174
797
|
) => any;
|
|
1175
|
-
|
|
1176
798
|
export declare const EncryptionFilterSensitiveLog: (obj: Encryption) => any;
|
|
1177
|
-
|
|
1178
799
|
export declare const InterfaceRequestFilterSensitiveLog: (
|
|
1179
800
|
obj: InterfaceRequest
|
|
1180
801
|
) => any;
|
|
1181
|
-
|
|
1182
802
|
export declare const DestinationConfigurationRequestFilterSensitiveLog: (
|
|
1183
803
|
obj: DestinationConfigurationRequest
|
|
1184
804
|
) => any;
|
|
1185
|
-
|
|
1186
805
|
export declare const EncodingParametersRequestFilterSensitiveLog: (
|
|
1187
806
|
obj: EncodingParametersRequest
|
|
1188
807
|
) => any;
|
|
1189
|
-
|
|
1190
808
|
export declare const MediaStreamOutputConfigurationRequestFilterSensitiveLog: (
|
|
1191
809
|
obj: MediaStreamOutputConfigurationRequest
|
|
1192
810
|
) => any;
|
|
1193
|
-
|
|
1194
811
|
export declare const VpcInterfaceAttachmentFilterSensitiveLog: (
|
|
1195
812
|
obj: VpcInterfaceAttachment
|
|
1196
813
|
) => any;
|
|
1197
|
-
|
|
1198
814
|
export declare const AddOutputRequestFilterSensitiveLog: (
|
|
1199
815
|
obj: AddOutputRequest
|
|
1200
816
|
) => any;
|
|
1201
|
-
|
|
1202
817
|
export declare const InterfaceFilterSensitiveLog: (obj: Interface) => any;
|
|
1203
|
-
|
|
1204
818
|
export declare const DestinationConfigurationFilterSensitiveLog: (
|
|
1205
819
|
obj: DestinationConfiguration
|
|
1206
820
|
) => any;
|
|
1207
|
-
|
|
1208
821
|
export declare const EntitlementFilterSensitiveLog: (obj: Entitlement) => any;
|
|
1209
|
-
|
|
1210
822
|
export declare const GrantEntitlementRequestFilterSensitiveLog: (
|
|
1211
823
|
obj: GrantEntitlementRequest
|
|
1212
824
|
) => any;
|
|
1213
|
-
|
|
1214
825
|
export declare const InputConfigurationFilterSensitiveLog: (
|
|
1215
826
|
obj: InputConfiguration
|
|
1216
827
|
) => any;
|
|
1217
|
-
|
|
1218
828
|
export declare const InputConfigurationRequestFilterSensitiveLog: (
|
|
1219
829
|
obj: InputConfigurationRequest
|
|
1220
830
|
) => any;
|
|
1221
|
-
|
|
1222
831
|
export declare const ListedEntitlementFilterSensitiveLog: (
|
|
1223
832
|
obj: ListedEntitlement
|
|
1224
833
|
) => any;
|
|
1225
|
-
|
|
1226
834
|
export declare const MaintenanceFilterSensitiveLog: (obj: Maintenance) => any;
|
|
1227
|
-
|
|
1228
835
|
export declare const ListedFlowFilterSensitiveLog: (obj: ListedFlow) => any;
|
|
1229
|
-
|
|
1230
836
|
export declare const FmtpFilterSensitiveLog: (obj: Fmtp) => any;
|
|
1231
|
-
|
|
1232
837
|
export declare const MediaStreamAttributesFilterSensitiveLog: (
|
|
1233
838
|
obj: MediaStreamAttributes
|
|
1234
839
|
) => any;
|
|
1235
|
-
|
|
1236
840
|
export declare const MediaStreamFilterSensitiveLog: (obj: MediaStream) => any;
|
|
1237
|
-
|
|
1238
841
|
export declare const EncodingParametersFilterSensitiveLog: (
|
|
1239
842
|
obj: EncodingParameters
|
|
1240
843
|
) => any;
|
|
1241
|
-
|
|
1242
844
|
export declare const MediaStreamOutputConfigurationFilterSensitiveLog: (
|
|
1243
845
|
obj: MediaStreamOutputConfiguration
|
|
1244
846
|
) => any;
|
|
1245
|
-
|
|
1246
847
|
export declare const MediaStreamSourceConfigurationFilterSensitiveLog: (
|
|
1247
848
|
obj: MediaStreamSourceConfiguration
|
|
1248
849
|
) => any;
|
|
1249
|
-
|
|
1250
850
|
export declare const MediaStreamSourceConfigurationRequestFilterSensitiveLog: (
|
|
1251
851
|
obj: MediaStreamSourceConfigurationRequest
|
|
1252
852
|
) => any;
|
|
1253
|
-
|
|
1254
853
|
export declare const ResourceSpecificationFilterSensitiveLog: (
|
|
1255
854
|
obj: ResourceSpecification
|
|
1256
855
|
) => any;
|
|
1257
|
-
|
|
1258
856
|
export declare const OfferingFilterSensitiveLog: (obj: Offering) => any;
|
|
1259
|
-
|
|
1260
857
|
export declare const TransportFilterSensitiveLog: (obj: Transport) => any;
|
|
1261
|
-
|
|
1262
858
|
export declare const OutputFilterSensitiveLog: (obj: Output) => any;
|
|
1263
|
-
|
|
1264
859
|
export declare const ReservationFilterSensitiveLog: (obj: Reservation) => any;
|
|
1265
|
-
|
|
1266
860
|
export declare const SetSourceRequestFilterSensitiveLog: (
|
|
1267
861
|
obj: SetSourceRequest
|
|
1268
862
|
) => any;
|
|
1269
|
-
|
|
1270
863
|
export declare const SourceFilterSensitiveLog: (obj: Source) => any;
|
|
1271
|
-
|
|
1272
864
|
export declare const VpcInterfaceFilterSensitiveLog: (obj: VpcInterface) => any;
|
|
1273
|
-
|
|
1274
865
|
export declare const VpcInterfaceRequestFilterSensitiveLog: (
|
|
1275
866
|
obj: VpcInterfaceRequest
|
|
1276
867
|
) => any;
|
|
1277
|
-
|
|
1278
868
|
export declare const AddFlowMediaStreamsRequestFilterSensitiveLog: (
|
|
1279
869
|
obj: AddFlowMediaStreamsRequest
|
|
1280
870
|
) => any;
|
|
1281
|
-
|
|
1282
871
|
export declare const AddFlowMediaStreamsResponseFilterSensitiveLog: (
|
|
1283
872
|
obj: AddFlowMediaStreamsResponse
|
|
1284
873
|
) => any;
|
|
1285
|
-
|
|
1286
874
|
export declare const AddFlowOutputsRequestFilterSensitiveLog: (
|
|
1287
875
|
obj: AddFlowOutputsRequest
|
|
1288
876
|
) => any;
|
|
1289
|
-
|
|
1290
877
|
export declare const AddFlowOutputsResponseFilterSensitiveLog: (
|
|
1291
878
|
obj: AddFlowOutputsResponse
|
|
1292
879
|
) => any;
|
|
1293
|
-
|
|
1294
880
|
export declare const AddFlowSourcesRequestFilterSensitiveLog: (
|
|
1295
881
|
obj: AddFlowSourcesRequest
|
|
1296
882
|
) => any;
|
|
1297
|
-
|
|
1298
883
|
export declare const AddFlowSourcesResponseFilterSensitiveLog: (
|
|
1299
884
|
obj: AddFlowSourcesResponse
|
|
1300
885
|
) => any;
|
|
1301
|
-
|
|
1302
886
|
export declare const AddFlowVpcInterfacesRequestFilterSensitiveLog: (
|
|
1303
887
|
obj: AddFlowVpcInterfacesRequest
|
|
1304
888
|
) => any;
|
|
1305
|
-
|
|
1306
889
|
export declare const AddFlowVpcInterfacesResponseFilterSensitiveLog: (
|
|
1307
890
|
obj: AddFlowVpcInterfacesResponse
|
|
1308
891
|
) => any;
|
|
1309
|
-
|
|
1310
892
|
export declare const AddMaintenanceFilterSensitiveLog: (
|
|
1311
893
|
obj: AddMaintenance
|
|
1312
894
|
) => any;
|
|
1313
|
-
|
|
1314
895
|
export declare const SourcePriorityFilterSensitiveLog: (
|
|
1315
896
|
obj: SourcePriority
|
|
1316
897
|
) => any;
|
|
1317
|
-
|
|
1318
898
|
export declare const FailoverConfigFilterSensitiveLog: (
|
|
1319
899
|
obj: FailoverConfig
|
|
1320
900
|
) => any;
|
|
1321
|
-
|
|
1322
901
|
export declare const CreateFlowRequestFilterSensitiveLog: (
|
|
1323
902
|
obj: CreateFlowRequest
|
|
1324
903
|
) => any;
|
|
1325
|
-
|
|
1326
904
|
export declare const FlowFilterSensitiveLog: (obj: Flow) => any;
|
|
1327
|
-
|
|
1328
905
|
export declare const CreateFlowResponseFilterSensitiveLog: (
|
|
1329
906
|
obj: CreateFlowResponse
|
|
1330
907
|
) => any;
|
|
1331
|
-
|
|
1332
908
|
export declare const DeleteFlowRequestFilterSensitiveLog: (
|
|
1333
909
|
obj: DeleteFlowRequest
|
|
1334
910
|
) => any;
|
|
1335
|
-
|
|
1336
911
|
export declare const DeleteFlowResponseFilterSensitiveLog: (
|
|
1337
912
|
obj: DeleteFlowResponse
|
|
1338
913
|
) => any;
|
|
1339
|
-
|
|
1340
914
|
export declare const DescribeFlowRequestFilterSensitiveLog: (
|
|
1341
915
|
obj: DescribeFlowRequest
|
|
1342
916
|
) => any;
|
|
1343
|
-
|
|
1344
917
|
export declare const MessagesFilterSensitiveLog: (obj: Messages) => any;
|
|
1345
|
-
|
|
1346
918
|
export declare const DescribeFlowResponseFilterSensitiveLog: (
|
|
1347
919
|
obj: DescribeFlowResponse
|
|
1348
920
|
) => any;
|
|
1349
|
-
|
|
1350
921
|
export declare const DescribeOfferingRequestFilterSensitiveLog: (
|
|
1351
922
|
obj: DescribeOfferingRequest
|
|
1352
923
|
) => any;
|
|
1353
|
-
|
|
1354
924
|
export declare const DescribeOfferingResponseFilterSensitiveLog: (
|
|
1355
925
|
obj: DescribeOfferingResponse
|
|
1356
926
|
) => any;
|
|
1357
|
-
|
|
1358
927
|
export declare const DescribeReservationRequestFilterSensitiveLog: (
|
|
1359
928
|
obj: DescribeReservationRequest
|
|
1360
929
|
) => any;
|
|
1361
|
-
|
|
1362
930
|
export declare const DescribeReservationResponseFilterSensitiveLog: (
|
|
1363
931
|
obj: DescribeReservationResponse
|
|
1364
932
|
) => any;
|
|
1365
|
-
|
|
1366
933
|
export declare const GrantFlowEntitlementsRequestFilterSensitiveLog: (
|
|
1367
934
|
obj: GrantFlowEntitlementsRequest
|
|
1368
935
|
) => any;
|
|
1369
|
-
|
|
1370
936
|
export declare const GrantFlowEntitlementsResponseFilterSensitiveLog: (
|
|
1371
937
|
obj: GrantFlowEntitlementsResponse
|
|
1372
938
|
) => any;
|
|
1373
|
-
|
|
1374
939
|
export declare const ListEntitlementsRequestFilterSensitiveLog: (
|
|
1375
940
|
obj: ListEntitlementsRequest
|
|
1376
941
|
) => any;
|
|
1377
|
-
|
|
1378
942
|
export declare const ListEntitlementsResponseFilterSensitiveLog: (
|
|
1379
943
|
obj: ListEntitlementsResponse
|
|
1380
944
|
) => any;
|
|
1381
|
-
|
|
1382
945
|
export declare const ListFlowsRequestFilterSensitiveLog: (
|
|
1383
946
|
obj: ListFlowsRequest
|
|
1384
947
|
) => any;
|
|
1385
|
-
|
|
1386
948
|
export declare const ListFlowsResponseFilterSensitiveLog: (
|
|
1387
949
|
obj: ListFlowsResponse
|
|
1388
950
|
) => any;
|
|
1389
|
-
|
|
1390
951
|
export declare const ListOfferingsRequestFilterSensitiveLog: (
|
|
1391
952
|
obj: ListOfferingsRequest
|
|
1392
953
|
) => any;
|
|
1393
|
-
|
|
1394
954
|
export declare const ListOfferingsResponseFilterSensitiveLog: (
|
|
1395
955
|
obj: ListOfferingsResponse
|
|
1396
956
|
) => any;
|
|
1397
|
-
|
|
1398
957
|
export declare const ListReservationsRequestFilterSensitiveLog: (
|
|
1399
958
|
obj: ListReservationsRequest
|
|
1400
959
|
) => any;
|
|
1401
|
-
|
|
1402
960
|
export declare const ListReservationsResponseFilterSensitiveLog: (
|
|
1403
961
|
obj: ListReservationsResponse
|
|
1404
962
|
) => any;
|
|
1405
|
-
|
|
1406
963
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1407
964
|
obj: ListTagsForResourceRequest
|
|
1408
965
|
) => any;
|
|
1409
|
-
|
|
1410
966
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1411
967
|
obj: ListTagsForResourceResponse
|
|
1412
968
|
) => any;
|
|
1413
|
-
|
|
1414
969
|
export declare const PurchaseOfferingRequestFilterSensitiveLog: (
|
|
1415
970
|
obj: PurchaseOfferingRequest
|
|
1416
971
|
) => any;
|
|
1417
|
-
|
|
1418
972
|
export declare const PurchaseOfferingResponseFilterSensitiveLog: (
|
|
1419
973
|
obj: PurchaseOfferingResponse
|
|
1420
974
|
) => any;
|
|
1421
|
-
|
|
1422
975
|
export declare const RemoveFlowMediaStreamRequestFilterSensitiveLog: (
|
|
1423
976
|
obj: RemoveFlowMediaStreamRequest
|
|
1424
977
|
) => any;
|
|
1425
|
-
|
|
1426
978
|
export declare const RemoveFlowMediaStreamResponseFilterSensitiveLog: (
|
|
1427
979
|
obj: RemoveFlowMediaStreamResponse
|
|
1428
980
|
) => any;
|
|
1429
|
-
|
|
1430
981
|
export declare const RemoveFlowOutputRequestFilterSensitiveLog: (
|
|
1431
982
|
obj: RemoveFlowOutputRequest
|
|
1432
983
|
) => any;
|
|
1433
|
-
|
|
1434
984
|
export declare const RemoveFlowOutputResponseFilterSensitiveLog: (
|
|
1435
985
|
obj: RemoveFlowOutputResponse
|
|
1436
986
|
) => any;
|
|
1437
|
-
|
|
1438
987
|
export declare const RemoveFlowSourceRequestFilterSensitiveLog: (
|
|
1439
988
|
obj: RemoveFlowSourceRequest
|
|
1440
989
|
) => any;
|
|
1441
|
-
|
|
1442
990
|
export declare const RemoveFlowSourceResponseFilterSensitiveLog: (
|
|
1443
991
|
obj: RemoveFlowSourceResponse
|
|
1444
992
|
) => any;
|
|
1445
|
-
|
|
1446
993
|
export declare const RemoveFlowVpcInterfaceRequestFilterSensitiveLog: (
|
|
1447
994
|
obj: RemoveFlowVpcInterfaceRequest
|
|
1448
995
|
) => any;
|
|
1449
|
-
|
|
1450
996
|
export declare const RemoveFlowVpcInterfaceResponseFilterSensitiveLog: (
|
|
1451
997
|
obj: RemoveFlowVpcInterfaceResponse
|
|
1452
998
|
) => any;
|
|
1453
|
-
|
|
1454
999
|
export declare const RevokeFlowEntitlementRequestFilterSensitiveLog: (
|
|
1455
1000
|
obj: RevokeFlowEntitlementRequest
|
|
1456
1001
|
) => any;
|
|
1457
|
-
|
|
1458
1002
|
export declare const RevokeFlowEntitlementResponseFilterSensitiveLog: (
|
|
1459
1003
|
obj: RevokeFlowEntitlementResponse
|
|
1460
1004
|
) => any;
|
|
1461
|
-
|
|
1462
1005
|
export declare const StartFlowRequestFilterSensitiveLog: (
|
|
1463
1006
|
obj: StartFlowRequest
|
|
1464
1007
|
) => any;
|
|
1465
|
-
|
|
1466
1008
|
export declare const StartFlowResponseFilterSensitiveLog: (
|
|
1467
1009
|
obj: StartFlowResponse
|
|
1468
1010
|
) => any;
|
|
1469
|
-
|
|
1470
1011
|
export declare const StopFlowRequestFilterSensitiveLog: (
|
|
1471
1012
|
obj: StopFlowRequest
|
|
1472
1013
|
) => any;
|
|
1473
|
-
|
|
1474
1014
|
export declare const StopFlowResponseFilterSensitiveLog: (
|
|
1475
1015
|
obj: StopFlowResponse
|
|
1476
1016
|
) => any;
|
|
1477
|
-
|
|
1478
1017
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1479
1018
|
obj: TagResourceRequest
|
|
1480
1019
|
) => any;
|
|
1481
|
-
|
|
1482
1020
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1483
1021
|
obj: UntagResourceRequest
|
|
1484
1022
|
) => any;
|
|
1485
|
-
|
|
1486
1023
|
export declare const UpdateMaintenanceFilterSensitiveLog: (
|
|
1487
1024
|
obj: UpdateMaintenance
|
|
1488
1025
|
) => any;
|
|
1489
|
-
|
|
1490
1026
|
export declare const UpdateFailoverConfigFilterSensitiveLog: (
|
|
1491
1027
|
obj: UpdateFailoverConfig
|
|
1492
1028
|
) => any;
|
|
1493
|
-
|
|
1494
1029
|
export declare const UpdateFlowRequestFilterSensitiveLog: (
|
|
1495
1030
|
obj: UpdateFlowRequest
|
|
1496
1031
|
) => any;
|
|
1497
|
-
|
|
1498
1032
|
export declare const UpdateFlowResponseFilterSensitiveLog: (
|
|
1499
1033
|
obj: UpdateFlowResponse
|
|
1500
1034
|
) => any;
|
|
1501
|
-
|
|
1502
1035
|
export declare const UpdateEncryptionFilterSensitiveLog: (
|
|
1503
1036
|
obj: UpdateEncryption
|
|
1504
1037
|
) => any;
|
|
1505
|
-
|
|
1506
1038
|
export declare const UpdateFlowEntitlementRequestFilterSensitiveLog: (
|
|
1507
1039
|
obj: UpdateFlowEntitlementRequest
|
|
1508
1040
|
) => any;
|
|
1509
|
-
|
|
1510
1041
|
export declare const UpdateFlowEntitlementResponseFilterSensitiveLog: (
|
|
1511
1042
|
obj: UpdateFlowEntitlementResponse
|
|
1512
1043
|
) => any;
|
|
1513
|
-
|
|
1514
1044
|
export declare const UpdateFlowMediaStreamRequestFilterSensitiveLog: (
|
|
1515
1045
|
obj: UpdateFlowMediaStreamRequest
|
|
1516
1046
|
) => any;
|
|
1517
|
-
|
|
1518
1047
|
export declare const UpdateFlowMediaStreamResponseFilterSensitiveLog: (
|
|
1519
1048
|
obj: UpdateFlowMediaStreamResponse
|
|
1520
1049
|
) => any;
|
|
1521
|
-
|
|
1522
1050
|
export declare const UpdateFlowOutputRequestFilterSensitiveLog: (
|
|
1523
1051
|
obj: UpdateFlowOutputRequest
|
|
1524
1052
|
) => any;
|
|
1525
|
-
|
|
1526
1053
|
export declare const UpdateFlowOutputResponseFilterSensitiveLog: (
|
|
1527
1054
|
obj: UpdateFlowOutputResponse
|
|
1528
1055
|
) => any;
|
|
1529
|
-
|
|
1530
1056
|
export declare const UpdateFlowSourceRequestFilterSensitiveLog: (
|
|
1531
1057
|
obj: UpdateFlowSourceRequest
|
|
1532
1058
|
) => any;
|
|
1533
|
-
|
|
1534
1059
|
export declare const UpdateFlowSourceResponseFilterSensitiveLog: (
|
|
1535
1060
|
obj: UpdateFlowSourceResponse
|
|
1536
1061
|
) => any;
|