@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.
- package/dist-types/models/models_0.d.ts +383 -383
- package/dist-types/ts3.4/models/models_0.d.ts +395 -383
- package/package.json +36 -36
|
@@ -66,7 +66,7 @@ export interface AddBridgeOutputRequest {
|
|
|
66
66
|
* Add a network output to an existing bridge.
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
NetworkOutput?: AddBridgeNetworkOutputRequest;
|
|
69
|
+
NetworkOutput?: AddBridgeNetworkOutputRequest | undefined;
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
72
|
* The settings for attaching a VPC interface to an resource.
|
|
@@ -77,7 +77,7 @@ export interface VpcInterfaceAttachment {
|
|
|
77
77
|
* The name of the VPC interface to use for this resource.
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
VpcInterfaceName?: string;
|
|
80
|
+
VpcInterfaceName?: string | undefined;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
83
|
* Add a flow source to an existing bridge.
|
|
@@ -93,7 +93,7 @@ export interface AddBridgeFlowSourceRequest {
|
|
|
93
93
|
* The name of the VPC interface attachment to use for this source.
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
|
-
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
96
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
97
97
|
/**
|
|
98
98
|
* The name of the flow source. This name is used to reference the source and must be unique among sources in this bridge.
|
|
99
99
|
* @public
|
|
@@ -140,12 +140,12 @@ export interface AddBridgeSourceRequest {
|
|
|
140
140
|
* Add a flow source to an existing bridge.
|
|
141
141
|
* @public
|
|
142
142
|
*/
|
|
143
|
-
FlowSource?: AddBridgeFlowSourceRequest;
|
|
143
|
+
FlowSource?: AddBridgeFlowSourceRequest | undefined;
|
|
144
144
|
/**
|
|
145
145
|
* Add a network source to an existing bridge.
|
|
146
146
|
* @public
|
|
147
147
|
*/
|
|
148
|
-
NetworkSource?: AddBridgeNetworkSourceRequest;
|
|
148
|
+
NetworkSource?: AddBridgeNetworkSourceRequest | undefined;
|
|
149
149
|
}
|
|
150
150
|
/**
|
|
151
151
|
* @public
|
|
@@ -218,37 +218,37 @@ export interface FmtpRequest {
|
|
|
218
218
|
* The format of the audio channel.
|
|
219
219
|
* @public
|
|
220
220
|
*/
|
|
221
|
-
ChannelOrder?: string;
|
|
221
|
+
ChannelOrder?: string | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* The format that is used for the representation of color.
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
Colorimetry?: Colorimetry;
|
|
226
|
+
Colorimetry?: Colorimetry | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* The frame rate for the video stream, in frames/second. For example: 60000/1001. If you specify a whole number, MediaConnect uses a ratio of N/1. For example, if you specify 60, MediaConnect uses 60/1 as the exactFramerate.
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
ExactFramerate?: string;
|
|
231
|
+
ExactFramerate?: string | undefined;
|
|
232
232
|
/**
|
|
233
233
|
* The pixel aspect ratio (PAR) of the video.
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
Par?: string;
|
|
236
|
+
Par?: string | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* The encoding range of the video.
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
Range?: Range;
|
|
241
|
+
Range?: Range | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* The type of compression that was used to smooth the video’s appearance.
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
ScanMode?: ScanMode;
|
|
246
|
+
ScanMode?: ScanMode | undefined;
|
|
247
247
|
/**
|
|
248
248
|
* The transfer characteristic system (TCS) that is used in the video.
|
|
249
249
|
* @public
|
|
250
250
|
*/
|
|
251
|
-
Tcs?: Tcs;
|
|
251
|
+
Tcs?: Tcs | undefined;
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
254
|
* Attributes that are related to the media stream.
|
|
@@ -259,12 +259,12 @@ export interface MediaStreamAttributesRequest {
|
|
|
259
259
|
* The settings that you want to use to define the media stream.
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
Fmtp?: FmtpRequest;
|
|
262
|
+
Fmtp?: FmtpRequest | undefined;
|
|
263
263
|
/**
|
|
264
264
|
* The audio language, in a format that is recognized by the receiver.
|
|
265
265
|
* @public
|
|
266
266
|
*/
|
|
267
|
-
Lang?: string;
|
|
267
|
+
Lang?: string | undefined;
|
|
268
268
|
}
|
|
269
269
|
/**
|
|
270
270
|
* @public
|
|
@@ -288,17 +288,17 @@ export interface AddMediaStreamRequest {
|
|
|
288
288
|
* The attributes that you want to assign to the new media stream.
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
Attributes?: MediaStreamAttributesRequest;
|
|
291
|
+
Attributes?: MediaStreamAttributesRequest | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* The sample rate (in Hz) for the stream. If the media stream type is video or ancillary data, set this value to 90000. If the media stream type is audio, set this value to either 48000 or 96000.
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
ClockRate?: number;
|
|
296
|
+
ClockRate?: number | undefined;
|
|
297
297
|
/**
|
|
298
298
|
* A description that can help you quickly identify what your media stream is used for.
|
|
299
299
|
* @public
|
|
300
300
|
*/
|
|
301
|
-
Description?: string;
|
|
301
|
+
Description?: string | undefined;
|
|
302
302
|
/**
|
|
303
303
|
* A unique identifier for the media stream.
|
|
304
304
|
* @public
|
|
@@ -318,7 +318,7 @@ export interface AddMediaStreamRequest {
|
|
|
318
318
|
* The resolution of the video.
|
|
319
319
|
* @public
|
|
320
320
|
*/
|
|
321
|
-
VideoFormat?: string;
|
|
321
|
+
VideoFormat?: string | undefined;
|
|
322
322
|
}
|
|
323
323
|
/**
|
|
324
324
|
* @public
|
|
@@ -355,32 +355,32 @@ export interface Encryption {
|
|
|
355
355
|
* The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
Algorithm?: Algorithm;
|
|
358
|
+
Algorithm?: Algorithm | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* A 128-bit, 16-byte hex value represented by a 32-character string, to be used with the key for encrypting content. This parameter is not valid for static key encryption.
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
ConstantInitializationVector?: string;
|
|
363
|
+
ConstantInitializationVector?: string | undefined;
|
|
364
364
|
/**
|
|
365
365
|
* The value of one of the devices that you configured with your digital rights management (DRM) platform key provider. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
366
366
|
* @public
|
|
367
367
|
*/
|
|
368
|
-
DeviceId?: string;
|
|
368
|
+
DeviceId?: string | undefined;
|
|
369
369
|
/**
|
|
370
370
|
* The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
KeyType?: KeyType;
|
|
373
|
+
KeyType?: KeyType | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* The AWS Region that the API Gateway proxy endpoint was created in. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
Region?: string;
|
|
378
|
+
Region?: string | undefined;
|
|
379
379
|
/**
|
|
380
380
|
* An identifier for the content. The service sends this value to the key server to identify the current endpoint. The resource ID is also known as the content ID. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
ResourceId?: string;
|
|
383
|
+
ResourceId?: string | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity).
|
|
386
386
|
* @public
|
|
@@ -390,12 +390,12 @@ export interface Encryption {
|
|
|
390
390
|
* The ARN of the secret that you created in AWS Secrets Manager to store the encryption key. This parameter is required for static key encryption and is not valid for SPEKE encryption.
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
SecretArn?: string;
|
|
393
|
+
SecretArn?: string | undefined;
|
|
394
394
|
/**
|
|
395
395
|
* The URL from the API Gateway proxy that you set up to talk to your key server. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
Url?: string;
|
|
398
|
+
Url?: string | undefined;
|
|
399
399
|
}
|
|
400
400
|
/**
|
|
401
401
|
* The VPC interface that you want to designate where the media stream is coming from or going to.
|
|
@@ -480,7 +480,7 @@ export interface MediaStreamOutputConfigurationRequest {
|
|
|
480
480
|
* The transport parameters that you want to associate with the media stream.
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
DestinationConfigurations?: DestinationConfigurationRequest[];
|
|
483
|
+
DestinationConfigurations?: DestinationConfigurationRequest[] | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* The format that will be used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.
|
|
486
486
|
* @public
|
|
@@ -490,7 +490,7 @@ export interface MediaStreamOutputConfigurationRequest {
|
|
|
490
490
|
* A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.
|
|
491
491
|
* @public
|
|
492
492
|
*/
|
|
493
|
-
EncodingParameters?: EncodingParametersRequest;
|
|
493
|
+
EncodingParameters?: EncodingParametersRequest | undefined;
|
|
494
494
|
/**
|
|
495
495
|
* The name of the media stream that is associated with the output.
|
|
496
496
|
* @public
|
|
@@ -518,47 +518,47 @@ export interface AddOutputRequest {
|
|
|
518
518
|
* The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
CidrAllowList?: string[];
|
|
521
|
+
CidrAllowList?: string[] | undefined;
|
|
522
522
|
/**
|
|
523
523
|
* A description of the output. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the end user.
|
|
524
524
|
* @public
|
|
525
525
|
*/
|
|
526
|
-
Description?: string;
|
|
526
|
+
Description?: string | undefined;
|
|
527
527
|
/**
|
|
528
528
|
* The IP address from which video will be sent to output destinations.
|
|
529
529
|
* @public
|
|
530
530
|
*/
|
|
531
|
-
Destination?: string;
|
|
531
|
+
Destination?: string | undefined;
|
|
532
532
|
/**
|
|
533
533
|
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). Allowable encryption types: static-key.
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
Encryption?: Encryption;
|
|
536
|
+
Encryption?: Encryption | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
MaxLatency?: number;
|
|
541
|
+
MaxLatency?: number | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* The media streams that are associated with the output, and the parameters for those associations.
|
|
544
544
|
* @public
|
|
545
545
|
*/
|
|
546
|
-
MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[];
|
|
546
|
+
MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[] | undefined;
|
|
547
547
|
/**
|
|
548
548
|
* The minimum latency in milliseconds for SRT-based streams. In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
|
|
549
549
|
* @public
|
|
550
550
|
*/
|
|
551
|
-
MinLatency?: number;
|
|
551
|
+
MinLatency?: number | undefined;
|
|
552
552
|
/**
|
|
553
553
|
* The name of the output. This value must be unique within the current flow.
|
|
554
554
|
* @public
|
|
555
555
|
*/
|
|
556
|
-
Name?: string;
|
|
556
|
+
Name?: string | undefined;
|
|
557
557
|
/**
|
|
558
558
|
* The port to use when content is distributed to this output.
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
Port?: number;
|
|
561
|
+
Port?: number | undefined;
|
|
562
562
|
/**
|
|
563
563
|
* The protocol to use for the output.
|
|
564
564
|
* @public
|
|
@@ -568,32 +568,32 @@ export interface AddOutputRequest {
|
|
|
568
568
|
* The remote ID for the Zixi-pull output stream.
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
RemoteId?: string;
|
|
571
|
+
RemoteId?: string | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
574
574
|
* @public
|
|
575
575
|
*/
|
|
576
|
-
SenderControlPort?: number;
|
|
576
|
+
SenderControlPort?: number | undefined;
|
|
577
577
|
/**
|
|
578
578
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
SmoothingLatency?: number;
|
|
581
|
+
SmoothingLatency?: number | undefined;
|
|
582
582
|
/**
|
|
583
583
|
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
StreamId?: string;
|
|
586
|
+
StreamId?: string | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* The name of the VPC interface attachment to use for this output.
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
591
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* An indication of whether the new output should be enabled or disabled as soon as it is created. If you don't specify the outputStatus field in your request, MediaConnect sets it to ENABLED.
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
OutputStatus?: OutputStatus;
|
|
596
|
+
OutputStatus?: OutputStatus | undefined;
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
599
|
* The output of the bridge. A flow output is delivered to the AWS cloud.
|
|
@@ -661,12 +661,12 @@ export interface BridgeOutput {
|
|
|
661
661
|
* The output of the bridge. A flow output is delivered to the AWS cloud.
|
|
662
662
|
* @public
|
|
663
663
|
*/
|
|
664
|
-
FlowOutput?: BridgeFlowOutput;
|
|
664
|
+
FlowOutput?: BridgeFlowOutput | undefined;
|
|
665
665
|
/**
|
|
666
666
|
* The output of the bridge. A network output is delivered to your premises.
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
NetworkOutput?: BridgeNetworkOutput;
|
|
669
|
+
NetworkOutput?: BridgeNetworkOutput | undefined;
|
|
670
670
|
}
|
|
671
671
|
/**
|
|
672
672
|
* The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
|
|
@@ -682,7 +682,7 @@ export interface BridgeFlowSource {
|
|
|
682
682
|
* The name of the VPC interface attachment to use for this source.
|
|
683
683
|
* @public
|
|
684
684
|
*/
|
|
685
|
-
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
685
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
686
686
|
/**
|
|
687
687
|
* The name of the flow source.
|
|
688
688
|
* @public
|
|
@@ -692,7 +692,7 @@ export interface BridgeFlowSource {
|
|
|
692
692
|
* The Amazon Resource Number (ARN) of the output.
|
|
693
693
|
* @public
|
|
694
694
|
*/
|
|
695
|
-
OutputArn?: string;
|
|
695
|
+
OutputArn?: string | undefined;
|
|
696
696
|
}
|
|
697
697
|
/**
|
|
698
698
|
* The source of the bridge. A network source originates at your premises.
|
|
@@ -734,12 +734,12 @@ export interface BridgeSource {
|
|
|
734
734
|
* The source of the bridge. A flow source originates in MediaConnect as an existing cloud flow.
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
FlowSource?: BridgeFlowSource;
|
|
737
|
+
FlowSource?: BridgeFlowSource | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* The source of the bridge. A network source originates at your premises.
|
|
740
740
|
* @public
|
|
741
741
|
*/
|
|
742
|
-
NetworkSource?: BridgeNetworkSource;
|
|
742
|
+
NetworkSource?: BridgeNetworkSource | undefined;
|
|
743
743
|
}
|
|
744
744
|
/**
|
|
745
745
|
* The VPC interface that is used for the media stream associated with the source or output.
|
|
@@ -799,17 +799,17 @@ export interface Entitlement {
|
|
|
799
799
|
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
|
|
800
800
|
* @public
|
|
801
801
|
*/
|
|
802
|
-
DataTransferSubscriberFeePercent?: number;
|
|
802
|
+
DataTransferSubscriberFeePercent?: number | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* A description of the entitlement.
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
Description?: string;
|
|
807
|
+
Description?: string | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* The type of encryption that will be used on the output that is associated with this entitlement.
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
Encryption?: Encryption;
|
|
812
|
+
Encryption?: Encryption | undefined;
|
|
813
813
|
/**
|
|
814
814
|
* The ARN of the entitlement.
|
|
815
815
|
* @public
|
|
@@ -819,7 +819,7 @@ export interface Entitlement {
|
|
|
819
819
|
* An indication of whether the entitlement is enabled.
|
|
820
820
|
* @public
|
|
821
821
|
*/
|
|
822
|
-
EntitlementStatus?: EntitlementStatus;
|
|
822
|
+
EntitlementStatus?: EntitlementStatus | undefined;
|
|
823
823
|
/**
|
|
824
824
|
* The name of the entitlement.
|
|
825
825
|
* @public
|
|
@@ -856,27 +856,27 @@ export interface GrantEntitlementRequest {
|
|
|
856
856
|
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
DataTransferSubscriberFeePercent?: number;
|
|
859
|
+
DataTransferSubscriberFeePercent?: number | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* A description of the entitlement. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the subscriber or end user.
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
Description?: string;
|
|
864
|
+
Description?: string | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* The type of encryption that will be used on the output that is associated with this entitlement. Allowable encryption types: static-key, speke.
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
Encryption?: Encryption;
|
|
869
|
+
Encryption?: Encryption | undefined;
|
|
870
870
|
/**
|
|
871
871
|
* An indication of whether the new entitlement should be enabled or disabled as soon as it is created. If you don’t specify the entitlementStatus field in your request, MediaConnect sets it to ENABLED.
|
|
872
872
|
* @public
|
|
873
873
|
*/
|
|
874
|
-
EntitlementStatus?: EntitlementStatus;
|
|
874
|
+
EntitlementStatus?: EntitlementStatus | undefined;
|
|
875
875
|
/**
|
|
876
876
|
* The name of the entitlement. This value must be unique within the current flow.
|
|
877
877
|
* @public
|
|
878
878
|
*/
|
|
879
|
-
Name?: string;
|
|
879
|
+
Name?: string | undefined;
|
|
880
880
|
/**
|
|
881
881
|
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be allowed to create their own flows using your content as the source.
|
|
882
882
|
* @public
|
|
@@ -978,7 +978,7 @@ export interface ListedEntitlement {
|
|
|
978
978
|
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
DataTransferSubscriberFeePercent?: number;
|
|
981
|
+
DataTransferSubscriberFeePercent?: number | undefined;
|
|
982
982
|
/**
|
|
983
983
|
* The ARN of the entitlement.
|
|
984
984
|
* @public
|
|
@@ -1016,22 +1016,22 @@ export interface Maintenance {
|
|
|
1016
1016
|
* A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
MaintenanceDay?: MaintenanceDay;
|
|
1019
|
+
MaintenanceDay?: MaintenanceDay | undefined;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* The Maintenance has to be performed before this deadline in ISO UTC format. Example: 2021-01-30T08:30:00Z.
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
MaintenanceDeadline?: string;
|
|
1024
|
+
MaintenanceDeadline?: string | undefined;
|
|
1025
1025
|
/**
|
|
1026
1026
|
* A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
|
|
1027
1027
|
* @public
|
|
1028
1028
|
*/
|
|
1029
|
-
MaintenanceScheduledDate?: string;
|
|
1029
|
+
MaintenanceScheduledDate?: string | undefined;
|
|
1030
1030
|
/**
|
|
1031
1031
|
* UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
1032
1032
|
* @public
|
|
1033
1033
|
*/
|
|
1034
|
-
MaintenanceStartHour?: string;
|
|
1034
|
+
MaintenanceStartHour?: string | undefined;
|
|
1035
1035
|
}
|
|
1036
1036
|
/**
|
|
1037
1037
|
* @public
|
|
@@ -1101,7 +1101,7 @@ export interface ListedFlow {
|
|
|
1101
1101
|
* The maintenance setting of a flow
|
|
1102
1102
|
* @public
|
|
1103
1103
|
*/
|
|
1104
|
-
Maintenance?: Maintenance;
|
|
1104
|
+
Maintenance?: Maintenance | undefined;
|
|
1105
1105
|
}
|
|
1106
1106
|
/**
|
|
1107
1107
|
* @public
|
|
@@ -1176,7 +1176,7 @@ export interface ListedGatewayInstance {
|
|
|
1176
1176
|
* The status of the instance.
|
|
1177
1177
|
* @public
|
|
1178
1178
|
*/
|
|
1179
|
-
InstanceState?: InstanceState;
|
|
1179
|
+
InstanceState?: InstanceState | undefined;
|
|
1180
1180
|
}
|
|
1181
1181
|
/**
|
|
1182
1182
|
* FMTP
|
|
@@ -1187,37 +1187,37 @@ export interface Fmtp {
|
|
|
1187
1187
|
* The format of the audio channel.
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
ChannelOrder?: string;
|
|
1190
|
+
ChannelOrder?: string | undefined;
|
|
1191
1191
|
/**
|
|
1192
1192
|
* The format that is used for the representation of color.
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
Colorimetry?: Colorimetry;
|
|
1195
|
+
Colorimetry?: Colorimetry | undefined;
|
|
1196
1196
|
/**
|
|
1197
1197
|
* The frame rate for the video stream, in frames/second. For example: 60000/1001. If you specify a whole number, MediaConnect uses a ratio of N/1. For example, if you specify 60, MediaConnect uses 60/1 as the exactFramerate.
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
ExactFramerate?: string;
|
|
1200
|
+
ExactFramerate?: string | undefined;
|
|
1201
1201
|
/**
|
|
1202
1202
|
* The pixel aspect ratio (PAR) of the video.
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
Par?: string;
|
|
1205
|
+
Par?: string | undefined;
|
|
1206
1206
|
/**
|
|
1207
1207
|
* The encoding range of the video.
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
Range?: Range;
|
|
1210
|
+
Range?: Range | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* The type of compression that was used to smooth the video’s appearance
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
ScanMode?: ScanMode;
|
|
1215
|
+
ScanMode?: ScanMode | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* The transfer characteristic system (TCS) that is used in the video.
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
Tcs?: Tcs;
|
|
1220
|
+
Tcs?: Tcs | undefined;
|
|
1221
1221
|
}
|
|
1222
1222
|
/**
|
|
1223
1223
|
* Attributes that are related to the media stream.
|
|
@@ -1233,7 +1233,7 @@ export interface MediaStreamAttributes {
|
|
|
1233
1233
|
* The audio language, in a format that is recognized by the receiver.
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
Lang?: string;
|
|
1236
|
+
Lang?: string | undefined;
|
|
1237
1237
|
}
|
|
1238
1238
|
/**
|
|
1239
1239
|
* A single track or stream of media that contains video, audio, or ancillary data. After you add a media stream to a flow, you can associate it with sources and outputs on that flow, as long as they use the CDI protocol or the ST 2110 JPEG XS protocol. Each source or output can consist of one or many media streams.
|
|
@@ -1244,17 +1244,17 @@ export interface MediaStream {
|
|
|
1244
1244
|
* Attributes that are related to the media stream.
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
Attributes?: MediaStreamAttributes;
|
|
1247
|
+
Attributes?: MediaStreamAttributes | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* The sample rate for the stream. This value is measured in Hz.
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
ClockRate?: number;
|
|
1252
|
+
ClockRate?: number | undefined;
|
|
1253
1253
|
/**
|
|
1254
1254
|
* A description that can help you quickly identify what your media stream is used for.
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
Description?: string;
|
|
1257
|
+
Description?: string | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* The format type number (sometimes referred to as RTP payload type) of the media stream. MediaConnect assigns this value to the media stream. For ST 2110 JPEG XS outputs, you need to provide this value to the receiver.
|
|
1260
1260
|
* @public
|
|
@@ -1279,7 +1279,7 @@ export interface MediaStream {
|
|
|
1279
1279
|
* The resolution of the video.
|
|
1280
1280
|
* @public
|
|
1281
1281
|
*/
|
|
1282
|
-
VideoFormat?: string;
|
|
1282
|
+
VideoFormat?: string | undefined;
|
|
1283
1283
|
}
|
|
1284
1284
|
/**
|
|
1285
1285
|
* A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.
|
|
@@ -1306,7 +1306,7 @@ export interface MediaStreamOutputConfiguration {
|
|
|
1306
1306
|
* The transport parameters that are associated with each outbound media stream.
|
|
1307
1307
|
* @public
|
|
1308
1308
|
*/
|
|
1309
|
-
DestinationConfigurations?: DestinationConfiguration[];
|
|
1309
|
+
DestinationConfigurations?: DestinationConfiguration[] | undefined;
|
|
1310
1310
|
/**
|
|
1311
1311
|
* The format that was used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.
|
|
1312
1312
|
* @public
|
|
@@ -1316,7 +1316,7 @@ export interface MediaStreamOutputConfiguration {
|
|
|
1316
1316
|
* Encoding parameters
|
|
1317
1317
|
* @public
|
|
1318
1318
|
*/
|
|
1319
|
-
EncodingParameters?: EncodingParameters;
|
|
1319
|
+
EncodingParameters?: EncodingParameters | undefined;
|
|
1320
1320
|
/**
|
|
1321
1321
|
* The name of the media stream.
|
|
1322
1322
|
* @public
|
|
@@ -1337,7 +1337,7 @@ export interface MediaStreamSourceConfiguration {
|
|
|
1337
1337
|
* The transport parameters that are associated with an incoming media stream.
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
InputConfigurations?: InputConfiguration[];
|
|
1340
|
+
InputConfigurations?: InputConfiguration[] | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* The name of the media stream.
|
|
1343
1343
|
* @public
|
|
@@ -1358,7 +1358,7 @@ export interface MediaStreamSourceConfigurationRequest {
|
|
|
1358
1358
|
* The transport parameters that you want to associate with the media stream.
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
InputConfigurations?: InputConfigurationRequest[];
|
|
1361
|
+
InputConfigurations?: InputConfigurationRequest[] | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* The name of the media stream.
|
|
1364
1364
|
* @public
|
|
@@ -1383,7 +1383,7 @@ export interface MessageDetail {
|
|
|
1383
1383
|
* The name of the resource.
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
ResourceName?: string;
|
|
1386
|
+
ResourceName?: string | undefined;
|
|
1387
1387
|
}
|
|
1388
1388
|
/**
|
|
1389
1389
|
* @public
|
|
@@ -1427,7 +1427,7 @@ export interface ResourceSpecification {
|
|
|
1427
1427
|
* The amount of outbound bandwidth that is discounted in the offering.
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
ReservedBitrate?: number;
|
|
1430
|
+
ReservedBitrate?: number | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* The type of resource and the unit that is being billed for.
|
|
1433
1433
|
* @public
|
|
@@ -1489,27 +1489,27 @@ export interface Transport {
|
|
|
1489
1489
|
* The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
1490
1490
|
* @public
|
|
1491
1491
|
*/
|
|
1492
|
-
CidrAllowList?: string[];
|
|
1492
|
+
CidrAllowList?: string[] | undefined;
|
|
1493
1493
|
/**
|
|
1494
1494
|
* The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
|
1495
1495
|
* @public
|
|
1496
1496
|
*/
|
|
1497
|
-
MaxBitrate?: number;
|
|
1497
|
+
MaxBitrate?: number | undefined;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
1500
1500
|
* @public
|
|
1501
1501
|
*/
|
|
1502
|
-
MaxLatency?: number;
|
|
1502
|
+
MaxLatency?: number | undefined;
|
|
1503
1503
|
/**
|
|
1504
1504
|
* The size of the buffer (in milliseconds) to use to sync incoming source data.
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
|
-
MaxSyncBuffer?: number;
|
|
1507
|
+
MaxSyncBuffer?: number | undefined;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* The minimum latency in milliseconds for SRT-based streams. In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
MinLatency?: number;
|
|
1512
|
+
MinLatency?: number | undefined;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* The protocol that is used by the source or output.
|
|
1515
1515
|
* @public
|
|
@@ -1519,37 +1519,37 @@ export interface Transport {
|
|
|
1519
1519
|
* The remote ID for the Zixi-pull stream.
|
|
1520
1520
|
* @public
|
|
1521
1521
|
*/
|
|
1522
|
-
RemoteId?: string;
|
|
1522
|
+
RemoteId?: string | undefined;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
1525
1525
|
* @public
|
|
1526
1526
|
*/
|
|
1527
|
-
SenderControlPort?: number;
|
|
1527
|
+
SenderControlPort?: number | undefined;
|
|
1528
1528
|
/**
|
|
1529
1529
|
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
1530
1530
|
* @public
|
|
1531
1531
|
*/
|
|
1532
|
-
SenderIpAddress?: string;
|
|
1532
|
+
SenderIpAddress?: string | undefined;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
SmoothingLatency?: number;
|
|
1537
|
+
SmoothingLatency?: number | undefined;
|
|
1538
1538
|
/**
|
|
1539
1539
|
* Source IP or domain name for SRT-caller protocol.
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
SourceListenerAddress?: string;
|
|
1542
|
+
SourceListenerAddress?: string | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* Source port for SRT-caller protocol.
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
SourceListenerPort?: number;
|
|
1547
|
+
SourceListenerPort?: number | undefined;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
1550
1550
|
* @public
|
|
1551
1551
|
*/
|
|
1552
|
-
StreamId?: string;
|
|
1552
|
+
StreamId?: string | undefined;
|
|
1553
1553
|
}
|
|
1554
1554
|
/**
|
|
1555
1555
|
* The settings for an output.
|
|
@@ -1560,42 +1560,42 @@ export interface Output {
|
|
|
1560
1560
|
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
DataTransferSubscriberFeePercent?: number;
|
|
1563
|
+
DataTransferSubscriberFeePercent?: number | undefined;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* A description of the output.
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
Description?: string;
|
|
1568
|
+
Description?: string | undefined;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* The address where you want to send the output.
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
Destination?: string;
|
|
1573
|
+
Destination?: string | undefined;
|
|
1574
1574
|
/**
|
|
1575
1575
|
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
Encryption?: Encryption;
|
|
1578
|
+
Encryption?: Encryption | undefined;
|
|
1579
1579
|
/**
|
|
1580
1580
|
* The ARN of the entitlement on the originator''s flow. This value is relevant only on entitled flows.
|
|
1581
1581
|
* @public
|
|
1582
1582
|
*/
|
|
1583
|
-
EntitlementArn?: string;
|
|
1583
|
+
EntitlementArn?: string | undefined;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* The IP address that the receiver requires in order to establish a connection with the flow. For public networking, the ListenerAddress is represented by the elastic IP address of the flow. For private networking, the ListenerAddress is represented by the elastic network interface IP address of the VPC. This field applies only to outputs that use the Zixi pull or SRT listener protocol.
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
ListenerAddress?: string;
|
|
1588
|
+
ListenerAddress?: string | undefined;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* The input ARN of the AWS Elemental MediaLive channel. This parameter is relevant only for outputs that were added by creating a MediaLive input.
|
|
1591
1591
|
* @public
|
|
1592
1592
|
*/
|
|
1593
|
-
MediaLiveInputArn?: string;
|
|
1593
|
+
MediaLiveInputArn?: string | undefined;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* The configuration for each media stream that is associated with the output.
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
MediaStreamOutputConfigurations?: MediaStreamOutputConfiguration[];
|
|
1598
|
+
MediaStreamOutputConfigurations?: MediaStreamOutputConfiguration[] | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* The name of the output. This value must be unique within the current flow.
|
|
1601
1601
|
* @public
|
|
@@ -1610,32 +1610,32 @@ export interface Output {
|
|
|
1610
1610
|
* The port to use when content is distributed to this output.
|
|
1611
1611
|
* @public
|
|
1612
1612
|
*/
|
|
1613
|
-
Port?: number;
|
|
1613
|
+
Port?: number | undefined;
|
|
1614
1614
|
/**
|
|
1615
1615
|
* Attributes related to the transport stream that are used in the output.
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
Transport?: Transport;
|
|
1618
|
+
Transport?: Transport | undefined;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* The name of the VPC interface attachment to use for this output.
|
|
1621
1621
|
* @public
|
|
1622
1622
|
*/
|
|
1623
|
-
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1623
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
1624
1624
|
/**
|
|
1625
1625
|
* The ARN of the bridge that added this output.
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
BridgeArn?: string;
|
|
1628
|
+
BridgeArn?: string | undefined;
|
|
1629
1629
|
/**
|
|
1630
1630
|
* The bridge output ports currently in use.
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
BridgePorts?: number[];
|
|
1633
|
+
BridgePorts?: number[] | undefined;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* An indication of whether the output is transmitting data or not.
|
|
1636
1636
|
* @public
|
|
1637
1637
|
*/
|
|
1638
|
-
OutputStatus?: OutputStatus;
|
|
1638
|
+
OutputStatus?: OutputStatus | undefined;
|
|
1639
1639
|
}
|
|
1640
1640
|
/**
|
|
1641
1641
|
* @public
|
|
@@ -1736,7 +1736,7 @@ export interface SetGatewayBridgeSourceRequest {
|
|
|
1736
1736
|
* The name of the VPC interface attachment to use for this bridge source.
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1739
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
1740
1740
|
}
|
|
1741
1741
|
/**
|
|
1742
1742
|
* The settings for the source of the flow.
|
|
@@ -1747,97 +1747,97 @@ export interface SetSourceRequest {
|
|
|
1747
1747
|
* The type of encryption that is used on the content ingested from this source. Allowable encryption types: static-key.
|
|
1748
1748
|
* @public
|
|
1749
1749
|
*/
|
|
1750
|
-
Decryption?: Encryption;
|
|
1750
|
+
Decryption?: Encryption | undefined;
|
|
1751
1751
|
/**
|
|
1752
1752
|
* A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
|
|
1753
1753
|
* @public
|
|
1754
1754
|
*/
|
|
1755
|
-
Description?: string;
|
|
1755
|
+
Description?: string | undefined;
|
|
1756
1756
|
/**
|
|
1757
1757
|
* The ARN of the entitlement that allows you to subscribe to this flow. The entitlement is set by the flow originator, and the ARN is generated as part of the originator's flow.
|
|
1758
1758
|
* @public
|
|
1759
1759
|
*/
|
|
1760
|
-
EntitlementArn?: string;
|
|
1760
|
+
EntitlementArn?: string | undefined;
|
|
1761
1761
|
/**
|
|
1762
1762
|
* The port that the flow will be listening on for incoming content.
|
|
1763
1763
|
* @public
|
|
1764
1764
|
*/
|
|
1765
|
-
IngestPort?: number;
|
|
1765
|
+
IngestPort?: number | undefined;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
|
1768
1768
|
* @public
|
|
1769
1769
|
*/
|
|
1770
|
-
MaxBitrate?: number;
|
|
1770
|
+
MaxBitrate?: number | undefined;
|
|
1771
1771
|
/**
|
|
1772
1772
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
MaxLatency?: number;
|
|
1775
|
+
MaxLatency?: number | undefined;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* The size of the buffer (in milliseconds) to use to sync incoming source data.
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
MaxSyncBuffer?: number;
|
|
1780
|
+
MaxSyncBuffer?: number | undefined;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* The media streams that are associated with the source, and the parameters for those associations.
|
|
1783
1783
|
* @public
|
|
1784
1784
|
*/
|
|
1785
|
-
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
|
|
1785
|
+
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[] | undefined;
|
|
1786
1786
|
/**
|
|
1787
1787
|
* The minimum latency in milliseconds for SRT-based streams. In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
|
|
1788
1788
|
* @public
|
|
1789
1789
|
*/
|
|
1790
|
-
MinLatency?: number;
|
|
1790
|
+
MinLatency?: number | undefined;
|
|
1791
1791
|
/**
|
|
1792
1792
|
* The name of the source.
|
|
1793
1793
|
* @public
|
|
1794
1794
|
*/
|
|
1795
|
-
Name?: string;
|
|
1795
|
+
Name?: string | undefined;
|
|
1796
1796
|
/**
|
|
1797
1797
|
* The protocol that is used by the source.
|
|
1798
1798
|
* @public
|
|
1799
1799
|
*/
|
|
1800
|
-
Protocol?: Protocol;
|
|
1800
|
+
Protocol?: Protocol | undefined;
|
|
1801
1801
|
/**
|
|
1802
1802
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
1803
1803
|
* @public
|
|
1804
1804
|
*/
|
|
1805
|
-
SenderControlPort?: number;
|
|
1805
|
+
SenderControlPort?: number | undefined;
|
|
1806
1806
|
/**
|
|
1807
1807
|
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
1808
1808
|
* @public
|
|
1809
1809
|
*/
|
|
1810
|
-
SenderIpAddress?: string;
|
|
1810
|
+
SenderIpAddress?: string | undefined;
|
|
1811
1811
|
/**
|
|
1812
1812
|
* Source IP or domain name for SRT-caller protocol.
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
SourceListenerAddress?: string;
|
|
1815
|
+
SourceListenerAddress?: string | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* Source port for SRT-caller protocol.
|
|
1818
1818
|
* @public
|
|
1819
1819
|
*/
|
|
1820
|
-
SourceListenerPort?: number;
|
|
1820
|
+
SourceListenerPort?: number | undefined;
|
|
1821
1821
|
/**
|
|
1822
1822
|
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
StreamId?: string;
|
|
1825
|
+
StreamId?: string | undefined;
|
|
1826
1826
|
/**
|
|
1827
1827
|
* The name of the VPC interface to use for this source.
|
|
1828
1828
|
* @public
|
|
1829
1829
|
*/
|
|
1830
|
-
VpcInterfaceName?: string;
|
|
1830
|
+
VpcInterfaceName?: string | undefined;
|
|
1831
1831
|
/**
|
|
1832
1832
|
* The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
WhitelistCidr?: string;
|
|
1835
|
+
WhitelistCidr?: string | undefined;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
1838
1838
|
* @public
|
|
1839
1839
|
*/
|
|
1840
|
-
GatewayBridgeSource?: SetGatewayBridgeSourceRequest;
|
|
1840
|
+
GatewayBridgeSource?: SetGatewayBridgeSourceRequest | undefined;
|
|
1841
1841
|
}
|
|
1842
1842
|
/**
|
|
1843
1843
|
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
@@ -1853,7 +1853,7 @@ export interface GatewayBridgeSource {
|
|
|
1853
1853
|
* The name of the VPC interface attachment to use for this bridge source.
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
1856
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
1857
1857
|
}
|
|
1858
1858
|
/**
|
|
1859
1859
|
* The settings for the source of the flow.
|
|
@@ -1864,37 +1864,37 @@ export interface Source {
|
|
|
1864
1864
|
* Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
|
|
1865
1865
|
* @public
|
|
1866
1866
|
*/
|
|
1867
|
-
DataTransferSubscriberFeePercent?: number;
|
|
1867
|
+
DataTransferSubscriberFeePercent?: number | undefined;
|
|
1868
1868
|
/**
|
|
1869
1869
|
* The type of encryption that is used on the content ingested from this source.
|
|
1870
1870
|
* @public
|
|
1871
1871
|
*/
|
|
1872
|
-
Decryption?: Encryption;
|
|
1872
|
+
Decryption?: Encryption | undefined;
|
|
1873
1873
|
/**
|
|
1874
1874
|
* A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
|
|
1875
1875
|
* @public
|
|
1876
1876
|
*/
|
|
1877
|
-
Description?: string;
|
|
1877
|
+
Description?: string | undefined;
|
|
1878
1878
|
/**
|
|
1879
1879
|
* The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator's flow.
|
|
1880
1880
|
* @public
|
|
1881
1881
|
*/
|
|
1882
|
-
EntitlementArn?: string;
|
|
1882
|
+
EntitlementArn?: string | undefined;
|
|
1883
1883
|
/**
|
|
1884
1884
|
* The IP address that the flow will be listening on for incoming content.
|
|
1885
1885
|
* @public
|
|
1886
1886
|
*/
|
|
1887
|
-
IngestIp?: string;
|
|
1887
|
+
IngestIp?: string | undefined;
|
|
1888
1888
|
/**
|
|
1889
1889
|
* The port that the flow will be listening on for incoming content.
|
|
1890
1890
|
* @public
|
|
1891
1891
|
*/
|
|
1892
|
-
IngestPort?: number;
|
|
1892
|
+
IngestPort?: number | undefined;
|
|
1893
1893
|
/**
|
|
1894
1894
|
* The media streams that are associated with the source, and the parameters for those associations.
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
MediaStreamSourceConfigurations?: MediaStreamSourceConfiguration[];
|
|
1897
|
+
MediaStreamSourceConfigurations?: MediaStreamSourceConfiguration[] | undefined;
|
|
1898
1898
|
/**
|
|
1899
1899
|
* The name of the source.
|
|
1900
1900
|
* @public
|
|
@@ -1904,12 +1904,12 @@ export interface Source {
|
|
|
1904
1904
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
1905
1905
|
* @public
|
|
1906
1906
|
*/
|
|
1907
|
-
SenderControlPort?: number;
|
|
1907
|
+
SenderControlPort?: number | undefined;
|
|
1908
1908
|
/**
|
|
1909
1909
|
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
1910
1910
|
* @public
|
|
1911
1911
|
*/
|
|
1912
|
-
SenderIpAddress?: string;
|
|
1912
|
+
SenderIpAddress?: string | undefined;
|
|
1913
1913
|
/**
|
|
1914
1914
|
* The ARN of the source.
|
|
1915
1915
|
* @public
|
|
@@ -1919,22 +1919,22 @@ export interface Source {
|
|
|
1919
1919
|
* Attributes related to the transport stream that are used in the source.
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
Transport?: Transport;
|
|
1922
|
+
Transport?: Transport | undefined;
|
|
1923
1923
|
/**
|
|
1924
1924
|
* The name of the VPC interface that is used for this source.
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
VpcInterfaceName?: string;
|
|
1927
|
+
VpcInterfaceName?: string | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
WhitelistCidr?: string;
|
|
1932
|
+
WhitelistCidr?: string | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
GatewayBridgeSource?: GatewayBridgeSource;
|
|
1937
|
+
GatewayBridgeSource?: GatewayBridgeSource | undefined;
|
|
1938
1938
|
}
|
|
1939
1939
|
/**
|
|
1940
1940
|
* The frame resolution used by the video stream.
|
|
@@ -1961,22 +1961,22 @@ export interface TransportStream {
|
|
|
1961
1961
|
* The number of channels in the audio stream.
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
Channels?: number;
|
|
1964
|
+
Channels?: number | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* The codec used by the stream.
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
Codec?: string;
|
|
1969
|
+
Codec?: string | undefined;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* The frame rate used by the video stream.
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
FrameRate?: string;
|
|
1974
|
+
FrameRate?: string | undefined;
|
|
1975
1975
|
/**
|
|
1976
1976
|
* The frame resolution used by the video stream.
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
FrameResolution?: FrameResolution;
|
|
1979
|
+
FrameResolution?: FrameResolution | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* The Packet ID (PID) as it is reported in the Program Map Table.
|
|
1982
1982
|
* @public
|
|
@@ -1986,12 +1986,12 @@ export interface TransportStream {
|
|
|
1986
1986
|
* The sample rate used by the audio stream.
|
|
1987
1987
|
* @public
|
|
1988
1988
|
*/
|
|
1989
|
-
SampleRate?: number;
|
|
1989
|
+
SampleRate?: number | undefined;
|
|
1990
1990
|
/**
|
|
1991
1991
|
* The sample bit size used by the audio stream.
|
|
1992
1992
|
* @public
|
|
1993
1993
|
*/
|
|
1994
|
-
SampleSize?: number;
|
|
1994
|
+
SampleSize?: number | undefined;
|
|
1995
1995
|
/**
|
|
1996
1996
|
* The Stream Type as it is reported in the Program Map Table.
|
|
1997
1997
|
* @public
|
|
@@ -2012,7 +2012,7 @@ export interface TransportStreamProgram {
|
|
|
2012
2012
|
* The program name as it is reported in the Program Association Table.
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
ProgramName?: string;
|
|
2015
|
+
ProgramName?: string | undefined;
|
|
2016
2016
|
/**
|
|
2017
2017
|
* The program number as it is reported in the Program Association Table.
|
|
2018
2018
|
* @public
|
|
@@ -2091,7 +2091,7 @@ export interface VpcInterfaceRequest {
|
|
|
2091
2091
|
* The type of network interface. If this value is not included in the request, MediaConnect uses ENA as the networkInterfaceType.
|
|
2092
2092
|
* @public
|
|
2093
2093
|
*/
|
|
2094
|
-
NetworkInterfaceType?: NetworkInterfaceType;
|
|
2094
|
+
NetworkInterfaceType?: NetworkInterfaceType | undefined;
|
|
2095
2095
|
/**
|
|
2096
2096
|
* Role Arn MediaConnect can assumes to create ENIs in customer's account
|
|
2097
2097
|
* @public
|
|
@@ -2132,12 +2132,12 @@ export interface AddBridgeOutputsResponse {
|
|
|
2132
2132
|
* The Amazon Resource Number (ARN) of the bridge.
|
|
2133
2133
|
* @public
|
|
2134
2134
|
*/
|
|
2135
|
-
BridgeArn?: string;
|
|
2135
|
+
BridgeArn?: string | undefined;
|
|
2136
2136
|
/**
|
|
2137
2137
|
* The outputs that you added to this bridge.
|
|
2138
2138
|
* @public
|
|
2139
2139
|
*/
|
|
2140
|
-
Outputs?: BridgeOutput[];
|
|
2140
|
+
Outputs?: BridgeOutput[] | undefined;
|
|
2141
2141
|
}
|
|
2142
2142
|
/**
|
|
2143
2143
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -2282,12 +2282,12 @@ export interface AddBridgeSourcesResponse {
|
|
|
2282
2282
|
* The Amazon Resource Number (ARN) of the bridge.
|
|
2283
2283
|
* @public
|
|
2284
2284
|
*/
|
|
2285
|
-
BridgeArn?: string;
|
|
2285
|
+
BridgeArn?: string | undefined;
|
|
2286
2286
|
/**
|
|
2287
2287
|
* The sources that you added to this bridge.
|
|
2288
2288
|
* @public
|
|
2289
2289
|
*/
|
|
2290
|
-
Sources?: BridgeSource[];
|
|
2290
|
+
Sources?: BridgeSource[] | undefined;
|
|
2291
2291
|
}
|
|
2292
2292
|
/**
|
|
2293
2293
|
* @public
|
|
@@ -2323,12 +2323,12 @@ export interface AddFlowMediaStreamsResponse {
|
|
|
2323
2323
|
* The ARN of the flow that you added media streams to.
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
FlowArn?: string;
|
|
2326
|
+
FlowArn?: string | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* The media streams that you added to the flow.
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
MediaStreams?: MediaStream[];
|
|
2331
|
+
MediaStreams?: MediaStream[] | undefined;
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
2334
2334
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -2371,12 +2371,12 @@ export interface AddFlowOutputsResponse {
|
|
|
2371
2371
|
* The ARN of the flow that these outputs were added to.
|
|
2372
2372
|
* @public
|
|
2373
2373
|
*/
|
|
2374
|
-
FlowArn?: string;
|
|
2374
|
+
FlowArn?: string | undefined;
|
|
2375
2375
|
/**
|
|
2376
2376
|
* The details of the newly added outputs.
|
|
2377
2377
|
* @public
|
|
2378
2378
|
*/
|
|
2379
|
-
Outputs?: Output[];
|
|
2379
|
+
Outputs?: Output[] | undefined;
|
|
2380
2380
|
}
|
|
2381
2381
|
/**
|
|
2382
2382
|
* A request to add sources to the flow.
|
|
@@ -2402,12 +2402,12 @@ export interface AddFlowSourcesResponse {
|
|
|
2402
2402
|
* The ARN of the flow that these sources were added to.
|
|
2403
2403
|
* @public
|
|
2404
2404
|
*/
|
|
2405
|
-
FlowArn?: string;
|
|
2405
|
+
FlowArn?: string | undefined;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* The details of the newly added sources.
|
|
2408
2408
|
* @public
|
|
2409
2409
|
*/
|
|
2410
|
-
Sources?: Source[];
|
|
2410
|
+
Sources?: Source[] | undefined;
|
|
2411
2411
|
}
|
|
2412
2412
|
/**
|
|
2413
2413
|
* A request to add VPC interfaces to the flow.
|
|
@@ -2433,12 +2433,12 @@ export interface AddFlowVpcInterfacesResponse {
|
|
|
2433
2433
|
* The ARN of the flow that these VPC interfaces were added to.
|
|
2434
2434
|
* @public
|
|
2435
2435
|
*/
|
|
2436
|
-
FlowArn?: string;
|
|
2436
|
+
FlowArn?: string | undefined;
|
|
2437
2437
|
/**
|
|
2438
2438
|
* The details of the newly added VPC interfaces.
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
VpcInterfaces?: VpcInterface[];
|
|
2441
|
+
VpcInterfaces?: VpcInterface[] | undefined;
|
|
2442
2442
|
}
|
|
2443
2443
|
/**
|
|
2444
2444
|
* @public
|
|
@@ -2479,7 +2479,7 @@ export interface EgressGatewayBridge {
|
|
|
2479
2479
|
* The ID of the instance running this bridge.
|
|
2480
2480
|
* @public
|
|
2481
2481
|
*/
|
|
2482
|
-
InstanceId?: string;
|
|
2482
|
+
InstanceId?: string | undefined;
|
|
2483
2483
|
/**
|
|
2484
2484
|
* The maximum expected bitrate (in bps) of the egress bridge.
|
|
2485
2485
|
* @public
|
|
@@ -2494,7 +2494,7 @@ export interface IngressGatewayBridge {
|
|
|
2494
2494
|
* The ID of the instance running this bridge.
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
InstanceId?: string;
|
|
2497
|
+
InstanceId?: string | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* The maximum expected bitrate (in bps) of the ingress bridge.
|
|
2500
2500
|
* @public
|
|
@@ -2527,7 +2527,7 @@ export interface SourcePriority {
|
|
|
2527
2527
|
* The name of the source you choose as the primary source for this flow.
|
|
2528
2528
|
* @public
|
|
2529
2529
|
*/
|
|
2530
|
-
PrimarySource?: string;
|
|
2530
|
+
PrimarySource?: string | undefined;
|
|
2531
2531
|
}
|
|
2532
2532
|
/**
|
|
2533
2533
|
* @public
|
|
@@ -2550,18 +2550,18 @@ export interface FailoverConfig {
|
|
|
2550
2550
|
* The type of failover you choose for this flow. MERGE combines the source streams into a single stream, allowing graceful recovery from any single-source loss. FAILOVER allows switching between different streams.
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
FailoverMode?: FailoverMode;
|
|
2553
|
+
FailoverMode?: FailoverMode | undefined;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* Search window time to look for dash-7 packets
|
|
2556
2556
|
* @public
|
|
2557
2557
|
*/
|
|
2558
|
-
RecoveryWindow?: number;
|
|
2558
|
+
RecoveryWindow?: number | undefined;
|
|
2559
2559
|
/**
|
|
2560
2560
|
* The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
|
|
2561
2561
|
* @public
|
|
2562
2562
|
*/
|
|
2563
|
-
SourcePriority?: SourcePriority;
|
|
2564
|
-
State?: State;
|
|
2563
|
+
SourcePriority?: SourcePriority | undefined;
|
|
2564
|
+
State?: State | undefined;
|
|
2565
2565
|
}
|
|
2566
2566
|
/**
|
|
2567
2567
|
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
@@ -2573,10 +2573,10 @@ export interface Bridge {
|
|
|
2573
2573
|
* @public
|
|
2574
2574
|
*/
|
|
2575
2575
|
BridgeArn: string | undefined;
|
|
2576
|
-
BridgeMessages?: MessageDetail[];
|
|
2576
|
+
BridgeMessages?: MessageDetail[] | undefined;
|
|
2577
2577
|
BridgeState: BridgeState | undefined;
|
|
2578
|
-
EgressGatewayBridge?: EgressGatewayBridge;
|
|
2579
|
-
IngressGatewayBridge?: IngressGatewayBridge;
|
|
2578
|
+
EgressGatewayBridge?: EgressGatewayBridge | undefined;
|
|
2579
|
+
IngressGatewayBridge?: IngressGatewayBridge | undefined;
|
|
2580
2580
|
/**
|
|
2581
2581
|
* The name of the bridge.
|
|
2582
2582
|
* @public
|
|
@@ -2586,7 +2586,7 @@ export interface Bridge {
|
|
|
2586
2586
|
* The outputs on this bridge.
|
|
2587
2587
|
* @public
|
|
2588
2588
|
*/
|
|
2589
|
-
Outputs?: BridgeOutput[];
|
|
2589
|
+
Outputs?: BridgeOutput[] | undefined;
|
|
2590
2590
|
/**
|
|
2591
2591
|
* The placement Amazon Resource Number (ARN) of the bridge.
|
|
2592
2592
|
* @public
|
|
@@ -2596,12 +2596,12 @@ export interface Bridge {
|
|
|
2596
2596
|
* The settings for source failover.
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
SourceFailoverConfig?: FailoverConfig;
|
|
2599
|
+
SourceFailoverConfig?: FailoverConfig | undefined;
|
|
2600
2600
|
/**
|
|
2601
2601
|
* The sources on this bridge.
|
|
2602
2602
|
* @public
|
|
2603
2603
|
*/
|
|
2604
|
-
Sources?: BridgeSource[];
|
|
2604
|
+
Sources?: BridgeSource[] | undefined;
|
|
2605
2605
|
}
|
|
2606
2606
|
/**
|
|
2607
2607
|
* @public
|
|
@@ -2653,12 +2653,12 @@ export interface CreateBridgeRequest {
|
|
|
2653
2653
|
* Create a bridge with the egress bridge type. An egress bridge is a cloud-to-ground bridge. The content comes from an existing MediaConnect flow and is delivered to your premises.
|
|
2654
2654
|
* @public
|
|
2655
2655
|
*/
|
|
2656
|
-
EgressGatewayBridge?: AddEgressGatewayBridgeRequest;
|
|
2656
|
+
EgressGatewayBridge?: AddEgressGatewayBridgeRequest | undefined;
|
|
2657
2657
|
/**
|
|
2658
2658
|
* Create a bridge with the ingress bridge type. An ingress bridge is a ground-to-cloud bridge. The content originates at your premises and is delivered to the cloud.
|
|
2659
2659
|
* @public
|
|
2660
2660
|
*/
|
|
2661
|
-
IngressGatewayBridge?: AddIngressGatewayBridgeRequest;
|
|
2661
|
+
IngressGatewayBridge?: AddIngressGatewayBridgeRequest | undefined;
|
|
2662
2662
|
/**
|
|
2663
2663
|
* The name of the bridge. This name can not be modified after the bridge is created.
|
|
2664
2664
|
* @public
|
|
@@ -2668,7 +2668,7 @@ export interface CreateBridgeRequest {
|
|
|
2668
2668
|
* The outputs that you want to add to this bridge.
|
|
2669
2669
|
* @public
|
|
2670
2670
|
*/
|
|
2671
|
-
Outputs?: AddBridgeOutputRequest[];
|
|
2671
|
+
Outputs?: AddBridgeOutputRequest[] | undefined;
|
|
2672
2672
|
/**
|
|
2673
2673
|
* The bridge placement Amazon Resource Number (ARN).
|
|
2674
2674
|
* @public
|
|
@@ -2678,7 +2678,7 @@ export interface CreateBridgeRequest {
|
|
|
2678
2678
|
* The settings for source failover.
|
|
2679
2679
|
* @public
|
|
2680
2680
|
*/
|
|
2681
|
-
SourceFailoverConfig?: FailoverConfig;
|
|
2681
|
+
SourceFailoverConfig?: FailoverConfig | undefined;
|
|
2682
2682
|
/**
|
|
2683
2683
|
* The sources that you want to add to this bridge.
|
|
2684
2684
|
* @public
|
|
@@ -2693,7 +2693,7 @@ export interface CreateBridgeResponse {
|
|
|
2693
2693
|
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
2694
2694
|
* @public
|
|
2695
2695
|
*/
|
|
2696
|
-
Bridge?: Bridge;
|
|
2696
|
+
Bridge?: Bridge | undefined;
|
|
2697
2697
|
}
|
|
2698
2698
|
/**
|
|
2699
2699
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -2733,7 +2733,7 @@ export interface MonitoringConfig {
|
|
|
2733
2733
|
* The state of thumbnail monitoring.
|
|
2734
2734
|
* @public
|
|
2735
2735
|
*/
|
|
2736
|
-
ThumbnailState?: ThumbnailState;
|
|
2736
|
+
ThumbnailState?: ThumbnailState | undefined;
|
|
2737
2737
|
}
|
|
2738
2738
|
/**
|
|
2739
2739
|
* Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).
|
|
@@ -2744,17 +2744,17 @@ export interface CreateFlowRequest {
|
|
|
2744
2744
|
* The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS Region.
|
|
2745
2745
|
* @public
|
|
2746
2746
|
*/
|
|
2747
|
-
AvailabilityZone?: string;
|
|
2747
|
+
AvailabilityZone?: string | undefined;
|
|
2748
2748
|
/**
|
|
2749
2749
|
* The entitlements that you want to grant on a flow.
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
Entitlements?: GrantEntitlementRequest[];
|
|
2752
|
+
Entitlements?: GrantEntitlementRequest[] | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* The media streams that you want to add to the flow. You can associate these media streams with sources and outputs on the flow.
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
MediaStreams?: AddMediaStreamRequest[];
|
|
2757
|
+
MediaStreams?: AddMediaStreamRequest[] | undefined;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* The name of the flow.
|
|
2760
2760
|
* @public
|
|
@@ -2764,33 +2764,33 @@ export interface CreateFlowRequest {
|
|
|
2764
2764
|
* The outputs that you want to add to this flow.
|
|
2765
2765
|
* @public
|
|
2766
2766
|
*/
|
|
2767
|
-
Outputs?: AddOutputRequest[];
|
|
2767
|
+
Outputs?: AddOutputRequest[] | undefined;
|
|
2768
2768
|
/**
|
|
2769
2769
|
* The settings for the source of the flow.
|
|
2770
2770
|
* @public
|
|
2771
2771
|
*/
|
|
2772
|
-
Source?: SetSourceRequest;
|
|
2772
|
+
Source?: SetSourceRequest | undefined;
|
|
2773
2773
|
/**
|
|
2774
2774
|
* The settings for source failover.
|
|
2775
2775
|
* @public
|
|
2776
2776
|
*/
|
|
2777
|
-
SourceFailoverConfig?: FailoverConfig;
|
|
2778
|
-
Sources?: SetSourceRequest[];
|
|
2777
|
+
SourceFailoverConfig?: FailoverConfig | undefined;
|
|
2778
|
+
Sources?: SetSourceRequest[] | undefined;
|
|
2779
2779
|
/**
|
|
2780
2780
|
* The VPC interfaces you want on the flow.
|
|
2781
2781
|
* @public
|
|
2782
2782
|
*/
|
|
2783
|
-
VpcInterfaces?: VpcInterfaceRequest[];
|
|
2783
|
+
VpcInterfaces?: VpcInterfaceRequest[] | undefined;
|
|
2784
2784
|
/**
|
|
2785
2785
|
* Create maintenance setting for a flow
|
|
2786
2786
|
* @public
|
|
2787
2787
|
*/
|
|
2788
|
-
Maintenance?: AddMaintenance;
|
|
2788
|
+
Maintenance?: AddMaintenance | undefined;
|
|
2789
2789
|
/**
|
|
2790
2790
|
* The settings for source monitoring.
|
|
2791
2791
|
* @public
|
|
2792
2792
|
*/
|
|
2793
|
-
SourceMonitoringConfig?: MonitoringConfig;
|
|
2793
|
+
SourceMonitoringConfig?: MonitoringConfig | undefined;
|
|
2794
2794
|
}
|
|
2795
2795
|
/**
|
|
2796
2796
|
* The settings for a flow, including its source, outputs, and entitlements.
|
|
@@ -2806,12 +2806,12 @@ export interface Flow {
|
|
|
2806
2806
|
* A description of the flow. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
|
|
2807
2807
|
* @public
|
|
2808
2808
|
*/
|
|
2809
|
-
Description?: string;
|
|
2809
|
+
Description?: string | undefined;
|
|
2810
2810
|
/**
|
|
2811
2811
|
* The IP address from which video will be sent to output destinations.
|
|
2812
2812
|
* @public
|
|
2813
2813
|
*/
|
|
2814
|
-
EgressIp?: string;
|
|
2814
|
+
EgressIp?: string | undefined;
|
|
2815
2815
|
/**
|
|
2816
2816
|
* The entitlements in this flow.
|
|
2817
2817
|
* @public
|
|
@@ -2826,7 +2826,7 @@ export interface Flow {
|
|
|
2826
2826
|
* The media streams that are associated with the flow. After you associate a media stream with a source, you can also associate it with outputs on the flow.
|
|
2827
2827
|
* @public
|
|
2828
2828
|
*/
|
|
2829
|
-
MediaStreams?: MediaStream[];
|
|
2829
|
+
MediaStreams?: MediaStream[] | undefined;
|
|
2830
2830
|
/**
|
|
2831
2831
|
* The name of the flow.
|
|
2832
2832
|
* @public
|
|
@@ -2846,8 +2846,8 @@ export interface Flow {
|
|
|
2846
2846
|
* The settings for source failover.
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
SourceFailoverConfig?: FailoverConfig;
|
|
2850
|
-
Sources?: Source[];
|
|
2849
|
+
SourceFailoverConfig?: FailoverConfig | undefined;
|
|
2850
|
+
Sources?: Source[] | undefined;
|
|
2851
2851
|
/**
|
|
2852
2852
|
* The current status of the flow.
|
|
2853
2853
|
* @public
|
|
@@ -2857,17 +2857,17 @@ export interface Flow {
|
|
|
2857
2857
|
* The VPC Interfaces for this flow.
|
|
2858
2858
|
* @public
|
|
2859
2859
|
*/
|
|
2860
|
-
VpcInterfaces?: VpcInterface[];
|
|
2860
|
+
VpcInterfaces?: VpcInterface[] | undefined;
|
|
2861
2861
|
/**
|
|
2862
2862
|
* The maintenance setting of a flow
|
|
2863
2863
|
* @public
|
|
2864
2864
|
*/
|
|
2865
|
-
Maintenance?: Maintenance;
|
|
2865
|
+
Maintenance?: Maintenance | undefined;
|
|
2866
2866
|
/**
|
|
2867
2867
|
* The settings for source monitoring.
|
|
2868
2868
|
* @public
|
|
2869
2869
|
*/
|
|
2870
|
-
SourceMonitoringConfig?: MonitoringConfig;
|
|
2870
|
+
SourceMonitoringConfig?: MonitoringConfig | undefined;
|
|
2871
2871
|
}
|
|
2872
2872
|
/**
|
|
2873
2873
|
* @public
|
|
@@ -2877,7 +2877,7 @@ export interface CreateFlowResponse {
|
|
|
2877
2877
|
* The settings for a flow, including its source, outputs, and entitlements.
|
|
2878
2878
|
* @public
|
|
2879
2879
|
*/
|
|
2880
|
-
Flow?: Flow;
|
|
2880
|
+
Flow?: Flow | undefined;
|
|
2881
2881
|
}
|
|
2882
2882
|
/**
|
|
2883
2883
|
* Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
|
|
@@ -2932,12 +2932,12 @@ export interface Gateway {
|
|
|
2932
2932
|
* @public
|
|
2933
2933
|
*/
|
|
2934
2934
|
GatewayArn: string | undefined;
|
|
2935
|
-
GatewayMessages?: MessageDetail[];
|
|
2935
|
+
GatewayMessages?: MessageDetail[] | undefined;
|
|
2936
2936
|
/**
|
|
2937
2937
|
* The current status of the gateway.
|
|
2938
2938
|
* @public
|
|
2939
2939
|
*/
|
|
2940
|
-
GatewayState?: GatewayState;
|
|
2940
|
+
GatewayState?: GatewayState | undefined;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* The name of the gateway. This name can not be modified after the gateway is created.
|
|
2943
2943
|
* @public
|
|
@@ -2957,7 +2957,7 @@ export interface CreateGatewayResponse {
|
|
|
2957
2957
|
* The settings for a gateway, including its networks.
|
|
2958
2958
|
* @public
|
|
2959
2959
|
*/
|
|
2960
|
-
Gateway?: Gateway;
|
|
2960
|
+
Gateway?: Gateway | undefined;
|
|
2961
2961
|
}
|
|
2962
2962
|
/**
|
|
2963
2963
|
* @public
|
|
@@ -2977,7 +2977,7 @@ export interface DeleteBridgeResponse {
|
|
|
2977
2977
|
* The Amazon Resource Number (ARN) of the deleted bridge.
|
|
2978
2978
|
* @public
|
|
2979
2979
|
*/
|
|
2980
|
-
BridgeArn?: string;
|
|
2980
|
+
BridgeArn?: string | undefined;
|
|
2981
2981
|
}
|
|
2982
2982
|
/**
|
|
2983
2983
|
* @public
|
|
@@ -2997,12 +2997,12 @@ export interface DeleteFlowResponse {
|
|
|
2997
2997
|
* The ARN of the flow that was deleted.
|
|
2998
2998
|
* @public
|
|
2999
2999
|
*/
|
|
3000
|
-
FlowArn?: string;
|
|
3000
|
+
FlowArn?: string | undefined;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* The status of the flow when the DeleteFlow process begins.
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
Status?: Status;
|
|
3005
|
+
Status?: Status | undefined;
|
|
3006
3006
|
}
|
|
3007
3007
|
/**
|
|
3008
3008
|
* @public
|
|
@@ -3022,7 +3022,7 @@ export interface DeleteGatewayResponse {
|
|
|
3022
3022
|
* The Amazon Resource Name (ARN) of the gateway that was deleted.
|
|
3023
3023
|
* @public
|
|
3024
3024
|
*/
|
|
3025
|
-
GatewayArn?: string;
|
|
3025
|
+
GatewayArn?: string | undefined;
|
|
3026
3026
|
}
|
|
3027
3027
|
/**
|
|
3028
3028
|
* @public
|
|
@@ -3032,7 +3032,7 @@ export interface DeregisterGatewayInstanceRequest {
|
|
|
3032
3032
|
* Force the deregistration of an instance. Force will deregister an instance, even if there are bridges running on it.
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
Force?: boolean;
|
|
3035
|
+
Force?: boolean | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* The Amazon Resource Name (ARN) of the gateway that contains the instance that you want to deregister.
|
|
3038
3038
|
* @public
|
|
@@ -3047,12 +3047,12 @@ export interface DeregisterGatewayInstanceResponse {
|
|
|
3047
3047
|
* The Amazon Resource Name (ARN) of the instance.
|
|
3048
3048
|
* @public
|
|
3049
3049
|
*/
|
|
3050
|
-
GatewayInstanceArn?: string;
|
|
3050
|
+
GatewayInstanceArn?: string | undefined;
|
|
3051
3051
|
/**
|
|
3052
3052
|
* The status of the instance.
|
|
3053
3053
|
* @public
|
|
3054
3054
|
*/
|
|
3055
|
-
InstanceState?: InstanceState;
|
|
3055
|
+
InstanceState?: InstanceState | undefined;
|
|
3056
3056
|
}
|
|
3057
3057
|
/**
|
|
3058
3058
|
* @public
|
|
@@ -3072,7 +3072,7 @@ export interface DescribeBridgeResponse {
|
|
|
3072
3072
|
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
3073
3073
|
* @public
|
|
3074
3074
|
*/
|
|
3075
|
-
Bridge?: Bridge;
|
|
3075
|
+
Bridge?: Bridge | undefined;
|
|
3076
3076
|
}
|
|
3077
3077
|
/**
|
|
3078
3078
|
* @public
|
|
@@ -3103,12 +3103,12 @@ export interface DescribeFlowResponse {
|
|
|
3103
3103
|
* The settings for a flow, including its source, outputs, and entitlements.
|
|
3104
3104
|
* @public
|
|
3105
3105
|
*/
|
|
3106
|
-
Flow?: Flow;
|
|
3106
|
+
Flow?: Flow | undefined;
|
|
3107
3107
|
/**
|
|
3108
3108
|
* Messages that provide the state of the flow.
|
|
3109
3109
|
* @public
|
|
3110
3110
|
*/
|
|
3111
|
-
Messages?: Messages;
|
|
3111
|
+
Messages?: Messages | undefined;
|
|
3112
3112
|
}
|
|
3113
3113
|
/**
|
|
3114
3114
|
* @public
|
|
@@ -3139,22 +3139,22 @@ export interface DescribeFlowSourceMetadataResponse {
|
|
|
3139
3139
|
* The ARN of the flow that DescribeFlowSourceMetadata was performed on.
|
|
3140
3140
|
* @public
|
|
3141
3141
|
*/
|
|
3142
|
-
FlowArn?: string;
|
|
3142
|
+
FlowArn?: string | undefined;
|
|
3143
3143
|
/**
|
|
3144
3144
|
* Provides a status code and message regarding issues found with the flow source metadata.
|
|
3145
3145
|
* @public
|
|
3146
3146
|
*/
|
|
3147
|
-
Messages?: MessageDetail[];
|
|
3147
|
+
Messages?: MessageDetail[] | undefined;
|
|
3148
3148
|
/**
|
|
3149
3149
|
* The timestamp of the most recent change in metadata for this flow’s source.
|
|
3150
3150
|
* @public
|
|
3151
3151
|
*/
|
|
3152
|
-
Timestamp?: Date;
|
|
3152
|
+
Timestamp?: Date | undefined;
|
|
3153
3153
|
/**
|
|
3154
3154
|
* The metadata of the transport stream in the current flow's source.
|
|
3155
3155
|
* @public
|
|
3156
3156
|
*/
|
|
3157
|
-
TransportMediaInfo?: TransportMediaInfo;
|
|
3157
|
+
TransportMediaInfo?: TransportMediaInfo | undefined;
|
|
3158
3158
|
}
|
|
3159
3159
|
/**
|
|
3160
3160
|
* @public
|
|
@@ -3180,7 +3180,7 @@ export interface ThumbnailDetails {
|
|
|
3180
3180
|
* Thumbnail Base64 string.
|
|
3181
3181
|
* @public
|
|
3182
3182
|
*/
|
|
3183
|
-
Thumbnail?: string;
|
|
3183
|
+
Thumbnail?: string | undefined;
|
|
3184
3184
|
/**
|
|
3185
3185
|
* Status code and messages about the flow source thumbnail.
|
|
3186
3186
|
* @public
|
|
@@ -3190,12 +3190,12 @@ export interface ThumbnailDetails {
|
|
|
3190
3190
|
* Timecode of thumbnail.
|
|
3191
3191
|
* @public
|
|
3192
3192
|
*/
|
|
3193
|
-
Timecode?: string;
|
|
3193
|
+
Timecode?: string | undefined;
|
|
3194
3194
|
/**
|
|
3195
3195
|
* The timestamp of when thumbnail was generated.
|
|
3196
3196
|
* @public
|
|
3197
3197
|
*/
|
|
3198
|
-
Timestamp?: Date;
|
|
3198
|
+
Timestamp?: Date | undefined;
|
|
3199
3199
|
}
|
|
3200
3200
|
/**
|
|
3201
3201
|
* @public
|
|
@@ -3205,7 +3205,7 @@ export interface DescribeFlowSourceThumbnailResponse {
|
|
|
3205
3205
|
* The details of the thumbnail, including thumbnail base64 string, timecode and the time when thumbnail was generated.
|
|
3206
3206
|
* @public
|
|
3207
3207
|
*/
|
|
3208
|
-
ThumbnailDetails?: ThumbnailDetails;
|
|
3208
|
+
ThumbnailDetails?: ThumbnailDetails | undefined;
|
|
3209
3209
|
}
|
|
3210
3210
|
/**
|
|
3211
3211
|
* @public
|
|
@@ -3225,7 +3225,7 @@ export interface DescribeGatewayResponse {
|
|
|
3225
3225
|
* The settings for a gateway, including its networks.
|
|
3226
3226
|
* @public
|
|
3227
3227
|
*/
|
|
3228
|
-
Gateway?: Gateway;
|
|
3228
|
+
Gateway?: Gateway | undefined;
|
|
3229
3229
|
}
|
|
3230
3230
|
/**
|
|
3231
3231
|
* @public
|
|
@@ -3267,7 +3267,7 @@ export interface GatewayInstance {
|
|
|
3267
3267
|
* @public
|
|
3268
3268
|
*/
|
|
3269
3269
|
InstanceId: string | undefined;
|
|
3270
|
-
InstanceMessages?: MessageDetail[];
|
|
3270
|
+
InstanceMessages?: MessageDetail[] | undefined;
|
|
3271
3271
|
/**
|
|
3272
3272
|
* The status of the instance.
|
|
3273
3273
|
* @public
|
|
@@ -3287,7 +3287,7 @@ export interface DescribeGatewayInstanceResponse {
|
|
|
3287
3287
|
* The settings for an instance in a gateway.
|
|
3288
3288
|
* @public
|
|
3289
3289
|
*/
|
|
3290
|
-
GatewayInstance?: GatewayInstance;
|
|
3290
|
+
GatewayInstance?: GatewayInstance | undefined;
|
|
3291
3291
|
}
|
|
3292
3292
|
/**
|
|
3293
3293
|
* @public
|
|
@@ -3307,7 +3307,7 @@ export interface DescribeOfferingResponse {
|
|
|
3307
3307
|
* A savings plan that reserves a certain amount of outbound bandwidth usage at a discounted rate each month over a period of time.
|
|
3308
3308
|
* @public
|
|
3309
3309
|
*/
|
|
3310
|
-
Offering?: Offering;
|
|
3310
|
+
Offering?: Offering | undefined;
|
|
3311
3311
|
}
|
|
3312
3312
|
/**
|
|
3313
3313
|
* @public
|
|
@@ -3327,7 +3327,7 @@ export interface DescribeReservationResponse {
|
|
|
3327
3327
|
* A pricing agreement for a discounted rate for a specific outbound bandwidth that your MediaConnect account will use each month over a specific time period. The discounted rate in the reservation applies to outbound bandwidth for all flows from your account until your account reaches the amount of bandwidth in your reservation. If you use more outbound bandwidth than the agreed upon amount in a single month, the overage is charged at the on-demand rate.
|
|
3328
3328
|
* @public
|
|
3329
3329
|
*/
|
|
3330
|
-
Reservation?: Reservation;
|
|
3330
|
+
Reservation?: Reservation | undefined;
|
|
3331
3331
|
}
|
|
3332
3332
|
/**
|
|
3333
3333
|
* @public
|
|
@@ -3383,12 +3383,12 @@ export interface GrantFlowEntitlementsResponse {
|
|
|
3383
3383
|
* The entitlements that were just granted.
|
|
3384
3384
|
* @public
|
|
3385
3385
|
*/
|
|
3386
|
-
Entitlements?: Entitlement[];
|
|
3386
|
+
Entitlements?: Entitlement[] | undefined;
|
|
3387
3387
|
/**
|
|
3388
3388
|
* The ARN of the flow that these entitlements were granted to.
|
|
3389
3389
|
* @public
|
|
3390
3390
|
*/
|
|
3391
|
-
FlowArn?: string;
|
|
3391
|
+
FlowArn?: string | undefined;
|
|
3392
3392
|
}
|
|
3393
3393
|
/**
|
|
3394
3394
|
* @public
|
|
@@ -3398,17 +3398,17 @@ export interface ListBridgesRequest {
|
|
|
3398
3398
|
* Filter the list results to display only the bridges associated with the selected Amazon Resource Name (ARN).
|
|
3399
3399
|
* @public
|
|
3400
3400
|
*/
|
|
3401
|
-
FilterArn?: string;
|
|
3401
|
+
FilterArn?: string | undefined;
|
|
3402
3402
|
/**
|
|
3403
3403
|
* The maximum number of results to return per API request. For example, you submit a ListBridges request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
3404
3404
|
* @public
|
|
3405
3405
|
*/
|
|
3406
|
-
MaxResults?: number;
|
|
3406
|
+
MaxResults?: number | undefined;
|
|
3407
3407
|
/**
|
|
3408
3408
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListBridges request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListBridges request a second time and specify the NextToken value.
|
|
3409
3409
|
* @public
|
|
3410
3410
|
*/
|
|
3411
|
-
NextToken?: string;
|
|
3411
|
+
NextToken?: string | undefined;
|
|
3412
3412
|
}
|
|
3413
3413
|
/**
|
|
3414
3414
|
* @public
|
|
@@ -3418,12 +3418,12 @@ export interface ListBridgesResponse {
|
|
|
3418
3418
|
* A list of bridge summaries.
|
|
3419
3419
|
* @public
|
|
3420
3420
|
*/
|
|
3421
|
-
Bridges?: ListedBridge[];
|
|
3421
|
+
Bridges?: ListedBridge[] | undefined;
|
|
3422
3422
|
/**
|
|
3423
3423
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListBridges request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListBridges request a second time and specify the NextToken value.
|
|
3424
3424
|
* @public
|
|
3425
3425
|
*/
|
|
3426
|
-
NextToken?: string;
|
|
3426
|
+
NextToken?: string | undefined;
|
|
3427
3427
|
}
|
|
3428
3428
|
/**
|
|
3429
3429
|
* @public
|
|
@@ -3433,12 +3433,12 @@ export interface ListEntitlementsRequest {
|
|
|
3433
3433
|
* The maximum number of results to return per API request. For example, you submit a ListEntitlements request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 20 results per page.
|
|
3434
3434
|
* @public
|
|
3435
3435
|
*/
|
|
3436
|
-
MaxResults?: number;
|
|
3436
|
+
MaxResults?: number | undefined;
|
|
3437
3437
|
/**
|
|
3438
3438
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListEntitlements request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListEntitlements request a second time and specify the NextToken value.
|
|
3439
3439
|
* @public
|
|
3440
3440
|
*/
|
|
3441
|
-
NextToken?: string;
|
|
3441
|
+
NextToken?: string | undefined;
|
|
3442
3442
|
}
|
|
3443
3443
|
/**
|
|
3444
3444
|
* @public
|
|
@@ -3448,12 +3448,12 @@ export interface ListEntitlementsResponse {
|
|
|
3448
3448
|
* A list of entitlements that have been granted to you from other AWS accounts.
|
|
3449
3449
|
* @public
|
|
3450
3450
|
*/
|
|
3451
|
-
Entitlements?: ListedEntitlement[];
|
|
3451
|
+
Entitlements?: ListedEntitlement[] | undefined;
|
|
3452
3452
|
/**
|
|
3453
3453
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListEntitlements request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListEntitlements request a second time and specify the NextToken value.
|
|
3454
3454
|
* @public
|
|
3455
3455
|
*/
|
|
3456
|
-
NextToken?: string;
|
|
3456
|
+
NextToken?: string | undefined;
|
|
3457
3457
|
}
|
|
3458
3458
|
/**
|
|
3459
3459
|
* @public
|
|
@@ -3463,12 +3463,12 @@ export interface ListFlowsRequest {
|
|
|
3463
3463
|
* The maximum number of results to return per API request. For example, you submit a ListFlows request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
3464
3464
|
* @public
|
|
3465
3465
|
*/
|
|
3466
|
-
MaxResults?: number;
|
|
3466
|
+
MaxResults?: number | undefined;
|
|
3467
3467
|
/**
|
|
3468
3468
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListFlows request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListFlows request a second time and specify the NextToken value.
|
|
3469
3469
|
* @public
|
|
3470
3470
|
*/
|
|
3471
|
-
NextToken?: string;
|
|
3471
|
+
NextToken?: string | undefined;
|
|
3472
3472
|
}
|
|
3473
3473
|
/**
|
|
3474
3474
|
* @public
|
|
@@ -3478,12 +3478,12 @@ export interface ListFlowsResponse {
|
|
|
3478
3478
|
* A list of flow summaries.
|
|
3479
3479
|
* @public
|
|
3480
3480
|
*/
|
|
3481
|
-
Flows?: ListedFlow[];
|
|
3481
|
+
Flows?: ListedFlow[] | undefined;
|
|
3482
3482
|
/**
|
|
3483
3483
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListFlows request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListFlows request a second time and specify the NextToken value.
|
|
3484
3484
|
* @public
|
|
3485
3485
|
*/
|
|
3486
|
-
NextToken?: string;
|
|
3486
|
+
NextToken?: string | undefined;
|
|
3487
3487
|
}
|
|
3488
3488
|
/**
|
|
3489
3489
|
* @public
|
|
@@ -3493,17 +3493,17 @@ export interface ListGatewayInstancesRequest {
|
|
|
3493
3493
|
* Filter the list results to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
|
|
3494
3494
|
* @public
|
|
3495
3495
|
*/
|
|
3496
|
-
FilterArn?: string;
|
|
3496
|
+
FilterArn?: string | undefined;
|
|
3497
3497
|
/**
|
|
3498
3498
|
* The maximum number of results to return per API request. For example, you submit a ListInstances request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
3499
3499
|
* @public
|
|
3500
3500
|
*/
|
|
3501
|
-
MaxResults?: number;
|
|
3501
|
+
MaxResults?: number | undefined;
|
|
3502
3502
|
/**
|
|
3503
3503
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListInstances request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListInstances request a second time and specify the NextToken value.
|
|
3504
3504
|
* @public
|
|
3505
3505
|
*/
|
|
3506
|
-
NextToken?: string;
|
|
3506
|
+
NextToken?: string | undefined;
|
|
3507
3507
|
}
|
|
3508
3508
|
/**
|
|
3509
3509
|
* @public
|
|
@@ -3513,12 +3513,12 @@ export interface ListGatewayInstancesResponse {
|
|
|
3513
3513
|
* A list of instance summaries.
|
|
3514
3514
|
* @public
|
|
3515
3515
|
*/
|
|
3516
|
-
Instances?: ListedGatewayInstance[];
|
|
3516
|
+
Instances?: ListedGatewayInstance[] | undefined;
|
|
3517
3517
|
/**
|
|
3518
3518
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListInstances request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListInstances request a second time and specify the NextToken value.
|
|
3519
3519
|
* @public
|
|
3520
3520
|
*/
|
|
3521
|
-
NextToken?: string;
|
|
3521
|
+
NextToken?: string | undefined;
|
|
3522
3522
|
}
|
|
3523
3523
|
/**
|
|
3524
3524
|
* @public
|
|
@@ -3528,12 +3528,12 @@ export interface ListGatewaysRequest {
|
|
|
3528
3528
|
* The maximum number of results to return per API request. For example, you submit a ListGateways request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
3529
3529
|
* @public
|
|
3530
3530
|
*/
|
|
3531
|
-
MaxResults?: number;
|
|
3531
|
+
MaxResults?: number | undefined;
|
|
3532
3532
|
/**
|
|
3533
3533
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
|
|
3534
3534
|
* @public
|
|
3535
3535
|
*/
|
|
3536
|
-
NextToken?: string;
|
|
3536
|
+
NextToken?: string | undefined;
|
|
3537
3537
|
}
|
|
3538
3538
|
/**
|
|
3539
3539
|
* @public
|
|
@@ -3543,12 +3543,12 @@ export interface ListGatewaysResponse {
|
|
|
3543
3543
|
* A list of gateway summaries.
|
|
3544
3544
|
* @public
|
|
3545
3545
|
*/
|
|
3546
|
-
Gateways?: ListedGateway[];
|
|
3546
|
+
Gateways?: ListedGateway[] | undefined;
|
|
3547
3547
|
/**
|
|
3548
3548
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
|
|
3549
3549
|
* @public
|
|
3550
3550
|
*/
|
|
3551
|
-
NextToken?: string;
|
|
3551
|
+
NextToken?: string | undefined;
|
|
3552
3552
|
}
|
|
3553
3553
|
/**
|
|
3554
3554
|
* @public
|
|
@@ -3558,12 +3558,12 @@ export interface ListOfferingsRequest {
|
|
|
3558
3558
|
* The maximum number of results to return per API request. For example, you submit a ListOfferings request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
3559
3559
|
* @public
|
|
3560
3560
|
*/
|
|
3561
|
-
MaxResults?: number;
|
|
3561
|
+
MaxResults?: number | undefined;
|
|
3562
3562
|
/**
|
|
3563
3563
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListOfferings request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.
|
|
3564
3564
|
* @public
|
|
3565
3565
|
*/
|
|
3566
|
-
NextToken?: string;
|
|
3566
|
+
NextToken?: string | undefined;
|
|
3567
3567
|
}
|
|
3568
3568
|
/**
|
|
3569
3569
|
* @public
|
|
@@ -3573,12 +3573,12 @@ export interface ListOfferingsResponse {
|
|
|
3573
3573
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListOfferings request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.
|
|
3574
3574
|
* @public
|
|
3575
3575
|
*/
|
|
3576
|
-
NextToken?: string;
|
|
3576
|
+
NextToken?: string | undefined;
|
|
3577
3577
|
/**
|
|
3578
3578
|
* A list of offerings that are available to this account in the current AWS Region.
|
|
3579
3579
|
* @public
|
|
3580
3580
|
*/
|
|
3581
|
-
Offerings?: Offering[];
|
|
3581
|
+
Offerings?: Offering[] | undefined;
|
|
3582
3582
|
}
|
|
3583
3583
|
/**
|
|
3584
3584
|
* @public
|
|
@@ -3588,12 +3588,12 @@ export interface ListReservationsRequest {
|
|
|
3588
3588
|
* The maximum number of results to return per API request. For example, you submit a ListReservations request with MaxResults set at 5. Although 20 items match your request, the service returns no more than the first 5 items. (The service also returns a NextToken value that you can use to fetch the next batch of results.) The service might return fewer results than the MaxResults value. If MaxResults is not included in the request, the service defaults to pagination with a maximum of 10 results per page.
|
|
3589
3589
|
* @public
|
|
3590
3590
|
*/
|
|
3591
|
-
MaxResults?: number;
|
|
3591
|
+
MaxResults?: number | undefined;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListReservations request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.
|
|
3594
3594
|
* @public
|
|
3595
3595
|
*/
|
|
3596
|
-
NextToken?: string;
|
|
3596
|
+
NextToken?: string | undefined;
|
|
3597
3597
|
}
|
|
3598
3598
|
/**
|
|
3599
3599
|
* @public
|
|
@@ -3603,12 +3603,12 @@ export interface ListReservationsResponse {
|
|
|
3603
3603
|
* The token that identifies which batch of results that you want to see. For example, you submit a ListReservations request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListReservations request a second time and specify the NextToken value.
|
|
3604
3604
|
* @public
|
|
3605
3605
|
*/
|
|
3606
|
-
NextToken?: string;
|
|
3606
|
+
NextToken?: string | undefined;
|
|
3607
3607
|
/**
|
|
3608
3608
|
* A list of all reservations that have been purchased by this account in the current AWS Region.
|
|
3609
3609
|
* @public
|
|
3610
3610
|
*/
|
|
3611
|
-
Reservations?: Reservation[];
|
|
3611
|
+
Reservations?: Reservation[] | undefined;
|
|
3612
3612
|
}
|
|
3613
3613
|
/**
|
|
3614
3614
|
* @public
|
|
@@ -3628,7 +3628,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3628
3628
|
* A map from tag keys to values. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
3629
3629
|
* @public
|
|
3630
3630
|
*/
|
|
3631
|
-
Tags?: Record<string, string
|
|
3631
|
+
Tags?: Record<string, string> | undefined;
|
|
3632
3632
|
}
|
|
3633
3633
|
/**
|
|
3634
3634
|
* A request to purchase a offering.
|
|
@@ -3659,7 +3659,7 @@ export interface PurchaseOfferingResponse {
|
|
|
3659
3659
|
* A pricing agreement for a discounted rate for a specific outbound bandwidth that your MediaConnect account will use each month over a specific time period. The discounted rate in the reservation applies to outbound bandwidth for all flows from your account until your account reaches the amount of bandwidth in your reservation. If you use more outbound bandwidth than the agreed upon amount in a single month, the overage is charged at the on-demand rate.
|
|
3660
3660
|
* @public
|
|
3661
3661
|
*/
|
|
3662
|
-
Reservation?: Reservation;
|
|
3662
|
+
Reservation?: Reservation | undefined;
|
|
3663
3663
|
}
|
|
3664
3664
|
/**
|
|
3665
3665
|
* @public
|
|
@@ -3680,8 +3680,8 @@ export interface RemoveBridgeOutputRequest {
|
|
|
3680
3680
|
* @public
|
|
3681
3681
|
*/
|
|
3682
3682
|
export interface RemoveBridgeOutputResponse {
|
|
3683
|
-
BridgeArn?: string;
|
|
3684
|
-
OutputName?: string;
|
|
3683
|
+
BridgeArn?: string | undefined;
|
|
3684
|
+
OutputName?: string | undefined;
|
|
3685
3685
|
}
|
|
3686
3686
|
/**
|
|
3687
3687
|
* @public
|
|
@@ -3702,8 +3702,8 @@ export interface RemoveBridgeSourceRequest {
|
|
|
3702
3702
|
* @public
|
|
3703
3703
|
*/
|
|
3704
3704
|
export interface RemoveBridgeSourceResponse {
|
|
3705
|
-
BridgeArn?: string;
|
|
3706
|
-
SourceName?: string;
|
|
3705
|
+
BridgeArn?: string | undefined;
|
|
3706
|
+
SourceName?: string | undefined;
|
|
3707
3707
|
}
|
|
3708
3708
|
/**
|
|
3709
3709
|
* @public
|
|
@@ -3728,12 +3728,12 @@ export interface RemoveFlowMediaStreamResponse {
|
|
|
3728
3728
|
* The Amazon Resource Name (ARN) of the flow.
|
|
3729
3729
|
* @public
|
|
3730
3730
|
*/
|
|
3731
|
-
FlowArn?: string;
|
|
3731
|
+
FlowArn?: string | undefined;
|
|
3732
3732
|
/**
|
|
3733
3733
|
* The name of the media stream that was removed.
|
|
3734
3734
|
* @public
|
|
3735
3735
|
*/
|
|
3736
|
-
MediaStreamName?: string;
|
|
3736
|
+
MediaStreamName?: string | undefined;
|
|
3737
3737
|
}
|
|
3738
3738
|
/**
|
|
3739
3739
|
* @public
|
|
@@ -3758,12 +3758,12 @@ export interface RemoveFlowOutputResponse {
|
|
|
3758
3758
|
* The ARN of the flow that is associated with the output you removed.
|
|
3759
3759
|
* @public
|
|
3760
3760
|
*/
|
|
3761
|
-
FlowArn?: string;
|
|
3761
|
+
FlowArn?: string | undefined;
|
|
3762
3762
|
/**
|
|
3763
3763
|
* The ARN of the output that was removed.
|
|
3764
3764
|
* @public
|
|
3765
3765
|
*/
|
|
3766
|
-
OutputArn?: string;
|
|
3766
|
+
OutputArn?: string | undefined;
|
|
3767
3767
|
}
|
|
3768
3768
|
/**
|
|
3769
3769
|
* @public
|
|
@@ -3788,12 +3788,12 @@ export interface RemoveFlowSourceResponse {
|
|
|
3788
3788
|
* The ARN of the flow that is associated with the source you removed.
|
|
3789
3789
|
* @public
|
|
3790
3790
|
*/
|
|
3791
|
-
FlowArn?: string;
|
|
3791
|
+
FlowArn?: string | undefined;
|
|
3792
3792
|
/**
|
|
3793
3793
|
* The ARN of the source that was removed.
|
|
3794
3794
|
* @public
|
|
3795
3795
|
*/
|
|
3796
|
-
SourceArn?: string;
|
|
3796
|
+
SourceArn?: string | undefined;
|
|
3797
3797
|
}
|
|
3798
3798
|
/**
|
|
3799
3799
|
* @public
|
|
@@ -3818,17 +3818,17 @@ export interface RemoveFlowVpcInterfaceResponse {
|
|
|
3818
3818
|
* The ARN of the flow that is associated with the VPC interface you removed.
|
|
3819
3819
|
* @public
|
|
3820
3820
|
*/
|
|
3821
|
-
FlowArn?: string;
|
|
3821
|
+
FlowArn?: string | undefined;
|
|
3822
3822
|
/**
|
|
3823
3823
|
* IDs of network interfaces associated with the removed VPC interface that Media Connect was unable to remove.
|
|
3824
3824
|
* @public
|
|
3825
3825
|
*/
|
|
3826
|
-
NonDeletedNetworkInterfaceIds?: string[];
|
|
3826
|
+
NonDeletedNetworkInterfaceIds?: string[] | undefined;
|
|
3827
3827
|
/**
|
|
3828
3828
|
* The name of the VPC interface that was removed.
|
|
3829
3829
|
* @public
|
|
3830
3830
|
*/
|
|
3831
|
-
VpcInterfaceName?: string;
|
|
3831
|
+
VpcInterfaceName?: string | undefined;
|
|
3832
3832
|
}
|
|
3833
3833
|
/**
|
|
3834
3834
|
* @public
|
|
@@ -3853,12 +3853,12 @@ export interface RevokeFlowEntitlementResponse {
|
|
|
3853
3853
|
* The ARN of the entitlement that was revoked.
|
|
3854
3854
|
* @public
|
|
3855
3855
|
*/
|
|
3856
|
-
EntitlementArn?: string;
|
|
3856
|
+
EntitlementArn?: string | undefined;
|
|
3857
3857
|
/**
|
|
3858
3858
|
* The ARN of the flow that the entitlement was revoked from.
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
FlowArn?: string;
|
|
3861
|
+
FlowArn?: string | undefined;
|
|
3862
3862
|
}
|
|
3863
3863
|
/**
|
|
3864
3864
|
* @public
|
|
@@ -3878,12 +3878,12 @@ export interface StartFlowResponse {
|
|
|
3878
3878
|
* The ARN of the flow that you started.
|
|
3879
3879
|
* @public
|
|
3880
3880
|
*/
|
|
3881
|
-
FlowArn?: string;
|
|
3881
|
+
FlowArn?: string | undefined;
|
|
3882
3882
|
/**
|
|
3883
3883
|
* The status of the flow when the StartFlow process begins.
|
|
3884
3884
|
* @public
|
|
3885
3885
|
*/
|
|
3886
|
-
Status?: Status;
|
|
3886
|
+
Status?: Status | undefined;
|
|
3887
3887
|
}
|
|
3888
3888
|
/**
|
|
3889
3889
|
* @public
|
|
@@ -3903,12 +3903,12 @@ export interface StopFlowResponse {
|
|
|
3903
3903
|
* The ARN of the flow that you stopped.
|
|
3904
3904
|
* @public
|
|
3905
3905
|
*/
|
|
3906
|
-
FlowArn?: string;
|
|
3906
|
+
FlowArn?: string | undefined;
|
|
3907
3907
|
/**
|
|
3908
3908
|
* The status of the flow when the StopFlow process begins.
|
|
3909
3909
|
* @public
|
|
3910
3910
|
*/
|
|
3911
|
-
Status?: Status;
|
|
3911
|
+
Status?: Status | undefined;
|
|
3912
3912
|
}
|
|
3913
3913
|
/**
|
|
3914
3914
|
* The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
@@ -3949,7 +3949,7 @@ export interface UpdateEgressGatewayBridgeRequest {
|
|
|
3949
3949
|
* Update an existing egress-type bridge.
|
|
3950
3950
|
* @public
|
|
3951
3951
|
*/
|
|
3952
|
-
MaxBitrate?: number;
|
|
3952
|
+
MaxBitrate?: number | undefined;
|
|
3953
3953
|
}
|
|
3954
3954
|
/**
|
|
3955
3955
|
* @public
|
|
@@ -3959,12 +3959,12 @@ export interface UpdateIngressGatewayBridgeRequest {
|
|
|
3959
3959
|
* The maximum expected bitrate (in bps).
|
|
3960
3960
|
* @public
|
|
3961
3961
|
*/
|
|
3962
|
-
MaxBitrate?: number;
|
|
3962
|
+
MaxBitrate?: number | undefined;
|
|
3963
3963
|
/**
|
|
3964
3964
|
* The maximum number of expected outputs.
|
|
3965
3965
|
* @public
|
|
3966
3966
|
*/
|
|
3967
|
-
MaxOutputs?: number;
|
|
3967
|
+
MaxOutputs?: number | undefined;
|
|
3968
3968
|
}
|
|
3969
3969
|
/**
|
|
3970
3970
|
* The settings for source failover.
|
|
@@ -3975,18 +3975,18 @@ export interface UpdateFailoverConfig {
|
|
|
3975
3975
|
* The type of failover you choose for this flow. MERGE combines the source streams into a single stream, allowing graceful recovery from any single-source loss. FAILOVER allows switching between different streams.
|
|
3976
3976
|
* @public
|
|
3977
3977
|
*/
|
|
3978
|
-
FailoverMode?: FailoverMode;
|
|
3978
|
+
FailoverMode?: FailoverMode | undefined;
|
|
3979
3979
|
/**
|
|
3980
3980
|
* Recovery window time to look for dash-7 packets
|
|
3981
3981
|
* @public
|
|
3982
3982
|
*/
|
|
3983
|
-
RecoveryWindow?: number;
|
|
3983
|
+
RecoveryWindow?: number | undefined;
|
|
3984
3984
|
/**
|
|
3985
3985
|
* The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
|
|
3986
3986
|
* @public
|
|
3987
3987
|
*/
|
|
3988
|
-
SourcePriority?: SourcePriority;
|
|
3989
|
-
State?: State;
|
|
3988
|
+
SourcePriority?: SourcePriority | undefined;
|
|
3989
|
+
State?: State | undefined;
|
|
3990
3990
|
}
|
|
3991
3991
|
/**
|
|
3992
3992
|
* A request to update the bridge.
|
|
@@ -3998,13 +3998,13 @@ export interface UpdateBridgeRequest {
|
|
|
3998
3998
|
* @public
|
|
3999
3999
|
*/
|
|
4000
4000
|
BridgeArn: string | undefined;
|
|
4001
|
-
EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest;
|
|
4002
|
-
IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest;
|
|
4001
|
+
EgressGatewayBridge?: UpdateEgressGatewayBridgeRequest | undefined;
|
|
4002
|
+
IngressGatewayBridge?: UpdateIngressGatewayBridgeRequest | undefined;
|
|
4003
4003
|
/**
|
|
4004
4004
|
* The settings for source failover.
|
|
4005
4005
|
* @public
|
|
4006
4006
|
*/
|
|
4007
|
-
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
4007
|
+
SourceFailoverConfig?: UpdateFailoverConfig | undefined;
|
|
4008
4008
|
}
|
|
4009
4009
|
/**
|
|
4010
4010
|
* @public
|
|
@@ -4014,7 +4014,7 @@ export interface UpdateBridgeResponse {
|
|
|
4014
4014
|
* A Bridge is the connection between your datacenter's Instances and the AWS cloud. A bridge can be used to send video from the AWS cloud to your datacenter or from your datacenter to the AWS cloud.
|
|
4015
4015
|
* @public
|
|
4016
4016
|
*/
|
|
4017
|
-
Bridge?: Bridge;
|
|
4017
|
+
Bridge?: Bridge | undefined;
|
|
4018
4018
|
}
|
|
4019
4019
|
/**
|
|
4020
4020
|
* Update an existing network output.
|
|
@@ -4025,27 +4025,27 @@ export interface UpdateBridgeNetworkOutputRequest {
|
|
|
4025
4025
|
* The network output IP Address.
|
|
4026
4026
|
* @public
|
|
4027
4027
|
*/
|
|
4028
|
-
IpAddress?: string;
|
|
4028
|
+
IpAddress?: string | undefined;
|
|
4029
4029
|
/**
|
|
4030
4030
|
* The network output's gateway network name.
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
NetworkName?: string;
|
|
4033
|
+
NetworkName?: string | undefined;
|
|
4034
4034
|
/**
|
|
4035
4035
|
* The network output port.
|
|
4036
4036
|
* @public
|
|
4037
4037
|
*/
|
|
4038
|
-
Port?: number;
|
|
4038
|
+
Port?: number | undefined;
|
|
4039
4039
|
/**
|
|
4040
4040
|
* The network output protocol.
|
|
4041
4041
|
* @public
|
|
4042
4042
|
*/
|
|
4043
|
-
Protocol?: Protocol;
|
|
4043
|
+
Protocol?: Protocol | undefined;
|
|
4044
4044
|
/**
|
|
4045
4045
|
* The network output TTL.
|
|
4046
4046
|
* @public
|
|
4047
4047
|
*/
|
|
4048
|
-
Ttl?: number;
|
|
4048
|
+
Ttl?: number | undefined;
|
|
4049
4049
|
}
|
|
4050
4050
|
/**
|
|
4051
4051
|
* The fields that you want to update in the bridge output.
|
|
@@ -4061,7 +4061,7 @@ export interface UpdateBridgeOutputRequest {
|
|
|
4061
4061
|
* Update an existing network output.
|
|
4062
4062
|
* @public
|
|
4063
4063
|
*/
|
|
4064
|
-
NetworkOutput?: UpdateBridgeNetworkOutputRequest;
|
|
4064
|
+
NetworkOutput?: UpdateBridgeNetworkOutputRequest | undefined;
|
|
4065
4065
|
/**
|
|
4066
4066
|
* The name of the bridge output that you want to update.
|
|
4067
4067
|
* @public
|
|
@@ -4076,12 +4076,12 @@ export interface UpdateBridgeOutputResponse {
|
|
|
4076
4076
|
* The Amazon Resource Number (ARN) of the bridge.
|
|
4077
4077
|
* @public
|
|
4078
4078
|
*/
|
|
4079
|
-
BridgeArn?: string;
|
|
4079
|
+
BridgeArn?: string | undefined;
|
|
4080
4080
|
/**
|
|
4081
4081
|
* The output that you updated.
|
|
4082
4082
|
* @public
|
|
4083
4083
|
*/
|
|
4084
|
-
Output?: BridgeOutput;
|
|
4084
|
+
Output?: BridgeOutput | undefined;
|
|
4085
4085
|
}
|
|
4086
4086
|
/**
|
|
4087
4087
|
* Update the flow source of the bridge.
|
|
@@ -4092,12 +4092,12 @@ export interface UpdateBridgeFlowSourceRequest {
|
|
|
4092
4092
|
* The ARN of the cloud flow to use as a source of this bridge.
|
|
4093
4093
|
* @public
|
|
4094
4094
|
*/
|
|
4095
|
-
FlowArn?: string;
|
|
4095
|
+
FlowArn?: string | undefined;
|
|
4096
4096
|
/**
|
|
4097
4097
|
* The name of the VPC interface attachment to use for this source.
|
|
4098
4098
|
* @public
|
|
4099
4099
|
*/
|
|
4100
|
-
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
4100
|
+
FlowVpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
4101
4101
|
}
|
|
4102
4102
|
/**
|
|
4103
4103
|
* Update the network source of the bridge.
|
|
@@ -4108,22 +4108,22 @@ export interface UpdateBridgeNetworkSourceRequest {
|
|
|
4108
4108
|
* The network source multicast IP.
|
|
4109
4109
|
* @public
|
|
4110
4110
|
*/
|
|
4111
|
-
MulticastIp?: string;
|
|
4111
|
+
MulticastIp?: string | undefined;
|
|
4112
4112
|
/**
|
|
4113
4113
|
* The network source's gateway network name.
|
|
4114
4114
|
* @public
|
|
4115
4115
|
*/
|
|
4116
|
-
NetworkName?: string;
|
|
4116
|
+
NetworkName?: string | undefined;
|
|
4117
4117
|
/**
|
|
4118
4118
|
* The network source port.
|
|
4119
4119
|
* @public
|
|
4120
4120
|
*/
|
|
4121
|
-
Port?: number;
|
|
4121
|
+
Port?: number | undefined;
|
|
4122
4122
|
/**
|
|
4123
4123
|
* The network source protocol.
|
|
4124
4124
|
* @public
|
|
4125
4125
|
*/
|
|
4126
|
-
Protocol?: Protocol;
|
|
4126
|
+
Protocol?: Protocol | undefined;
|
|
4127
4127
|
}
|
|
4128
4128
|
/**
|
|
4129
4129
|
* The fields that you want to update in the bridge source.
|
|
@@ -4139,12 +4139,12 @@ export interface UpdateBridgeSourceRequest {
|
|
|
4139
4139
|
* Update the flow source of the bridge.
|
|
4140
4140
|
* @public
|
|
4141
4141
|
*/
|
|
4142
|
-
FlowSource?: UpdateBridgeFlowSourceRequest;
|
|
4142
|
+
FlowSource?: UpdateBridgeFlowSourceRequest | undefined;
|
|
4143
4143
|
/**
|
|
4144
4144
|
* Update the network source of the bridge.
|
|
4145
4145
|
* @public
|
|
4146
4146
|
*/
|
|
4147
|
-
NetworkSource?: UpdateBridgeNetworkSourceRequest;
|
|
4147
|
+
NetworkSource?: UpdateBridgeNetworkSourceRequest | undefined;
|
|
4148
4148
|
/**
|
|
4149
4149
|
* The name of the source that you want to update.
|
|
4150
4150
|
* @public
|
|
@@ -4159,12 +4159,12 @@ export interface UpdateBridgeSourceResponse {
|
|
|
4159
4159
|
* The Amazon Resource Number (ARN) of the bridge.
|
|
4160
4160
|
* @public
|
|
4161
4161
|
*/
|
|
4162
|
-
BridgeArn?: string;
|
|
4162
|
+
BridgeArn?: string | undefined;
|
|
4163
4163
|
/**
|
|
4164
4164
|
* The bridge's source.
|
|
4165
4165
|
* @public
|
|
4166
4166
|
*/
|
|
4167
|
-
Source?: BridgeSource;
|
|
4167
|
+
Source?: BridgeSource | undefined;
|
|
4168
4168
|
}
|
|
4169
4169
|
/**
|
|
4170
4170
|
* A request to update the bridge state.
|
|
@@ -4186,12 +4186,12 @@ export interface UpdateBridgeStateResponse {
|
|
|
4186
4186
|
* The Amazon Resource Number (ARN) of the bridge.
|
|
4187
4187
|
* @public
|
|
4188
4188
|
*/
|
|
4189
|
-
BridgeArn?: string;
|
|
4189
|
+
BridgeArn?: string | undefined;
|
|
4190
4190
|
/**
|
|
4191
4191
|
* The state of the bridge. ACTIVE or STANDBY.
|
|
4192
4192
|
* @public
|
|
4193
4193
|
*/
|
|
4194
|
-
DesiredState?: DesiredState;
|
|
4194
|
+
DesiredState?: DesiredState | undefined;
|
|
4195
4195
|
}
|
|
4196
4196
|
/**
|
|
4197
4197
|
* Update maintenance setting for a flow
|
|
@@ -4202,17 +4202,17 @@ export interface UpdateMaintenance {
|
|
|
4202
4202
|
* A day of a week when the maintenance will happen. use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
4203
4203
|
* @public
|
|
4204
4204
|
*/
|
|
4205
|
-
MaintenanceDay?: MaintenanceDay;
|
|
4205
|
+
MaintenanceDay?: MaintenanceDay | undefined;
|
|
4206
4206
|
/**
|
|
4207
4207
|
* A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
|
|
4208
4208
|
* @public
|
|
4209
4209
|
*/
|
|
4210
|
-
MaintenanceScheduledDate?: string;
|
|
4210
|
+
MaintenanceScheduledDate?: string | undefined;
|
|
4211
4211
|
/**
|
|
4212
4212
|
* UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
4213
4213
|
* @public
|
|
4214
4214
|
*/
|
|
4215
|
-
MaintenanceStartHour?: string;
|
|
4215
|
+
MaintenanceStartHour?: string | undefined;
|
|
4216
4216
|
}
|
|
4217
4217
|
/**
|
|
4218
4218
|
* A request to update flow.
|
|
@@ -4228,17 +4228,17 @@ export interface UpdateFlowRequest {
|
|
|
4228
4228
|
* The settings for source failover.
|
|
4229
4229
|
* @public
|
|
4230
4230
|
*/
|
|
4231
|
-
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
4231
|
+
SourceFailoverConfig?: UpdateFailoverConfig | undefined;
|
|
4232
4232
|
/**
|
|
4233
4233
|
* Update maintenance setting for a flow
|
|
4234
4234
|
* @public
|
|
4235
4235
|
*/
|
|
4236
|
-
Maintenance?: UpdateMaintenance;
|
|
4236
|
+
Maintenance?: UpdateMaintenance | undefined;
|
|
4237
4237
|
/**
|
|
4238
4238
|
* The settings for source monitoring.
|
|
4239
4239
|
* @public
|
|
4240
4240
|
*/
|
|
4241
|
-
SourceMonitoringConfig?: MonitoringConfig;
|
|
4241
|
+
SourceMonitoringConfig?: MonitoringConfig | undefined;
|
|
4242
4242
|
}
|
|
4243
4243
|
/**
|
|
4244
4244
|
* @public
|
|
@@ -4248,7 +4248,7 @@ export interface UpdateFlowResponse {
|
|
|
4248
4248
|
* The settings for a flow, including its source, outputs, and entitlements.
|
|
4249
4249
|
* @public
|
|
4250
4250
|
*/
|
|
4251
|
-
Flow?: Flow;
|
|
4251
|
+
Flow?: Flow | undefined;
|
|
4252
4252
|
}
|
|
4253
4253
|
/**
|
|
4254
4254
|
* Information about the encryption of the flow.
|
|
@@ -4259,47 +4259,47 @@ export interface UpdateEncryption {
|
|
|
4259
4259
|
* The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
|
|
4260
4260
|
* @public
|
|
4261
4261
|
*/
|
|
4262
|
-
Algorithm?: Algorithm;
|
|
4262
|
+
Algorithm?: Algorithm | undefined;
|
|
4263
4263
|
/**
|
|
4264
4264
|
* A 128-bit, 16-byte hex value represented by a 32-character string, to be used with the key for encrypting content. This parameter is not valid for static key encryption.
|
|
4265
4265
|
* @public
|
|
4266
4266
|
*/
|
|
4267
|
-
ConstantInitializationVector?: string;
|
|
4267
|
+
ConstantInitializationVector?: string | undefined;
|
|
4268
4268
|
/**
|
|
4269
4269
|
* The value of one of the devices that you configured with your digital rights management (DRM) platform key provider. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
4270
4270
|
* @public
|
|
4271
4271
|
*/
|
|
4272
|
-
DeviceId?: string;
|
|
4272
|
+
DeviceId?: string | undefined;
|
|
4273
4273
|
/**
|
|
4274
4274
|
* The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
4275
4275
|
* @public
|
|
4276
4276
|
*/
|
|
4277
|
-
KeyType?: KeyType;
|
|
4277
|
+
KeyType?: KeyType | undefined;
|
|
4278
4278
|
/**
|
|
4279
4279
|
* The AWS Region that the API Gateway proxy endpoint was created in. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
4280
4280
|
* @public
|
|
4281
4281
|
*/
|
|
4282
|
-
Region?: string;
|
|
4282
|
+
Region?: string | undefined;
|
|
4283
4283
|
/**
|
|
4284
4284
|
* An identifier for the content. The service sends this value to the key server to identify the current endpoint. The resource ID is also known as the content ID. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
4285
4285
|
* @public
|
|
4286
4286
|
*/
|
|
4287
|
-
ResourceId?: string;
|
|
4287
|
+
ResourceId?: string | undefined;
|
|
4288
4288
|
/**
|
|
4289
4289
|
* The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity).
|
|
4290
4290
|
* @public
|
|
4291
4291
|
*/
|
|
4292
|
-
RoleArn?: string;
|
|
4292
|
+
RoleArn?: string | undefined;
|
|
4293
4293
|
/**
|
|
4294
4294
|
* The ARN of the secret that you created in AWS Secrets Manager to store the encryption key. This parameter is required for static key encryption and is not valid for SPEKE encryption.
|
|
4295
4295
|
* @public
|
|
4296
4296
|
*/
|
|
4297
|
-
SecretArn?: string;
|
|
4297
|
+
SecretArn?: string | undefined;
|
|
4298
4298
|
/**
|
|
4299
4299
|
* The URL from the API Gateway proxy that you set up to talk to your key server. This parameter is required for SPEKE encryption and is not valid for static key encryption.
|
|
4300
4300
|
* @public
|
|
4301
4301
|
*/
|
|
4302
|
-
Url?: string;
|
|
4302
|
+
Url?: string | undefined;
|
|
4303
4303
|
}
|
|
4304
4304
|
/**
|
|
4305
4305
|
* The entitlement fields that you want to update.
|
|
@@ -4310,12 +4310,12 @@ export interface UpdateFlowEntitlementRequest {
|
|
|
4310
4310
|
* A description of the entitlement. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the subscriber or end user.
|
|
4311
4311
|
* @public
|
|
4312
4312
|
*/
|
|
4313
|
-
Description?: string;
|
|
4313
|
+
Description?: string | undefined;
|
|
4314
4314
|
/**
|
|
4315
4315
|
* The type of encryption that will be used on the output associated with this entitlement. Allowable encryption types: static-key, speke.
|
|
4316
4316
|
* @public
|
|
4317
4317
|
*/
|
|
4318
|
-
Encryption?: UpdateEncryption;
|
|
4318
|
+
Encryption?: UpdateEncryption | undefined;
|
|
4319
4319
|
/**
|
|
4320
4320
|
* The ARN of the entitlement that you want to update.
|
|
4321
4321
|
* @public
|
|
@@ -4325,7 +4325,7 @@ export interface UpdateFlowEntitlementRequest {
|
|
|
4325
4325
|
* An indication of whether you want to enable the entitlement to allow access, or disable it to stop streaming content to the subscriber’s flow temporarily. If you don’t specify the entitlementStatus field in your request, MediaConnect leaves the value unchanged.
|
|
4326
4326
|
* @public
|
|
4327
4327
|
*/
|
|
4328
|
-
EntitlementStatus?: EntitlementStatus;
|
|
4328
|
+
EntitlementStatus?: EntitlementStatus | undefined;
|
|
4329
4329
|
/**
|
|
4330
4330
|
* The flow that is associated with the entitlement that you want to update.
|
|
4331
4331
|
* @public
|
|
@@ -4335,7 +4335,7 @@ export interface UpdateFlowEntitlementRequest {
|
|
|
4335
4335
|
* The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be allowed to create their own flow using your content as the source.
|
|
4336
4336
|
* @public
|
|
4337
4337
|
*/
|
|
4338
|
-
Subscribers?: string[];
|
|
4338
|
+
Subscribers?: string[] | undefined;
|
|
4339
4339
|
}
|
|
4340
4340
|
/**
|
|
4341
4341
|
* @public
|
|
@@ -4345,12 +4345,12 @@ export interface UpdateFlowEntitlementResponse {
|
|
|
4345
4345
|
* The new configuration of the entitlement that you updated.
|
|
4346
4346
|
* @public
|
|
4347
4347
|
*/
|
|
4348
|
-
Entitlement?: Entitlement;
|
|
4348
|
+
Entitlement?: Entitlement | undefined;
|
|
4349
4349
|
/**
|
|
4350
4350
|
* The ARN of the flow that this entitlement was granted on.
|
|
4351
4351
|
* @public
|
|
4352
4352
|
*/
|
|
4353
|
-
FlowArn?: string;
|
|
4353
|
+
FlowArn?: string | undefined;
|
|
4354
4354
|
}
|
|
4355
4355
|
/**
|
|
4356
4356
|
* The fields that you want to update in the media stream.
|
|
@@ -4361,17 +4361,17 @@ export interface UpdateFlowMediaStreamRequest {
|
|
|
4361
4361
|
* The attributes that you want to assign to the media stream.
|
|
4362
4362
|
* @public
|
|
4363
4363
|
*/
|
|
4364
|
-
Attributes?: MediaStreamAttributesRequest;
|
|
4364
|
+
Attributes?: MediaStreamAttributesRequest | undefined;
|
|
4365
4365
|
/**
|
|
4366
4366
|
* The sample rate (in Hz) for the stream. If the media stream type is video or ancillary data, set this value to 90000. If the media stream type is audio, set this value to either 48000 or 96000.
|
|
4367
4367
|
* @public
|
|
4368
4368
|
*/
|
|
4369
|
-
ClockRate?: number;
|
|
4369
|
+
ClockRate?: number | undefined;
|
|
4370
4370
|
/**
|
|
4371
4371
|
* Description
|
|
4372
4372
|
* @public
|
|
4373
4373
|
*/
|
|
4374
|
-
Description?: string;
|
|
4374
|
+
Description?: string | undefined;
|
|
4375
4375
|
/**
|
|
4376
4376
|
* The Amazon Resource Name (ARN) of the flow.
|
|
4377
4377
|
* @public
|
|
@@ -4386,12 +4386,12 @@ export interface UpdateFlowMediaStreamRequest {
|
|
|
4386
4386
|
* The type of media stream.
|
|
4387
4387
|
* @public
|
|
4388
4388
|
*/
|
|
4389
|
-
MediaStreamType?: MediaStreamType;
|
|
4389
|
+
MediaStreamType?: MediaStreamType | undefined;
|
|
4390
4390
|
/**
|
|
4391
4391
|
* The resolution of the video.
|
|
4392
4392
|
* @public
|
|
4393
4393
|
*/
|
|
4394
|
-
VideoFormat?: string;
|
|
4394
|
+
VideoFormat?: string | undefined;
|
|
4395
4395
|
}
|
|
4396
4396
|
/**
|
|
4397
4397
|
* @public
|
|
@@ -4401,12 +4401,12 @@ export interface UpdateFlowMediaStreamResponse {
|
|
|
4401
4401
|
* The ARN of the flow that is associated with the media stream that you updated.
|
|
4402
4402
|
* @public
|
|
4403
4403
|
*/
|
|
4404
|
-
FlowArn?: string;
|
|
4404
|
+
FlowArn?: string | undefined;
|
|
4405
4405
|
/**
|
|
4406
4406
|
* The media stream that you updated.
|
|
4407
4407
|
* @public
|
|
4408
4408
|
*/
|
|
4409
|
-
MediaStream?: MediaStream;
|
|
4409
|
+
MediaStream?: MediaStream | undefined;
|
|
4410
4410
|
}
|
|
4411
4411
|
/**
|
|
4412
4412
|
* The fields that you want to update in the output.
|
|
@@ -4417,22 +4417,22 @@ export interface UpdateFlowOutputRequest {
|
|
|
4417
4417
|
* The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
4418
4418
|
* @public
|
|
4419
4419
|
*/
|
|
4420
|
-
CidrAllowList?: string[];
|
|
4420
|
+
CidrAllowList?: string[] | undefined;
|
|
4421
4421
|
/**
|
|
4422
4422
|
* A description of the output. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the end user.
|
|
4423
4423
|
* @public
|
|
4424
4424
|
*/
|
|
4425
|
-
Description?: string;
|
|
4425
|
+
Description?: string | undefined;
|
|
4426
4426
|
/**
|
|
4427
4427
|
* The IP address where you want to send the output.
|
|
4428
4428
|
* @public
|
|
4429
4429
|
*/
|
|
4430
|
-
Destination?: string;
|
|
4430
|
+
Destination?: string | undefined;
|
|
4431
4431
|
/**
|
|
4432
4432
|
* The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). Allowable encryption types: static-key.
|
|
4433
4433
|
* @public
|
|
4434
4434
|
*/
|
|
4435
|
-
Encryption?: UpdateEncryption;
|
|
4435
|
+
Encryption?: UpdateEncryption | undefined;
|
|
4436
4436
|
/**
|
|
4437
4437
|
* The flow that is associated with the output that you want to update.
|
|
4438
4438
|
* @public
|
|
@@ -4442,17 +4442,17 @@ export interface UpdateFlowOutputRequest {
|
|
|
4442
4442
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
4443
4443
|
* @public
|
|
4444
4444
|
*/
|
|
4445
|
-
MaxLatency?: number;
|
|
4445
|
+
MaxLatency?: number | undefined;
|
|
4446
4446
|
/**
|
|
4447
4447
|
* The media streams that are associated with the output, and the parameters for those associations.
|
|
4448
4448
|
* @public
|
|
4449
4449
|
*/
|
|
4450
|
-
MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[];
|
|
4450
|
+
MediaStreamOutputConfigurations?: MediaStreamOutputConfigurationRequest[] | undefined;
|
|
4451
4451
|
/**
|
|
4452
4452
|
* The minimum latency in milliseconds for SRT-based streams. In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
|
|
4453
4453
|
* @public
|
|
4454
4454
|
*/
|
|
4455
|
-
MinLatency?: number;
|
|
4455
|
+
MinLatency?: number | undefined;
|
|
4456
4456
|
/**
|
|
4457
4457
|
* The ARN of the output that you want to update.
|
|
4458
4458
|
* @public
|
|
@@ -4462,47 +4462,47 @@ export interface UpdateFlowOutputRequest {
|
|
|
4462
4462
|
* The port to use when content is distributed to this output.
|
|
4463
4463
|
* @public
|
|
4464
4464
|
*/
|
|
4465
|
-
Port?: number;
|
|
4465
|
+
Port?: number | undefined;
|
|
4466
4466
|
/**
|
|
4467
4467
|
* The protocol to use for the output.
|
|
4468
4468
|
* @public
|
|
4469
4469
|
*/
|
|
4470
|
-
Protocol?: Protocol;
|
|
4470
|
+
Protocol?: Protocol | undefined;
|
|
4471
4471
|
/**
|
|
4472
4472
|
* The remote ID for the Zixi-pull stream.
|
|
4473
4473
|
* @public
|
|
4474
4474
|
*/
|
|
4475
|
-
RemoteId?: string;
|
|
4475
|
+
RemoteId?: string | undefined;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
4478
4478
|
* @public
|
|
4479
4479
|
*/
|
|
4480
|
-
SenderControlPort?: number;
|
|
4480
|
+
SenderControlPort?: number | undefined;
|
|
4481
4481
|
/**
|
|
4482
4482
|
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
4483
4483
|
* @public
|
|
4484
4484
|
*/
|
|
4485
|
-
SenderIpAddress?: string;
|
|
4485
|
+
SenderIpAddress?: string | undefined;
|
|
4486
4486
|
/**
|
|
4487
4487
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
4488
4488
|
* @public
|
|
4489
4489
|
*/
|
|
4490
|
-
SmoothingLatency?: number;
|
|
4490
|
+
SmoothingLatency?: number | undefined;
|
|
4491
4491
|
/**
|
|
4492
4492
|
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
4493
4493
|
* @public
|
|
4494
4494
|
*/
|
|
4495
|
-
StreamId?: string;
|
|
4495
|
+
StreamId?: string | undefined;
|
|
4496
4496
|
/**
|
|
4497
4497
|
* The name of the VPC interface attachment to use for this output.
|
|
4498
4498
|
* @public
|
|
4499
4499
|
*/
|
|
4500
|
-
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
4500
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
4501
4501
|
/**
|
|
4502
4502
|
* An indication of whether the output should transmit data or not. If you don't specify the outputStatus field in your request, MediaConnect leaves the value unchanged.
|
|
4503
4503
|
* @public
|
|
4504
4504
|
*/
|
|
4505
|
-
OutputStatus?: OutputStatus;
|
|
4505
|
+
OutputStatus?: OutputStatus | undefined;
|
|
4506
4506
|
}
|
|
4507
4507
|
/**
|
|
4508
4508
|
* @public
|
|
@@ -4512,12 +4512,12 @@ export interface UpdateFlowOutputResponse {
|
|
|
4512
4512
|
* The ARN of the flow that is associated with the updated output.
|
|
4513
4513
|
* @public
|
|
4514
4514
|
*/
|
|
4515
|
-
FlowArn?: string;
|
|
4515
|
+
FlowArn?: string | undefined;
|
|
4516
4516
|
/**
|
|
4517
4517
|
* The new settings of the output that you updated.
|
|
4518
4518
|
* @public
|
|
4519
4519
|
*/
|
|
4520
|
-
Output?: Output;
|
|
4520
|
+
Output?: Output | undefined;
|
|
4521
4521
|
}
|
|
4522
4522
|
/**
|
|
4523
4523
|
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
@@ -4528,12 +4528,12 @@ export interface UpdateGatewayBridgeSourceRequest {
|
|
|
4528
4528
|
* The ARN of the bridge feeding this flow.
|
|
4529
4529
|
* @public
|
|
4530
4530
|
*/
|
|
4531
|
-
BridgeArn?: string;
|
|
4531
|
+
BridgeArn?: string | undefined;
|
|
4532
4532
|
/**
|
|
4533
4533
|
* The name of the VPC interface attachment to use for this bridge source.
|
|
4534
4534
|
* @public
|
|
4535
4535
|
*/
|
|
4536
|
-
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
4536
|
+
VpcInterfaceAttachment?: VpcInterfaceAttachment | undefined;
|
|
4537
4537
|
}
|
|
4538
4538
|
/**
|
|
4539
4539
|
* A request to update the source of a flow.
|
|
@@ -4544,17 +4544,17 @@ export interface UpdateFlowSourceRequest {
|
|
|
4544
4544
|
* The type of encryption used on the content ingested from this source. Allowable encryption types: static-key.
|
|
4545
4545
|
* @public
|
|
4546
4546
|
*/
|
|
4547
|
-
Decryption?: UpdateEncryption;
|
|
4547
|
+
Decryption?: UpdateEncryption | undefined;
|
|
4548
4548
|
/**
|
|
4549
4549
|
* A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
|
|
4550
4550
|
* @public
|
|
4551
4551
|
*/
|
|
4552
|
-
Description?: string;
|
|
4552
|
+
Description?: string | undefined;
|
|
4553
4553
|
/**
|
|
4554
4554
|
* The ARN of the entitlement that allows you to subscribe to this flow. The entitlement is set by the flow originator, and the ARN is generated as part of the originator's flow.
|
|
4555
4555
|
* @public
|
|
4556
4556
|
*/
|
|
4557
|
-
EntitlementArn?: string;
|
|
4557
|
+
EntitlementArn?: string | undefined;
|
|
4558
4558
|
/**
|
|
4559
4559
|
* The flow that is associated with the source that you want to update.
|
|
4560
4560
|
* @public
|
|
@@ -4564,47 +4564,47 @@ export interface UpdateFlowSourceRequest {
|
|
|
4564
4564
|
* The port that the flow will be listening on for incoming content.
|
|
4565
4565
|
* @public
|
|
4566
4566
|
*/
|
|
4567
|
-
IngestPort?: number;
|
|
4567
|
+
IngestPort?: number | undefined;
|
|
4568
4568
|
/**
|
|
4569
4569
|
* The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
|
4570
4570
|
* @public
|
|
4571
4571
|
*/
|
|
4572
|
-
MaxBitrate?: number;
|
|
4572
|
+
MaxBitrate?: number | undefined;
|
|
4573
4573
|
/**
|
|
4574
4574
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
4575
4575
|
* @public
|
|
4576
4576
|
*/
|
|
4577
|
-
MaxLatency?: number;
|
|
4577
|
+
MaxLatency?: number | undefined;
|
|
4578
4578
|
/**
|
|
4579
4579
|
* The size of the buffer (in milliseconds) to use to sync incoming source data.
|
|
4580
4580
|
* @public
|
|
4581
4581
|
*/
|
|
4582
|
-
MaxSyncBuffer?: number;
|
|
4582
|
+
MaxSyncBuffer?: number | undefined;
|
|
4583
4583
|
/**
|
|
4584
4584
|
* The media streams that are associated with the source, and the parameters for those associations.
|
|
4585
4585
|
* @public
|
|
4586
4586
|
*/
|
|
4587
|
-
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
|
|
4587
|
+
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[] | undefined;
|
|
4588
4588
|
/**
|
|
4589
4589
|
* The minimum latency in milliseconds for SRT-based streams. In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
|
|
4590
4590
|
* @public
|
|
4591
4591
|
*/
|
|
4592
|
-
MinLatency?: number;
|
|
4592
|
+
MinLatency?: number | undefined;
|
|
4593
4593
|
/**
|
|
4594
4594
|
* The protocol that is used by the source.
|
|
4595
4595
|
* @public
|
|
4596
4596
|
*/
|
|
4597
|
-
Protocol?: Protocol;
|
|
4597
|
+
Protocol?: Protocol | undefined;
|
|
4598
4598
|
/**
|
|
4599
4599
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
4600
4600
|
* @public
|
|
4601
4601
|
*/
|
|
4602
|
-
SenderControlPort?: number;
|
|
4602
|
+
SenderControlPort?: number | undefined;
|
|
4603
4603
|
/**
|
|
4604
4604
|
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
4605
4605
|
* @public
|
|
4606
4606
|
*/
|
|
4607
|
-
SenderIpAddress?: string;
|
|
4607
|
+
SenderIpAddress?: string | undefined;
|
|
4608
4608
|
/**
|
|
4609
4609
|
* The ARN of the source that you want to update.
|
|
4610
4610
|
* @public
|
|
@@ -4614,32 +4614,32 @@ export interface UpdateFlowSourceRequest {
|
|
|
4614
4614
|
* Source IP or domain name for SRT-caller protocol.
|
|
4615
4615
|
* @public
|
|
4616
4616
|
*/
|
|
4617
|
-
SourceListenerAddress?: string;
|
|
4617
|
+
SourceListenerAddress?: string | undefined;
|
|
4618
4618
|
/**
|
|
4619
4619
|
* Source port for SRT-caller protocol.
|
|
4620
4620
|
* @public
|
|
4621
4621
|
*/
|
|
4622
|
-
SourceListenerPort?: number;
|
|
4622
|
+
SourceListenerPort?: number | undefined;
|
|
4623
4623
|
/**
|
|
4624
4624
|
* The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
|
|
4625
4625
|
* @public
|
|
4626
4626
|
*/
|
|
4627
|
-
StreamId?: string;
|
|
4627
|
+
StreamId?: string | undefined;
|
|
4628
4628
|
/**
|
|
4629
4629
|
* The name of the VPC interface to use for this source.
|
|
4630
4630
|
* @public
|
|
4631
4631
|
*/
|
|
4632
|
-
VpcInterfaceName?: string;
|
|
4632
|
+
VpcInterfaceName?: string | undefined;
|
|
4633
4633
|
/**
|
|
4634
4634
|
* The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
|
4635
4635
|
* @public
|
|
4636
4636
|
*/
|
|
4637
|
-
WhitelistCidr?: string;
|
|
4637
|
+
WhitelistCidr?: string | undefined;
|
|
4638
4638
|
/**
|
|
4639
4639
|
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
4640
4640
|
* @public
|
|
4641
4641
|
*/
|
|
4642
|
-
GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest;
|
|
4642
|
+
GatewayBridgeSource?: UpdateGatewayBridgeSourceRequest | undefined;
|
|
4643
4643
|
}
|
|
4644
4644
|
/**
|
|
4645
4645
|
* @public
|
|
@@ -4649,12 +4649,12 @@ export interface UpdateFlowSourceResponse {
|
|
|
4649
4649
|
* The ARN of the flow that you want to update.
|
|
4650
4650
|
* @public
|
|
4651
4651
|
*/
|
|
4652
|
-
FlowArn?: string;
|
|
4652
|
+
FlowArn?: string | undefined;
|
|
4653
4653
|
/**
|
|
4654
4654
|
* The settings for the source of the flow.
|
|
4655
4655
|
* @public
|
|
4656
4656
|
*/
|
|
4657
|
-
Source?: Source;
|
|
4657
|
+
Source?: Source | undefined;
|
|
4658
4658
|
}
|
|
4659
4659
|
/**
|
|
4660
4660
|
* A request to update gateway instance state.
|
|
@@ -4665,7 +4665,7 @@ export interface UpdateGatewayInstanceRequest {
|
|
|
4665
4665
|
* The availability of the instance to host new bridges. The bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED, no new bridges can be deployed to this instance. If it is AVAILABLE, new bridges can be added to this instance.
|
|
4666
4666
|
* @public
|
|
4667
4667
|
*/
|
|
4668
|
-
BridgePlacement?: BridgePlacement;
|
|
4668
|
+
BridgePlacement?: BridgePlacement | undefined;
|
|
4669
4669
|
/**
|
|
4670
4670
|
* The Amazon Resource Name (ARN) of the instance that you want to update.
|
|
4671
4671
|
* @public
|
|
@@ -4680,10 +4680,10 @@ export interface UpdateGatewayInstanceResponse {
|
|
|
4680
4680
|
* The availability of the instance to host new bridges. The bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED, no new bridges can be deployed to this instance. If it is AVAILABLE, new bridges can be added to this instance.
|
|
4681
4681
|
* @public
|
|
4682
4682
|
*/
|
|
4683
|
-
BridgePlacement?: BridgePlacement;
|
|
4683
|
+
BridgePlacement?: BridgePlacement | undefined;
|
|
4684
4684
|
/**
|
|
4685
4685
|
* The Amazon Resource Name (ARN) of the instance.
|
|
4686
4686
|
* @public
|
|
4687
4687
|
*/
|
|
4688
|
-
GatewayInstanceArn?: string;
|
|
4688
|
+
GatewayInstanceArn?: string | undefined;
|
|
4689
4689
|
}
|