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