@aws-sdk/client-mediaconnect 3.687.0 → 3.692.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.
@@ -23,14 +23,14 @@ export interface AddBridgeNetworkOutputRequest {
23
23
  Ttl: number | undefined;
24
24
  }
25
25
  export interface AddBridgeOutputRequest {
26
- NetworkOutput?: AddBridgeNetworkOutputRequest;
26
+ NetworkOutput?: AddBridgeNetworkOutputRequest | undefined;
27
27
  }
28
28
  export interface VpcInterfaceAttachment {
29
- VpcInterfaceName?: string;
29
+ VpcInterfaceName?: string | undefined;
30
30
  }
31
31
  export interface AddBridgeFlowSourceRequest {
32
32
  FlowArn: string | undefined;
33
- FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
33
+ FlowVpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
34
34
  Name: string | undefined;
35
35
  }
36
36
  export interface AddBridgeNetworkSourceRequest {
@@ -41,8 +41,8 @@ export interface AddBridgeNetworkSourceRequest {
41
41
  Protocol: Protocol | undefined;
42
42
  }
43
43
  export interface AddBridgeSourceRequest {
44
- FlowSource?: AddBridgeFlowSourceRequest;
45
- NetworkSource?: AddBridgeNetworkSourceRequest;
44
+ FlowSource?: AddBridgeFlowSourceRequest | undefined;
45
+ NetworkSource?: AddBridgeNetworkSourceRequest | undefined;
46
46
  }
47
47
  export declare const Colorimetry: {
48
48
  readonly BT2020: "BT2020";
@@ -79,17 +79,17 @@ export declare const Tcs: {
79
79
  };
80
80
  export type Tcs = (typeof Tcs)[keyof typeof Tcs];
81
81
  export interface FmtpRequest {
82
- ChannelOrder?: string;
83
- Colorimetry?: Colorimetry;
84
- ExactFramerate?: string;
85
- Par?: string;
86
- Range?: Range;
87
- ScanMode?: ScanMode;
88
- Tcs?: Tcs;
82
+ ChannelOrder?: string | undefined;
83
+ Colorimetry?: Colorimetry | undefined;
84
+ ExactFramerate?: string | undefined;
85
+ Par?: string | undefined;
86
+ Range?: Range | undefined;
87
+ ScanMode?: ScanMode | undefined;
88
+ Tcs?: Tcs | undefined;
89
89
  }
90
90
  export interface MediaStreamAttributesRequest {
91
- Fmtp?: FmtpRequest;
92
- Lang?: string;
91
+ Fmtp?: FmtpRequest | undefined;
92
+ Lang?: string | undefined;
93
93
  }
94
94
  export declare const MediaStreamType: {
95
95
  readonly ancillary_data: "ancillary-data";
@@ -99,13 +99,13 @@ export declare const MediaStreamType: {
99
99
  export type MediaStreamType =
100
100
  (typeof MediaStreamType)[keyof typeof MediaStreamType];
101
101
  export interface AddMediaStreamRequest {
102
- Attributes?: MediaStreamAttributesRequest;
103
- ClockRate?: number;
104
- Description?: string;
102
+ Attributes?: MediaStreamAttributesRequest | undefined;
103
+ ClockRate?: number | undefined;
104
+ Description?: string | undefined;
105
105
  MediaStreamId: number | undefined;
106
106
  MediaStreamName: string | undefined;
107
107
  MediaStreamType: MediaStreamType | undefined;
108
- VideoFormat?: string;
108
+ VideoFormat?: string | undefined;
109
109
  }
110
110
  export declare const Algorithm: {
111
111
  readonly aes128: "aes128";
@@ -120,15 +120,15 @@ export declare const KeyType: {
120
120
  };
121
121
  export type KeyType = (typeof KeyType)[keyof typeof KeyType];
122
122
  export interface Encryption {
123
- Algorithm?: Algorithm;
124
- ConstantInitializationVector?: string;
125
- DeviceId?: string;
126
- KeyType?: KeyType;
127
- Region?: string;
128
- ResourceId?: string;
123
+ Algorithm?: Algorithm | undefined;
124
+ ConstantInitializationVector?: string | undefined;
125
+ DeviceId?: string | undefined;
126
+ KeyType?: KeyType | undefined;
127
+ Region?: string | undefined;
128
+ ResourceId?: string | undefined;
129
129
  RoleArn: string | undefined;
130
- SecretArn?: string;
131
- Url?: string;
130
+ SecretArn?: string | undefined;
131
+ Url?: string | undefined;
132
132
  }
133
133
  export interface InterfaceRequest {
134
134
  Name: string | undefined;
@@ -156,9 +156,9 @@ export interface EncodingParametersRequest {
156
156
  EncoderProfile: EncoderProfile | undefined;
157
157
  }
158
158
  export interface MediaStreamOutputConfigurationRequest {
159
- DestinationConfigurations?: DestinationConfigurationRequest[];
159
+ DestinationConfigurations?: DestinationConfigurationRequest[] | undefined;
160
160
  EncodingName: EncodingName | undefined;
161
- EncodingParameters?: EncodingParametersRequest;
161
+ EncodingParameters?: EncodingParametersRequest | undefined;
162
162
  MediaStreamName: string | undefined;
163
163
  }
164
164
  export declare const OutputStatus: {
@@ -167,22 +167,24 @@ export declare const OutputStatus: {
167
167
  };
168
168
  export type OutputStatus = (typeof OutputStatus)[keyof typeof OutputStatus];
169
169
  export interface AddOutputRequest {
170
- CidrAllowList?: string[];
171
- Description?: string;
172
- Destination?: string;
173
- Encryption?: Encryption;
174
- MaxLatency?: number;
175
- MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[];
176
- MinLatency?: number;
177
- Name?: string;
178
- Port?: number;
170
+ CidrAllowList?: string[] | undefined;
171
+ Description?: string | undefined;
172
+ Destination?: string | undefined;
173
+ Encryption?: Encryption | undefined;
174
+ MaxLatency?: number | undefined;
175
+ MediaStreamOutputConfigurations?:
176
+ | MediaStreamOutputConfigurationRequest[]
177
+ | undefined;
178
+ MinLatency?: number | undefined;
179
+ Name?: string | undefined;
180
+ Port?: number | undefined;
179
181
  Protocol: Protocol | undefined;
180
- RemoteId?: string;
181
- SenderControlPort?: number;
182
- SmoothingLatency?: number;
183
- StreamId?: string;
184
- VpcInterfaceAttachment?: VpcInterfaceAttachment;
185
- OutputStatus?: OutputStatus;
182
+ RemoteId?: string | undefined;
183
+ SenderControlPort?: number | undefined;
184
+ SmoothingLatency?: number | undefined;
185
+ StreamId?: string | undefined;
186
+ VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
187
+ OutputStatus?: OutputStatus | undefined;
186
188
  }
187
189
  export interface BridgeFlowOutput {
188
190
  FlowArn: string | undefined;
@@ -198,14 +200,14 @@ export interface BridgeNetworkOutput {
198
200
  Ttl: number | undefined;
199
201
  }
200
202
  export interface BridgeOutput {
201
- FlowOutput?: BridgeFlowOutput;
202
- NetworkOutput?: BridgeNetworkOutput;
203
+ FlowOutput?: BridgeFlowOutput | undefined;
204
+ NetworkOutput?: BridgeNetworkOutput | undefined;
203
205
  }
204
206
  export interface BridgeFlowSource {
205
207
  FlowArn: string | undefined;
206
- FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
208
+ FlowVpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
207
209
  Name: string | undefined;
208
- OutputArn?: string;
210
+ OutputArn?: string | undefined;
209
211
  }
210
212
  export interface BridgeNetworkSource {
211
213
  MulticastIp: string | undefined;
@@ -215,8 +217,8 @@ export interface BridgeNetworkSource {
215
217
  Protocol: Protocol | undefined;
216
218
  }
217
219
  export interface BridgeSource {
218
- FlowSource?: BridgeFlowSource;
219
- NetworkSource?: BridgeNetworkSource;
220
+ FlowSource?: BridgeFlowSource | undefined;
221
+ NetworkSource?: BridgeNetworkSource | undefined;
220
222
  }
221
223
  export interface Interface {
222
224
  Name: string | undefined;
@@ -234,11 +236,11 @@ export declare const EntitlementStatus: {
234
236
  export type EntitlementStatus =
235
237
  (typeof EntitlementStatus)[keyof typeof EntitlementStatus];
236
238
  export interface Entitlement {
237
- DataTransferSubscriberFeePercent?: number;
238
- Description?: string;
239
- Encryption?: Encryption;
239
+ DataTransferSubscriberFeePercent?: number | undefined;
240
+ Description?: string | undefined;
241
+ Encryption?: Encryption | undefined;
240
242
  EntitlementArn: string | undefined;
241
- EntitlementStatus?: EntitlementStatus;
243
+ EntitlementStatus?: EntitlementStatus | undefined;
242
244
  Name: string | undefined;
243
245
  Subscribers: string[] | undefined;
244
246
  }
@@ -247,11 +249,11 @@ export interface GatewayNetwork {
247
249
  Name: string | undefined;
248
250
  }
249
251
  export interface GrantEntitlementRequest {
250
- DataTransferSubscriberFeePercent?: number;
251
- Description?: string;
252
- Encryption?: Encryption;
253
- EntitlementStatus?: EntitlementStatus;
254
- Name?: string;
252
+ DataTransferSubscriberFeePercent?: number | undefined;
253
+ Description?: string | undefined;
254
+ Encryption?: Encryption | undefined;
255
+ EntitlementStatus?: EntitlementStatus | undefined;
256
+ Name?: string | undefined;
255
257
  Subscribers: string[] | undefined;
256
258
  }
257
259
  export interface InputConfiguration {
@@ -286,7 +288,7 @@ export interface ListedBridge {
286
288
  PlacementArn: string | undefined;
287
289
  }
288
290
  export interface ListedEntitlement {
289
- DataTransferSubscriberFeePercent?: number;
291
+ DataTransferSubscriberFeePercent?: number | undefined;
290
292
  EntitlementArn: string | undefined;
291
293
  EntitlementName: string | undefined;
292
294
  }
@@ -302,10 +304,10 @@ export declare const MaintenanceDay: {
302
304
  export type MaintenanceDay =
303
305
  (typeof MaintenanceDay)[keyof typeof MaintenanceDay];
304
306
  export interface Maintenance {
305
- MaintenanceDay?: MaintenanceDay;
306
- MaintenanceDeadline?: string;
307
- MaintenanceScheduledDate?: string;
308
- MaintenanceStartHour?: string;
307
+ MaintenanceDay?: MaintenanceDay | undefined;
308
+ MaintenanceDeadline?: string | undefined;
309
+ MaintenanceScheduledDate?: string | undefined;
310
+ MaintenanceStartHour?: string | undefined;
309
311
  }
310
312
  export declare const SourceType: {
311
313
  readonly ENTITLED: "ENTITLED";
@@ -329,7 +331,7 @@ export interface ListedFlow {
329
331
  Name: string | undefined;
330
332
  SourceType: SourceType | undefined;
331
333
  Status: Status | undefined;
332
- Maintenance?: Maintenance;
334
+ Maintenance?: Maintenance | undefined;
333
335
  }
334
336
  export declare const GatewayState: {
335
337
  readonly ACTIVE: "ACTIVE";
@@ -358,55 +360,55 @@ export interface ListedGatewayInstance {
358
360
  GatewayArn: string | undefined;
359
361
  GatewayInstanceArn: string | undefined;
360
362
  InstanceId: string | undefined;
361
- InstanceState?: InstanceState;
363
+ InstanceState?: InstanceState | undefined;
362
364
  }
363
365
  export interface Fmtp {
364
- ChannelOrder?: string;
365
- Colorimetry?: Colorimetry;
366
- ExactFramerate?: string;
367
- Par?: string;
368
- Range?: Range;
369
- ScanMode?: ScanMode;
370
- Tcs?: Tcs;
366
+ ChannelOrder?: string | undefined;
367
+ Colorimetry?: Colorimetry | undefined;
368
+ ExactFramerate?: string | undefined;
369
+ Par?: string | undefined;
370
+ Range?: Range | undefined;
371
+ ScanMode?: ScanMode | undefined;
372
+ Tcs?: Tcs | undefined;
371
373
  }
372
374
  export interface MediaStreamAttributes {
373
375
  Fmtp: Fmtp | undefined;
374
- Lang?: string;
376
+ Lang?: string | undefined;
375
377
  }
376
378
  export interface MediaStream {
377
- Attributes?: MediaStreamAttributes;
378
- ClockRate?: number;
379
- Description?: string;
379
+ Attributes?: MediaStreamAttributes | undefined;
380
+ ClockRate?: number | undefined;
381
+ Description?: string | undefined;
380
382
  Fmt: number | undefined;
381
383
  MediaStreamId: number | undefined;
382
384
  MediaStreamName: string | undefined;
383
385
  MediaStreamType: MediaStreamType | undefined;
384
- VideoFormat?: string;
386
+ VideoFormat?: string | undefined;
385
387
  }
386
388
  export interface EncodingParameters {
387
389
  CompressionFactor: number | undefined;
388
390
  EncoderProfile: EncoderProfile | undefined;
389
391
  }
390
392
  export interface MediaStreamOutputConfiguration {
391
- DestinationConfigurations?: DestinationConfiguration[];
393
+ DestinationConfigurations?: DestinationConfiguration[] | undefined;
392
394
  EncodingName: EncodingName | undefined;
393
- EncodingParameters?: EncodingParameters;
395
+ EncodingParameters?: EncodingParameters | undefined;
394
396
  MediaStreamName: string | undefined;
395
397
  }
396
398
  export interface MediaStreamSourceConfiguration {
397
399
  EncodingName: EncodingName | undefined;
398
- InputConfigurations?: InputConfiguration[];
400
+ InputConfigurations?: InputConfiguration[] | undefined;
399
401
  MediaStreamName: string | undefined;
400
402
  }
401
403
  export interface MediaStreamSourceConfigurationRequest {
402
404
  EncodingName: EncodingName | undefined;
403
- InputConfigurations?: InputConfigurationRequest[];
405
+ InputConfigurations?: InputConfigurationRequest[] | undefined;
404
406
  MediaStreamName: string | undefined;
405
407
  }
406
408
  export interface MessageDetail {
407
409
  Code: string | undefined;
408
410
  Message: string | undefined;
409
- ResourceName?: string;
411
+ ResourceName?: string | undefined;
410
412
  }
411
413
  export declare const DurationUnits: {
412
414
  readonly MONTHS: "MONTHS";
@@ -421,7 +423,7 @@ export declare const ResourceType: {
421
423
  };
422
424
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
423
425
  export interface ResourceSpecification {
424
- ReservedBitrate?: number;
426
+ ReservedBitrate?: number | undefined;
425
427
  ResourceType: ResourceType | undefined;
426
428
  }
427
429
  export interface Offering {
@@ -435,37 +437,39 @@ export interface Offering {
435
437
  ResourceSpecification: ResourceSpecification | undefined;
436
438
  }
437
439
  export interface Transport {
438
- CidrAllowList?: string[];
439
- MaxBitrate?: number;
440
- MaxLatency?: number;
441
- MaxSyncBuffer?: number;
442
- MinLatency?: number;
440
+ CidrAllowList?: string[] | undefined;
441
+ MaxBitrate?: number | undefined;
442
+ MaxLatency?: number | undefined;
443
+ MaxSyncBuffer?: number | undefined;
444
+ MinLatency?: number | undefined;
443
445
  Protocol: Protocol | undefined;
444
- RemoteId?: string;
445
- SenderControlPort?: number;
446
- SenderIpAddress?: string;
447
- SmoothingLatency?: number;
448
- SourceListenerAddress?: string;
449
- SourceListenerPort?: number;
450
- StreamId?: string;
446
+ RemoteId?: string | undefined;
447
+ SenderControlPort?: number | undefined;
448
+ SenderIpAddress?: string | undefined;
449
+ SmoothingLatency?: number | undefined;
450
+ SourceListenerAddress?: string | undefined;
451
+ SourceListenerPort?: number | undefined;
452
+ StreamId?: string | undefined;
451
453
  }
452
454
  export interface Output {
453
- DataTransferSubscriberFeePercent?: number;
454
- Description?: string;
455
- Destination?: string;
456
- Encryption?: Encryption;
457
- EntitlementArn?: string;
458
- ListenerAddress?: string;
459
- MediaLiveInputArn?: string;
460
- MediaStreamOutputConfigurations?: MediaStreamOutputConfiguration[];
455
+ DataTransferSubscriberFeePercent?: number | undefined;
456
+ Description?: string | undefined;
457
+ Destination?: string | undefined;
458
+ Encryption?: Encryption | undefined;
459
+ EntitlementArn?: string | undefined;
460
+ ListenerAddress?: string | undefined;
461
+ MediaLiveInputArn?: string | undefined;
462
+ MediaStreamOutputConfigurations?:
463
+ | MediaStreamOutputConfiguration[]
464
+ | undefined;
461
465
  Name: string | undefined;
462
466
  OutputArn: string | undefined;
463
- Port?: number;
464
- Transport?: Transport;
465
- VpcInterfaceAttachment?: VpcInterfaceAttachment;
466
- BridgeArn?: string;
467
- BridgePorts?: number[];
468
- OutputStatus?: OutputStatus;
467
+ Port?: number | undefined;
468
+ Transport?: Transport | undefined;
469
+ VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
470
+ BridgeArn?: string | undefined;
471
+ BridgePorts?: number[] | undefined;
472
+ OutputStatus?: OutputStatus | undefined;
469
473
  }
470
474
  export declare const ReservationState: {
471
475
  readonly ACTIVE: "ACTIVE";
@@ -492,67 +496,71 @@ export interface Reservation {
492
496
  }
493
497
  export interface SetGatewayBridgeSourceRequest {
494
498
  BridgeArn: string | undefined;
495
- VpcInterfaceAttachment?: VpcInterfaceAttachment;
499
+ VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
496
500
  }
497
501
  export interface SetSourceRequest {
498
- Decryption?: Encryption;
499
- Description?: string;
500
- EntitlementArn?: string;
501
- IngestPort?: number;
502
- MaxBitrate?: number;
503
- MaxLatency?: number;
504
- MaxSyncBuffer?: number;
505
- MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
506
- MinLatency?: number;
507
- Name?: string;
508
- Protocol?: Protocol;
509
- SenderControlPort?: number;
510
- SenderIpAddress?: string;
511
- SourceListenerAddress?: string;
512
- SourceListenerPort?: number;
513
- StreamId?: string;
514
- VpcInterfaceName?: string;
515
- WhitelistCidr?: string;
516
- GatewayBridgeSource?: SetGatewayBridgeSourceRequest;
502
+ Decryption?: Encryption | undefined;
503
+ Description?: string | undefined;
504
+ EntitlementArn?: string | undefined;
505
+ IngestPort?: number | undefined;
506
+ MaxBitrate?: number | undefined;
507
+ MaxLatency?: number | undefined;
508
+ MaxSyncBuffer?: number | undefined;
509
+ MediaStreamSourceConfigurations?:
510
+ | MediaStreamSourceConfigurationRequest[]
511
+ | undefined;
512
+ MinLatency?: number | undefined;
513
+ Name?: string | undefined;
514
+ Protocol?: Protocol | undefined;
515
+ SenderControlPort?: number | undefined;
516
+ SenderIpAddress?: string | undefined;
517
+ SourceListenerAddress?: string | undefined;
518
+ SourceListenerPort?: number | undefined;
519
+ StreamId?: string | undefined;
520
+ VpcInterfaceName?: string | undefined;
521
+ WhitelistCidr?: string | undefined;
522
+ GatewayBridgeSource?: SetGatewayBridgeSourceRequest | undefined;
517
523
  }
518
524
  export interface GatewayBridgeSource {
519
525
  BridgeArn: string | undefined;
520
- VpcInterfaceAttachment?: VpcInterfaceAttachment;
526
+ VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
521
527
  }
522
528
  export interface Source {
523
- DataTransferSubscriberFeePercent?: number;
524
- Decryption?: Encryption;
525
- Description?: string;
526
- EntitlementArn?: string;
527
- IngestIp?: string;
528
- IngestPort?: number;
529
- MediaStreamSourceConfigurations?: MediaStreamSourceConfiguration[];
529
+ DataTransferSubscriberFeePercent?: number | undefined;
530
+ Decryption?: Encryption | undefined;
531
+ Description?: string | undefined;
532
+ EntitlementArn?: string | undefined;
533
+ IngestIp?: string | undefined;
534
+ IngestPort?: number | undefined;
535
+ MediaStreamSourceConfigurations?:
536
+ | MediaStreamSourceConfiguration[]
537
+ | undefined;
530
538
  Name: string | undefined;
531
- SenderControlPort?: number;
532
- SenderIpAddress?: string;
539
+ SenderControlPort?: number | undefined;
540
+ SenderIpAddress?: string | undefined;
533
541
  SourceArn: string | undefined;
534
- Transport?: Transport;
535
- VpcInterfaceName?: string;
536
- WhitelistCidr?: string;
537
- GatewayBridgeSource?: GatewayBridgeSource;
542
+ Transport?: Transport | undefined;
543
+ VpcInterfaceName?: string | undefined;
544
+ WhitelistCidr?: string | undefined;
545
+ GatewayBridgeSource?: GatewayBridgeSource | undefined;
538
546
  }
539
547
  export interface FrameResolution {
540
548
  FrameHeight: number | undefined;
541
549
  FrameWidth: number | undefined;
542
550
  }
543
551
  export interface TransportStream {
544
- Channels?: number;
545
- Codec?: string;
546
- FrameRate?: string;
547
- FrameResolution?: FrameResolution;
552
+ Channels?: number | undefined;
553
+ Codec?: string | undefined;
554
+ FrameRate?: string | undefined;
555
+ FrameResolution?: FrameResolution | undefined;
548
556
  Pid: number | undefined;
549
- SampleRate?: number;
550
- SampleSize?: number;
557
+ SampleRate?: number | undefined;
558
+ SampleSize?: number | undefined;
551
559
  StreamType: string | undefined;
552
560
  }
553
561
  export interface TransportStreamProgram {
554
562
  PcrPid: number | undefined;
555
- ProgramName?: string;
563
+ ProgramName?: string | undefined;
556
564
  ProgramNumber: number | undefined;
557
565
  ProgramPid: number | undefined;
558
566
  Streams: TransportStream[] | undefined;
@@ -573,7 +581,7 @@ export interface VpcInterface {
573
581
  }
574
582
  export interface VpcInterfaceRequest {
575
583
  Name: string | undefined;
576
- NetworkInterfaceType?: NetworkInterfaceType;
584
+ NetworkInterfaceType?: NetworkInterfaceType | undefined;
577
585
  RoleArn: string | undefined;
578
586
  SecurityGroupIds: string[] | undefined;
579
587
  SubnetId: string | undefined;
@@ -583,8 +591,8 @@ export interface AddBridgeOutputsRequest {
583
591
  Outputs: AddBridgeOutputRequest[] | undefined;
584
592
  }
585
593
  export interface AddBridgeOutputsResponse {
586
- BridgeArn?: string;
587
- Outputs?: BridgeOutput[];
594
+ BridgeArn?: string | undefined;
595
+ Outputs?: BridgeOutput[] | undefined;
588
596
  }
589
597
  export declare class BadRequestException extends __BaseException {
590
598
  readonly name: "BadRequestException";
@@ -641,8 +649,8 @@ export interface AddBridgeSourcesRequest {
641
649
  Sources: AddBridgeSourceRequest[] | undefined;
642
650
  }
643
651
  export interface AddBridgeSourcesResponse {
644
- BridgeArn?: string;
645
- Sources?: BridgeSource[];
652
+ BridgeArn?: string | undefined;
653
+ Sources?: BridgeSource[] | undefined;
646
654
  }
647
655
  export interface AddEgressGatewayBridgeRequest {
648
656
  MaxBitrate: number | undefined;
@@ -652,8 +660,8 @@ export interface AddFlowMediaStreamsRequest {
652
660
  MediaStreams: AddMediaStreamRequest[] | undefined;
653
661
  }
654
662
  export interface AddFlowMediaStreamsResponse {
655
- FlowArn?: string;
656
- MediaStreams?: MediaStream[];
663
+ FlowArn?: string | undefined;
664
+ MediaStreams?: MediaStream[] | undefined;
657
665
  }
658
666
  export declare class AddFlowOutputs420Exception extends __BaseException {
659
667
  readonly name: "AddFlowOutputs420Exception";
@@ -668,24 +676,24 @@ export interface AddFlowOutputsRequest {
668
676
  Outputs: AddOutputRequest[] | undefined;
669
677
  }
670
678
  export interface AddFlowOutputsResponse {
671
- FlowArn?: string;
672
- Outputs?: Output[];
679
+ FlowArn?: string | undefined;
680
+ Outputs?: Output[] | undefined;
673
681
  }
674
682
  export interface AddFlowSourcesRequest {
675
683
  FlowArn: string | undefined;
676
684
  Sources: SetSourceRequest[] | undefined;
677
685
  }
678
686
  export interface AddFlowSourcesResponse {
679
- FlowArn?: string;
680
- Sources?: Source[];
687
+ FlowArn?: string | undefined;
688
+ Sources?: Source[] | undefined;
681
689
  }
682
690
  export interface AddFlowVpcInterfacesRequest {
683
691
  FlowArn: string | undefined;
684
692
  VpcInterfaces: VpcInterfaceRequest[] | undefined;
685
693
  }
686
694
  export interface AddFlowVpcInterfacesResponse {
687
- FlowArn?: string;
688
- VpcInterfaces?: VpcInterface[];
695
+ FlowArn?: string | undefined;
696
+ VpcInterfaces?: VpcInterface[] | undefined;
689
697
  }
690
698
  export interface AddIngressGatewayBridgeRequest {
691
699
  MaxBitrate: number | undefined;
@@ -696,11 +704,11 @@ export interface AddMaintenance {
696
704
  MaintenanceStartHour: string | undefined;
697
705
  }
698
706
  export interface EgressGatewayBridge {
699
- InstanceId?: string;
707
+ InstanceId?: string | undefined;
700
708
  MaxBitrate: number | undefined;
701
709
  }
702
710
  export interface IngressGatewayBridge {
703
- InstanceId?: string;
711
+ InstanceId?: string | undefined;
704
712
  MaxBitrate: number | undefined;
705
713
  MaxOutputs: number | undefined;
706
714
  }
@@ -710,7 +718,7 @@ export declare const FailoverMode: {
710
718
  };
711
719
  export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
712
720
  export interface SourcePriority {
713
- PrimarySource?: string;
721
+ PrimarySource?: string | undefined;
714
722
  }
715
723
  export declare const State: {
716
724
  readonly DISABLED: "DISABLED";
@@ -718,22 +726,22 @@ export declare const State: {
718
726
  };
719
727
  export type State = (typeof State)[keyof typeof State];
720
728
  export interface FailoverConfig {
721
- FailoverMode?: FailoverMode;
722
- RecoveryWindow?: number;
723
- SourcePriority?: SourcePriority;
724
- State?: State;
729
+ FailoverMode?: FailoverMode | undefined;
730
+ RecoveryWindow?: number | undefined;
731
+ SourcePriority?: SourcePriority | undefined;
732
+ State?: State | undefined;
725
733
  }
726
734
  export interface Bridge {
727
735
  BridgeArn: string | undefined;
728
- BridgeMessages?: MessageDetail[];
736
+ BridgeMessages?: MessageDetail[] | undefined;
729
737
  BridgeState: BridgeState | undefined;
730
- EgressGatewayBridge?: EgressGatewayBridge;
731
- IngressGatewayBridge?: IngressGatewayBridge;
738
+ EgressGatewayBridge?: EgressGatewayBridge | undefined;
739
+ IngressGatewayBridge?: IngressGatewayBridge | undefined;
732
740
  Name: string | undefined;
733
- Outputs?: BridgeOutput[];
741
+ Outputs?: BridgeOutput[] | undefined;
734
742
  PlacementArn: string | undefined;
735
- SourceFailoverConfig?: FailoverConfig;
736
- Sources?: BridgeSource[];
743
+ SourceFailoverConfig?: FailoverConfig | undefined;
744
+ Sources?: BridgeSource[] | undefined;
737
745
  }
738
746
  export declare const BridgePlacement: {
739
747
  readonly AVAILABLE: "AVAILABLE";
@@ -756,16 +764,16 @@ export declare class CreateBridge420Exception extends __BaseException {
756
764
  );
757
765
  }
758
766
  export interface CreateBridgeRequest {
759
- EgressGatewayBridge?: AddEgressGatewayBridgeRequest;
760
- IngressGatewayBridge?: AddIngressGatewayBridgeRequest;
767
+ EgressGatewayBridge?: AddEgressGatewayBridgeRequest | undefined;
768
+ IngressGatewayBridge?: AddIngressGatewayBridgeRequest | undefined;
761
769
  Name: string | undefined;
762
- Outputs?: AddBridgeOutputRequest[];
770
+ Outputs?: AddBridgeOutputRequest[] | undefined;
763
771
  PlacementArn: string | undefined;
764
- SourceFailoverConfig?: FailoverConfig;
772
+ SourceFailoverConfig?: FailoverConfig | undefined;
765
773
  Sources: AddBridgeSourceRequest[] | undefined;
766
774
  }
767
775
  export interface CreateBridgeResponse {
768
- Bridge?: Bridge;
776
+ Bridge?: Bridge | undefined;
769
777
  }
770
778
  export declare class CreateFlow420Exception extends __BaseException {
771
779
  readonly name: "CreateFlow420Exception";
@@ -782,40 +790,40 @@ export declare const ThumbnailState: {
782
790
  export type ThumbnailState =
783
791
  (typeof ThumbnailState)[keyof typeof ThumbnailState];
784
792
  export interface MonitoringConfig {
785
- ThumbnailState?: ThumbnailState;
793
+ ThumbnailState?: ThumbnailState | undefined;
786
794
  }
787
795
  export interface CreateFlowRequest {
788
- AvailabilityZone?: string;
789
- Entitlements?: GrantEntitlementRequest[];
790
- MediaStreams?: AddMediaStreamRequest[];
796
+ AvailabilityZone?: string | undefined;
797
+ Entitlements?: GrantEntitlementRequest[] | undefined;
798
+ MediaStreams?: AddMediaStreamRequest[] | undefined;
791
799
  Name: string | undefined;
792
- Outputs?: AddOutputRequest[];
793
- Source?: SetSourceRequest;
794
- SourceFailoverConfig?: FailoverConfig;
795
- Sources?: SetSourceRequest[];
796
- VpcInterfaces?: VpcInterfaceRequest[];
797
- Maintenance?: AddMaintenance;
798
- SourceMonitoringConfig?: MonitoringConfig;
800
+ Outputs?: AddOutputRequest[] | undefined;
801
+ Source?: SetSourceRequest | undefined;
802
+ SourceFailoverConfig?: FailoverConfig | undefined;
803
+ Sources?: SetSourceRequest[] | undefined;
804
+ VpcInterfaces?: VpcInterfaceRequest[] | undefined;
805
+ Maintenance?: AddMaintenance | undefined;
806
+ SourceMonitoringConfig?: MonitoringConfig | undefined;
799
807
  }
800
808
  export interface Flow {
801
809
  AvailabilityZone: string | undefined;
802
- Description?: string;
803
- EgressIp?: string;
810
+ Description?: string | undefined;
811
+ EgressIp?: string | undefined;
804
812
  Entitlements: Entitlement[] | undefined;
805
813
  FlowArn: string | undefined;
806
- MediaStreams?: MediaStream[];
814
+ MediaStreams?: MediaStream[] | undefined;
807
815
  Name: string | undefined;
808
816
  Outputs: Output[] | undefined;
809
817
  Source: Source | undefined;
810
- SourceFailoverConfig?: FailoverConfig;
811
- Sources?: Source[];
818
+ SourceFailoverConfig?: FailoverConfig | undefined;
819
+ Sources?: Source[] | undefined;
812
820
  Status: Status | undefined;
813
- VpcInterfaces?: VpcInterface[];
814
- Maintenance?: Maintenance;
815
- SourceMonitoringConfig?: MonitoringConfig;
821
+ VpcInterfaces?: VpcInterface[] | undefined;
822
+ Maintenance?: Maintenance | undefined;
823
+ SourceMonitoringConfig?: MonitoringConfig | undefined;
816
824
  }
817
825
  export interface CreateFlowResponse {
818
- Flow?: Flow;
826
+ Flow?: Flow | undefined;
819
827
  }
820
828
  export declare class CreateGateway420Exception extends __BaseException {
821
829
  readonly name: "CreateGateway420Exception";
@@ -833,46 +841,46 @@ export interface CreateGatewayRequest {
833
841
  export interface Gateway {
834
842
  EgressCidrBlocks: string[] | undefined;
835
843
  GatewayArn: string | undefined;
836
- GatewayMessages?: MessageDetail[];
837
- GatewayState?: GatewayState;
844
+ GatewayMessages?: MessageDetail[] | undefined;
845
+ GatewayState?: GatewayState | undefined;
838
846
  Name: string | undefined;
839
847
  Networks: GatewayNetwork[] | undefined;
840
848
  }
841
849
  export interface CreateGatewayResponse {
842
- Gateway?: Gateway;
850
+ Gateway?: Gateway | undefined;
843
851
  }
844
852
  export interface DeleteBridgeRequest {
845
853
  BridgeArn: string | undefined;
846
854
  }
847
855
  export interface DeleteBridgeResponse {
848
- BridgeArn?: string;
856
+ BridgeArn?: string | undefined;
849
857
  }
850
858
  export interface DeleteFlowRequest {
851
859
  FlowArn: string | undefined;
852
860
  }
853
861
  export interface DeleteFlowResponse {
854
- FlowArn?: string;
855
- Status?: Status;
862
+ FlowArn?: string | undefined;
863
+ Status?: Status | undefined;
856
864
  }
857
865
  export interface DeleteGatewayRequest {
858
866
  GatewayArn: string | undefined;
859
867
  }
860
868
  export interface DeleteGatewayResponse {
861
- GatewayArn?: string;
869
+ GatewayArn?: string | undefined;
862
870
  }
863
871
  export interface DeregisterGatewayInstanceRequest {
864
- Force?: boolean;
872
+ Force?: boolean | undefined;
865
873
  GatewayInstanceArn: string | undefined;
866
874
  }
867
875
  export interface DeregisterGatewayInstanceResponse {
868
- GatewayInstanceArn?: string;
869
- InstanceState?: InstanceState;
876
+ GatewayInstanceArn?: string | undefined;
877
+ InstanceState?: InstanceState | undefined;
870
878
  }
871
879
  export interface DescribeBridgeRequest {
872
880
  BridgeArn: string | undefined;
873
881
  }
874
882
  export interface DescribeBridgeResponse {
875
- Bridge?: Bridge;
883
+ Bridge?: Bridge | undefined;
876
884
  }
877
885
  export interface DescribeFlowRequest {
878
886
  FlowArn: string | undefined;
@@ -881,8 +889,8 @@ export interface Messages {
881
889
  Errors: string[] | undefined;
882
890
  }
883
891
  export interface DescribeFlowResponse {
884
- Flow?: Flow;
885
- Messages?: Messages;
892
+ Flow?: Flow | undefined;
893
+ Messages?: Messages | undefined;
886
894
  }
887
895
  export interface DescribeFlowSourceMetadataRequest {
888
896
  FlowArn: string | undefined;
@@ -891,29 +899,29 @@ export interface TransportMediaInfo {
891
899
  Programs: TransportStreamProgram[] | undefined;
892
900
  }
893
901
  export interface DescribeFlowSourceMetadataResponse {
894
- FlowArn?: string;
895
- Messages?: MessageDetail[];
896
- Timestamp?: Date;
897
- TransportMediaInfo?: TransportMediaInfo;
902
+ FlowArn?: string | undefined;
903
+ Messages?: MessageDetail[] | undefined;
904
+ Timestamp?: Date | undefined;
905
+ TransportMediaInfo?: TransportMediaInfo | undefined;
898
906
  }
899
907
  export interface DescribeFlowSourceThumbnailRequest {
900
908
  FlowArn: string | undefined;
901
909
  }
902
910
  export interface ThumbnailDetails {
903
911
  FlowArn: string | undefined;
904
- Thumbnail?: string;
912
+ Thumbnail?: string | undefined;
905
913
  ThumbnailMessages: MessageDetail[] | undefined;
906
- Timecode?: string;
907
- Timestamp?: Date;
914
+ Timecode?: string | undefined;
915
+ Timestamp?: Date | undefined;
908
916
  }
909
917
  export interface DescribeFlowSourceThumbnailResponse {
910
- ThumbnailDetails?: ThumbnailDetails;
918
+ ThumbnailDetails?: ThumbnailDetails | undefined;
911
919
  }
912
920
  export interface DescribeGatewayRequest {
913
921
  GatewayArn: string | undefined;
914
922
  }
915
923
  export interface DescribeGatewayResponse {
916
- Gateway?: Gateway;
924
+ Gateway?: Gateway | undefined;
917
925
  }
918
926
  export interface DescribeGatewayInstanceRequest {
919
927
  GatewayInstanceArn: string | undefined;
@@ -924,24 +932,24 @@ export interface GatewayInstance {
924
932
  GatewayArn: string | undefined;
925
933
  GatewayInstanceArn: string | undefined;
926
934
  InstanceId: string | undefined;
927
- InstanceMessages?: MessageDetail[];
935
+ InstanceMessages?: MessageDetail[] | undefined;
928
936
  InstanceState: InstanceState | undefined;
929
937
  RunningBridgeCount: number | undefined;
930
938
  }
931
939
  export interface DescribeGatewayInstanceResponse {
932
- GatewayInstance?: GatewayInstance;
940
+ GatewayInstance?: GatewayInstance | undefined;
933
941
  }
934
942
  export interface DescribeOfferingRequest {
935
943
  OfferingArn: string | undefined;
936
944
  }
937
945
  export interface DescribeOfferingResponse {
938
- Offering?: Offering;
946
+ Offering?: Offering | undefined;
939
947
  }
940
948
  export interface DescribeReservationRequest {
941
949
  ReservationArn: string | undefined;
942
950
  }
943
951
  export interface DescribeReservationResponse {
944
- Reservation?: Reservation;
952
+ Reservation?: Reservation | undefined;
945
953
  }
946
954
  export declare const DesiredState: {
947
955
  readonly ACTIVE: "ACTIVE";
@@ -965,72 +973,72 @@ export interface GrantFlowEntitlementsRequest {
965
973
  FlowArn: string | undefined;
966
974
  }
967
975
  export interface GrantFlowEntitlementsResponse {
968
- Entitlements?: Entitlement[];
969
- FlowArn?: string;
976
+ Entitlements?: Entitlement[] | undefined;
977
+ FlowArn?: string | undefined;
970
978
  }
971
979
  export interface ListBridgesRequest {
972
- FilterArn?: string;
973
- MaxResults?: number;
974
- NextToken?: string;
980
+ FilterArn?: string | undefined;
981
+ MaxResults?: number | undefined;
982
+ NextToken?: string | undefined;
975
983
  }
976
984
  export interface ListBridgesResponse {
977
- Bridges?: ListedBridge[];
978
- NextToken?: string;
985
+ Bridges?: ListedBridge[] | undefined;
986
+ NextToken?: string | undefined;
979
987
  }
980
988
  export interface ListEntitlementsRequest {
981
- MaxResults?: number;
982
- NextToken?: string;
989
+ MaxResults?: number | undefined;
990
+ NextToken?: string | undefined;
983
991
  }
984
992
  export interface ListEntitlementsResponse {
985
- Entitlements?: ListedEntitlement[];
986
- NextToken?: string;
993
+ Entitlements?: ListedEntitlement[] | undefined;
994
+ NextToken?: string | undefined;
987
995
  }
988
996
  export interface ListFlowsRequest {
989
- MaxResults?: number;
990
- NextToken?: string;
997
+ MaxResults?: number | undefined;
998
+ NextToken?: string | undefined;
991
999
  }
992
1000
  export interface ListFlowsResponse {
993
- Flows?: ListedFlow[];
994
- NextToken?: string;
1001
+ Flows?: ListedFlow[] | undefined;
1002
+ NextToken?: string | undefined;
995
1003
  }
996
1004
  export interface ListGatewayInstancesRequest {
997
- FilterArn?: string;
998
- MaxResults?: number;
999
- NextToken?: string;
1005
+ FilterArn?: string | undefined;
1006
+ MaxResults?: number | undefined;
1007
+ NextToken?: string | undefined;
1000
1008
  }
1001
1009
  export interface ListGatewayInstancesResponse {
1002
- Instances?: ListedGatewayInstance[];
1003
- NextToken?: string;
1010
+ Instances?: ListedGatewayInstance[] | undefined;
1011
+ NextToken?: string | undefined;
1004
1012
  }
1005
1013
  export interface ListGatewaysRequest {
1006
- MaxResults?: number;
1007
- NextToken?: string;
1014
+ MaxResults?: number | undefined;
1015
+ NextToken?: string | undefined;
1008
1016
  }
1009
1017
  export interface ListGatewaysResponse {
1010
- Gateways?: ListedGateway[];
1011
- NextToken?: string;
1018
+ Gateways?: ListedGateway[] | undefined;
1019
+ NextToken?: string | undefined;
1012
1020
  }
1013
1021
  export interface ListOfferingsRequest {
1014
- MaxResults?: number;
1015
- NextToken?: string;
1022
+ MaxResults?: number | undefined;
1023
+ NextToken?: string | undefined;
1016
1024
  }
1017
1025
  export interface ListOfferingsResponse {
1018
- NextToken?: string;
1019
- Offerings?: Offering[];
1026
+ NextToken?: string | undefined;
1027
+ Offerings?: Offering[] | undefined;
1020
1028
  }
1021
1029
  export interface ListReservationsRequest {
1022
- MaxResults?: number;
1023
- NextToken?: string;
1030
+ MaxResults?: number | undefined;
1031
+ NextToken?: string | undefined;
1024
1032
  }
1025
1033
  export interface ListReservationsResponse {
1026
- NextToken?: string;
1027
- Reservations?: Reservation[];
1034
+ NextToken?: string | undefined;
1035
+ Reservations?: Reservation[] | undefined;
1028
1036
  }
1029
1037
  export interface ListTagsForResourceRequest {
1030
1038
  ResourceArn: string | undefined;
1031
1039
  }
1032
1040
  export interface ListTagsForResourceResponse {
1033
- Tags?: Record<string, string>;
1041
+ Tags?: Record<string, string> | undefined;
1034
1042
  }
1035
1043
  export interface PurchaseOfferingRequest {
1036
1044
  OfferingArn: string | undefined;
@@ -1038,78 +1046,78 @@ export interface PurchaseOfferingRequest {
1038
1046
  Start: string | undefined;
1039
1047
  }
1040
1048
  export interface PurchaseOfferingResponse {
1041
- Reservation?: Reservation;
1049
+ Reservation?: Reservation | undefined;
1042
1050
  }
1043
1051
  export interface RemoveBridgeOutputRequest {
1044
1052
  BridgeArn: string | undefined;
1045
1053
  OutputName: string | undefined;
1046
1054
  }
1047
1055
  export interface RemoveBridgeOutputResponse {
1048
- BridgeArn?: string;
1049
- OutputName?: string;
1056
+ BridgeArn?: string | undefined;
1057
+ OutputName?: string | undefined;
1050
1058
  }
1051
1059
  export interface RemoveBridgeSourceRequest {
1052
1060
  BridgeArn: string | undefined;
1053
1061
  SourceName: string | undefined;
1054
1062
  }
1055
1063
  export interface RemoveBridgeSourceResponse {
1056
- BridgeArn?: string;
1057
- SourceName?: string;
1064
+ BridgeArn?: string | undefined;
1065
+ SourceName?: string | undefined;
1058
1066
  }
1059
1067
  export interface RemoveFlowMediaStreamRequest {
1060
1068
  FlowArn: string | undefined;
1061
1069
  MediaStreamName: string | undefined;
1062
1070
  }
1063
1071
  export interface RemoveFlowMediaStreamResponse {
1064
- FlowArn?: string;
1065
- MediaStreamName?: string;
1072
+ FlowArn?: string | undefined;
1073
+ MediaStreamName?: string | undefined;
1066
1074
  }
1067
1075
  export interface RemoveFlowOutputRequest {
1068
1076
  FlowArn: string | undefined;
1069
1077
  OutputArn: string | undefined;
1070
1078
  }
1071
1079
  export interface RemoveFlowOutputResponse {
1072
- FlowArn?: string;
1073
- OutputArn?: string;
1080
+ FlowArn?: string | undefined;
1081
+ OutputArn?: string | undefined;
1074
1082
  }
1075
1083
  export interface RemoveFlowSourceRequest {
1076
1084
  FlowArn: string | undefined;
1077
1085
  SourceArn: string | undefined;
1078
1086
  }
1079
1087
  export interface RemoveFlowSourceResponse {
1080
- FlowArn?: string;
1081
- SourceArn?: string;
1088
+ FlowArn?: string | undefined;
1089
+ SourceArn?: string | undefined;
1082
1090
  }
1083
1091
  export interface RemoveFlowVpcInterfaceRequest {
1084
1092
  FlowArn: string | undefined;
1085
1093
  VpcInterfaceName: string | undefined;
1086
1094
  }
1087
1095
  export interface RemoveFlowVpcInterfaceResponse {
1088
- FlowArn?: string;
1089
- NonDeletedNetworkInterfaceIds?: string[];
1090
- VpcInterfaceName?: string;
1096
+ FlowArn?: string | undefined;
1097
+ NonDeletedNetworkInterfaceIds?: string[] | undefined;
1098
+ VpcInterfaceName?: string | undefined;
1091
1099
  }
1092
1100
  export interface RevokeFlowEntitlementRequest {
1093
1101
  EntitlementArn: string | undefined;
1094
1102
  FlowArn: string | undefined;
1095
1103
  }
1096
1104
  export interface RevokeFlowEntitlementResponse {
1097
- EntitlementArn?: string;
1098
- FlowArn?: string;
1105
+ EntitlementArn?: string | undefined;
1106
+ FlowArn?: string | undefined;
1099
1107
  }
1100
1108
  export interface StartFlowRequest {
1101
1109
  FlowArn: string | undefined;
1102
1110
  }
1103
1111
  export interface StartFlowResponse {
1104
- FlowArn?: string;
1105
- Status?: Status;
1112
+ FlowArn?: string | undefined;
1113
+ Status?: Status | undefined;
1106
1114
  }
1107
1115
  export interface StopFlowRequest {
1108
1116
  FlowArn: string | undefined;
1109
1117
  }
1110
1118
  export interface StopFlowResponse {
1111
- FlowArn?: string;
1112
- Status?: Status;
1119
+ FlowArn?: string | undefined;
1120
+ Status?: Status | undefined;
1113
1121
  }
1114
1122
  export interface TagResourceRequest {
1115
1123
  ResourceArn: string | undefined;
@@ -1120,180 +1128,184 @@ export interface UntagResourceRequest {
1120
1128
  TagKeys: string[] | undefined;
1121
1129
  }
1122
1130
  export interface UpdateEgressGatewayBridgeRequest {
1123
- MaxBitrate?: number;
1131
+ MaxBitrate?: number | undefined;
1124
1132
  }
1125
1133
  export interface UpdateIngressGatewayBridgeRequest {
1126
- MaxBitrate?: number;
1127
- MaxOutputs?: number;
1134
+ MaxBitrate?: number | undefined;
1135
+ MaxOutputs?: number | undefined;
1128
1136
  }
1129
1137
  export interface UpdateFailoverConfig {
1130
- FailoverMode?: FailoverMode;
1131
- RecoveryWindow?: number;
1132
- SourcePriority?: SourcePriority;
1133
- State?: State;
1138
+ FailoverMode?: FailoverMode | undefined;
1139
+ RecoveryWindow?: number | undefined;
1140
+ SourcePriority?: SourcePriority | undefined;
1141
+ State?: State | undefined;
1134
1142
  }
1135
1143
  export interface UpdateBridgeRequest {
1136
1144
  BridgeArn: string | undefined;
1137
- EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest;
1138
- IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest;
1139
- SourceFailoverConfig?: UpdateFailoverConfig;
1145
+ EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest | undefined;
1146
+ IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest | undefined;
1147
+ SourceFailoverConfig?: UpdateFailoverConfig | undefined;
1140
1148
  }
1141
1149
  export interface UpdateBridgeResponse {
1142
- Bridge?: Bridge;
1150
+ Bridge?: Bridge | undefined;
1143
1151
  }
1144
1152
  export interface UpdateBridgeNetworkOutputRequest {
1145
- IpAddress?: string;
1146
- NetworkName?: string;
1147
- Port?: number;
1148
- Protocol?: Protocol;
1149
- Ttl?: number;
1153
+ IpAddress?: string | undefined;
1154
+ NetworkName?: string | undefined;
1155
+ Port?: number | undefined;
1156
+ Protocol?: Protocol | undefined;
1157
+ Ttl?: number | undefined;
1150
1158
  }
1151
1159
  export interface UpdateBridgeOutputRequest {
1152
1160
  BridgeArn: string | undefined;
1153
- NetworkOutput?: UpdateBridgeNetworkOutputRequest;
1161
+ NetworkOutput?: UpdateBridgeNetworkOutputRequest | undefined;
1154
1162
  OutputName: string | undefined;
1155
1163
  }
1156
1164
  export interface UpdateBridgeOutputResponse {
1157
- BridgeArn?: string;
1158
- Output?: BridgeOutput;
1165
+ BridgeArn?: string | undefined;
1166
+ Output?: BridgeOutput | undefined;
1159
1167
  }
1160
1168
  export interface UpdateBridgeFlowSourceRequest {
1161
- FlowArn?: string;
1162
- FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
1169
+ FlowArn?: string | undefined;
1170
+ FlowVpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
1163
1171
  }
1164
1172
  export interface UpdateBridgeNetworkSourceRequest {
1165
- MulticastIp?: string;
1166
- NetworkName?: string;
1167
- Port?: number;
1168
- Protocol?: Protocol;
1173
+ MulticastIp?: string | undefined;
1174
+ NetworkName?: string | undefined;
1175
+ Port?: number | undefined;
1176
+ Protocol?: Protocol | undefined;
1169
1177
  }
1170
1178
  export interface UpdateBridgeSourceRequest {
1171
1179
  BridgeArn: string | undefined;
1172
- FlowSource?: UpdateBridgeFlowSourceRequest;
1173
- NetworkSource?: UpdateBridgeNetworkSourceRequest;
1180
+ FlowSource?: UpdateBridgeFlowSourceRequest | undefined;
1181
+ NetworkSource?: UpdateBridgeNetworkSourceRequest | undefined;
1174
1182
  SourceName: string | undefined;
1175
1183
  }
1176
1184
  export interface UpdateBridgeSourceResponse {
1177
- BridgeArn?: string;
1178
- Source?: BridgeSource;
1185
+ BridgeArn?: string | undefined;
1186
+ Source?: BridgeSource | undefined;
1179
1187
  }
1180
1188
  export interface UpdateBridgeStateRequest {
1181
1189
  BridgeArn: string | undefined;
1182
1190
  DesiredState: DesiredState | undefined;
1183
1191
  }
1184
1192
  export interface UpdateBridgeStateResponse {
1185
- BridgeArn?: string;
1186
- DesiredState?: DesiredState;
1193
+ BridgeArn?: string | undefined;
1194
+ DesiredState?: DesiredState | undefined;
1187
1195
  }
1188
1196
  export interface UpdateMaintenance {
1189
- MaintenanceDay?: MaintenanceDay;
1190
- MaintenanceScheduledDate?: string;
1191
- MaintenanceStartHour?: string;
1197
+ MaintenanceDay?: MaintenanceDay | undefined;
1198
+ MaintenanceScheduledDate?: string | undefined;
1199
+ MaintenanceStartHour?: string | undefined;
1192
1200
  }
1193
1201
  export interface UpdateFlowRequest {
1194
1202
  FlowArn: string | undefined;
1195
- SourceFailoverConfig?: UpdateFailoverConfig;
1196
- Maintenance?: UpdateMaintenance;
1197
- SourceMonitoringConfig?: MonitoringConfig;
1203
+ SourceFailoverConfig?: UpdateFailoverConfig | undefined;
1204
+ Maintenance?: UpdateMaintenance | undefined;
1205
+ SourceMonitoringConfig?: MonitoringConfig | undefined;
1198
1206
  }
1199
1207
  export interface UpdateFlowResponse {
1200
- Flow?: Flow;
1208
+ Flow?: Flow | undefined;
1201
1209
  }
1202
1210
  export interface UpdateEncryption {
1203
- Algorithm?: Algorithm;
1204
- ConstantInitializationVector?: string;
1205
- DeviceId?: string;
1206
- KeyType?: KeyType;
1207
- Region?: string;
1208
- ResourceId?: string;
1209
- RoleArn?: string;
1210
- SecretArn?: string;
1211
- Url?: string;
1211
+ Algorithm?: Algorithm | undefined;
1212
+ ConstantInitializationVector?: string | undefined;
1213
+ DeviceId?: string | undefined;
1214
+ KeyType?: KeyType | undefined;
1215
+ Region?: string | undefined;
1216
+ ResourceId?: string | undefined;
1217
+ RoleArn?: string | undefined;
1218
+ SecretArn?: string | undefined;
1219
+ Url?: string | undefined;
1212
1220
  }
1213
1221
  export interface UpdateFlowEntitlementRequest {
1214
- Description?: string;
1215
- Encryption?: UpdateEncryption;
1222
+ Description?: string | undefined;
1223
+ Encryption?: UpdateEncryption | undefined;
1216
1224
  EntitlementArn: string | undefined;
1217
- EntitlementStatus?: EntitlementStatus;
1225
+ EntitlementStatus?: EntitlementStatus | undefined;
1218
1226
  FlowArn: string | undefined;
1219
- Subscribers?: string[];
1227
+ Subscribers?: string[] | undefined;
1220
1228
  }
1221
1229
  export interface UpdateFlowEntitlementResponse {
1222
- Entitlement?: Entitlement;
1223
- FlowArn?: string;
1230
+ Entitlement?: Entitlement | undefined;
1231
+ FlowArn?: string | undefined;
1224
1232
  }
1225
1233
  export interface UpdateFlowMediaStreamRequest {
1226
- Attributes?: MediaStreamAttributesRequest;
1227
- ClockRate?: number;
1228
- Description?: string;
1234
+ Attributes?: MediaStreamAttributesRequest | undefined;
1235
+ ClockRate?: number | undefined;
1236
+ Description?: string | undefined;
1229
1237
  FlowArn: string | undefined;
1230
1238
  MediaStreamName: string | undefined;
1231
- MediaStreamType?: MediaStreamType;
1232
- VideoFormat?: string;
1239
+ MediaStreamType?: MediaStreamType | undefined;
1240
+ VideoFormat?: string | undefined;
1233
1241
  }
1234
1242
  export interface UpdateFlowMediaStreamResponse {
1235
- FlowArn?: string;
1236
- MediaStream?: MediaStream;
1243
+ FlowArn?: string | undefined;
1244
+ MediaStream?: MediaStream | undefined;
1237
1245
  }
1238
1246
  export interface UpdateFlowOutputRequest {
1239
- CidrAllowList?: string[];
1240
- Description?: string;
1241
- Destination?: string;
1242
- Encryption?: UpdateEncryption;
1247
+ CidrAllowList?: string[] | undefined;
1248
+ Description?: string | undefined;
1249
+ Destination?: string | undefined;
1250
+ Encryption?: UpdateEncryption | undefined;
1243
1251
  FlowArn: string | undefined;
1244
- MaxLatency?: number;
1245
- MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[];
1246
- MinLatency?: number;
1252
+ MaxLatency?: number | undefined;
1253
+ MediaStreamOutputConfigurations?:
1254
+ | MediaStreamOutputConfigurationRequest[]
1255
+ | undefined;
1256
+ MinLatency?: number | undefined;
1247
1257
  OutputArn: string | undefined;
1248
- Port?: number;
1249
- Protocol?: Protocol;
1250
- RemoteId?: string;
1251
- SenderControlPort?: number;
1252
- SenderIpAddress?: string;
1253
- SmoothingLatency?: number;
1254
- StreamId?: string;
1255
- VpcInterfaceAttachment?: VpcInterfaceAttachment;
1256
- OutputStatus?: OutputStatus;
1258
+ Port?: number | undefined;
1259
+ Protocol?: Protocol | undefined;
1260
+ RemoteId?: string | undefined;
1261
+ SenderControlPort?: number | undefined;
1262
+ SenderIpAddress?: string | undefined;
1263
+ SmoothingLatency?: number | undefined;
1264
+ StreamId?: string | undefined;
1265
+ VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
1266
+ OutputStatus?: OutputStatus | undefined;
1257
1267
  }
1258
1268
  export interface UpdateFlowOutputResponse {
1259
- FlowArn?: string;
1260
- Output?: Output;
1269
+ FlowArn?: string | undefined;
1270
+ Output?: Output | undefined;
1261
1271
  }
1262
1272
  export interface UpdateGatewayBridgeSourceRequest {
1263
- BridgeArn?: string;
1264
- VpcInterfaceAttachment?: VpcInterfaceAttachment;
1273
+ BridgeArn?: string | undefined;
1274
+ VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
1265
1275
  }
1266
1276
  export interface UpdateFlowSourceRequest {
1267
- Decryption?: UpdateEncryption;
1268
- Description?: string;
1269
- EntitlementArn?: string;
1277
+ Decryption?: UpdateEncryption | undefined;
1278
+ Description?: string | undefined;
1279
+ EntitlementArn?: string | undefined;
1270
1280
  FlowArn: string | undefined;
1271
- IngestPort?: number;
1272
- MaxBitrate?: number;
1273
- MaxLatency?: number;
1274
- MaxSyncBuffer?: number;
1275
- MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
1276
- MinLatency?: number;
1277
- Protocol?: Protocol;
1278
- SenderControlPort?: number;
1279
- SenderIpAddress?: string;
1281
+ IngestPort?: number | undefined;
1282
+ MaxBitrate?: number | undefined;
1283
+ MaxLatency?: number | undefined;
1284
+ MaxSyncBuffer?: number | undefined;
1285
+ MediaStreamSourceConfigurations?:
1286
+ | MediaStreamSourceConfigurationRequest[]
1287
+ | undefined;
1288
+ MinLatency?: number | undefined;
1289
+ Protocol?: Protocol | undefined;
1290
+ SenderControlPort?: number | undefined;
1291
+ SenderIpAddress?: string | undefined;
1280
1292
  SourceArn: string | undefined;
1281
- SourceListenerAddress?: string;
1282
- SourceListenerPort?: number;
1283
- StreamId?: string;
1284
- VpcInterfaceName?: string;
1285
- WhitelistCidr?: string;
1286
- GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest;
1293
+ SourceListenerAddress?: string | undefined;
1294
+ SourceListenerPort?: number | undefined;
1295
+ StreamId?: string | undefined;
1296
+ VpcInterfaceName?: string | undefined;
1297
+ WhitelistCidr?: string | undefined;
1298
+ GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest | undefined;
1287
1299
  }
1288
1300
  export interface UpdateFlowSourceResponse {
1289
- FlowArn?: string;
1290
- Source?: Source;
1301
+ FlowArn?: string | undefined;
1302
+ Source?: Source | undefined;
1291
1303
  }
1292
1304
  export interface UpdateGatewayInstanceRequest {
1293
- BridgePlacement?: BridgePlacement;
1305
+ BridgePlacement?: BridgePlacement | undefined;
1294
1306
  GatewayInstanceArn: string | undefined;
1295
1307
  }
1296
1308
  export interface UpdateGatewayInstanceResponse {
1297
- BridgePlacement?: BridgePlacement;
1298
- GatewayInstanceArn?: string;
1309
+ BridgePlacement?: BridgePlacement | undefined;
1310
+ GatewayInstanceArn?: string | undefined;
1299
1311
  }