@aws-sdk/client-mediaconnect 3.301.0 → 3.303.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-cjs/models/models_0.js +120 -141
- package/dist-es/models/models_0.js +120 -141
- package/dist-types/models/models_0.d.ts +225 -120
- package/dist-types/ts3.4/models/models_0.d.ts +147 -120
- package/package.json +35 -35
|
@@ -2,46 +2,66 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
BT2020
|
|
8
|
-
BT2100
|
|
9
|
-
BT601
|
|
10
|
-
BT709
|
|
11
|
-
ST2065_1
|
|
12
|
-
ST2065_3
|
|
13
|
-
XYZ
|
|
14
|
-
}
|
|
7
|
+
export declare const Colorimetry: {
|
|
8
|
+
readonly BT2020: "BT2020";
|
|
9
|
+
readonly BT2100: "BT2100";
|
|
10
|
+
readonly BT601: "BT601";
|
|
11
|
+
readonly BT709: "BT709";
|
|
12
|
+
readonly ST2065_1: "ST2065-1";
|
|
13
|
+
readonly ST2065_3: "ST2065-3";
|
|
14
|
+
readonly XYZ: "XYZ";
|
|
15
|
+
};
|
|
15
16
|
/**
|
|
16
17
|
* @public
|
|
17
18
|
*/
|
|
18
|
-
export
|
|
19
|
-
FULL = "FULL",
|
|
20
|
-
FULLPROTECT = "FULLPROTECT",
|
|
21
|
-
NARROW = "NARROW"
|
|
22
|
-
}
|
|
19
|
+
export type Colorimetry = (typeof Colorimetry)[keyof typeof Colorimetry];
|
|
23
20
|
/**
|
|
24
21
|
* @public
|
|
22
|
+
* @enum
|
|
25
23
|
*/
|
|
26
|
-
export declare
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
24
|
+
export declare const Range: {
|
|
25
|
+
readonly FULL: "FULL";
|
|
26
|
+
readonly FULLPROTECT: "FULLPROTECT";
|
|
27
|
+
readonly NARROW: "NARROW";
|
|
28
|
+
};
|
|
31
29
|
/**
|
|
32
30
|
* @public
|
|
33
31
|
*/
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
32
|
+
export type Range = (typeof Range)[keyof typeof Range];
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
* @enum
|
|
36
|
+
*/
|
|
37
|
+
export declare const ScanMode: {
|
|
38
|
+
readonly interlace: "interlace";
|
|
39
|
+
readonly progressive: "progressive";
|
|
40
|
+
readonly progressive_segmented_frame: "progressive-segmented-frame";
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export type ScanMode = (typeof ScanMode)[keyof typeof ScanMode];
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* @enum
|
|
49
|
+
*/
|
|
50
|
+
export declare const Tcs: {
|
|
51
|
+
readonly BT2100LINHLG: "BT2100LINHLG";
|
|
52
|
+
readonly BT2100LINPQ: "BT2100LINPQ";
|
|
53
|
+
readonly DENSITY: "DENSITY";
|
|
54
|
+
readonly HLG: "HLG";
|
|
55
|
+
readonly LINEAR: "LINEAR";
|
|
56
|
+
readonly PQ: "PQ";
|
|
57
|
+
readonly SDR: "SDR";
|
|
58
|
+
readonly ST2065_1: "ST2065-1";
|
|
59
|
+
readonly ST428_1: "ST428-1";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type Tcs = (typeof Tcs)[keyof typeof Tcs];
|
|
45
65
|
/**
|
|
46
66
|
* @public
|
|
47
67
|
* The settings that you want to use to define the media stream.
|
|
@@ -92,12 +112,17 @@ export interface MediaStreamAttributesRequest {
|
|
|
92
112
|
}
|
|
93
113
|
/**
|
|
94
114
|
* @public
|
|
115
|
+
* @enum
|
|
95
116
|
*/
|
|
96
|
-
export declare
|
|
97
|
-
ancillary_data
|
|
98
|
-
audio
|
|
99
|
-
video
|
|
100
|
-
}
|
|
117
|
+
export declare const MediaStreamType: {
|
|
118
|
+
readonly ancillary_data: "ancillary-data";
|
|
119
|
+
readonly audio: "audio";
|
|
120
|
+
readonly video: "video";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type MediaStreamType = (typeof MediaStreamType)[keyof typeof MediaStreamType];
|
|
101
126
|
/**
|
|
102
127
|
* @public
|
|
103
128
|
* The media stream that you want to add to the flow.
|
|
@@ -134,20 +159,30 @@ export interface AddMediaStreamRequest {
|
|
|
134
159
|
}
|
|
135
160
|
/**
|
|
136
161
|
* @public
|
|
162
|
+
* @enum
|
|
137
163
|
*/
|
|
138
|
-
export declare
|
|
139
|
-
aes128
|
|
140
|
-
aes192
|
|
141
|
-
aes256
|
|
142
|
-
}
|
|
164
|
+
export declare const Algorithm: {
|
|
165
|
+
readonly aes128: "aes128";
|
|
166
|
+
readonly aes192: "aes192";
|
|
167
|
+
readonly aes256: "aes256";
|
|
168
|
+
};
|
|
143
169
|
/**
|
|
144
170
|
* @public
|
|
145
171
|
*/
|
|
146
|
-
export
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
172
|
+
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const KeyType: {
|
|
178
|
+
readonly speke: "speke";
|
|
179
|
+
readonly srt_password: "srt-password";
|
|
180
|
+
readonly static_key: "static-key";
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
151
186
|
/**
|
|
152
187
|
* @public
|
|
153
188
|
* Information about the encryption of the flow.
|
|
@@ -220,20 +255,30 @@ export interface DestinationConfigurationRequest {
|
|
|
220
255
|
}
|
|
221
256
|
/**
|
|
222
257
|
* @public
|
|
258
|
+
* @enum
|
|
223
259
|
*/
|
|
224
|
-
export declare
|
|
225
|
-
jxsv
|
|
226
|
-
pcm
|
|
227
|
-
raw
|
|
228
|
-
smpte291
|
|
229
|
-
}
|
|
260
|
+
export declare const EncodingName: {
|
|
261
|
+
readonly jxsv: "jxsv";
|
|
262
|
+
readonly pcm: "pcm";
|
|
263
|
+
readonly raw: "raw";
|
|
264
|
+
readonly smpte291: "smpte291";
|
|
265
|
+
};
|
|
230
266
|
/**
|
|
231
267
|
* @public
|
|
232
268
|
*/
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
269
|
+
export type EncodingName = (typeof EncodingName)[keyof typeof EncodingName];
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
* @enum
|
|
273
|
+
*/
|
|
274
|
+
export declare const EncoderProfile: {
|
|
275
|
+
readonly high: "high";
|
|
276
|
+
readonly main: "main";
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export type EncoderProfile = (typeof EncoderProfile)[keyof typeof EncoderProfile];
|
|
237
282
|
/**
|
|
238
283
|
* @public
|
|
239
284
|
* 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.
|
|
@@ -272,19 +317,24 @@ export interface MediaStreamOutputConfigurationRequest {
|
|
|
272
317
|
}
|
|
273
318
|
/**
|
|
274
319
|
* @public
|
|
320
|
+
* @enum
|
|
275
321
|
*/
|
|
276
|
-
export declare
|
|
277
|
-
cdi
|
|
278
|
-
fujitsu_qos
|
|
279
|
-
rist
|
|
280
|
-
rtp
|
|
281
|
-
rtp_fec
|
|
282
|
-
srt_caller
|
|
283
|
-
srt_listener
|
|
284
|
-
st2110_jpegxs
|
|
285
|
-
zixi_pull
|
|
286
|
-
zixi_push
|
|
287
|
-
}
|
|
322
|
+
export declare const Protocol: {
|
|
323
|
+
readonly cdi: "cdi";
|
|
324
|
+
readonly fujitsu_qos: "fujitsu-qos";
|
|
325
|
+
readonly rist: "rist";
|
|
326
|
+
readonly rtp: "rtp";
|
|
327
|
+
readonly rtp_fec: "rtp-fec";
|
|
328
|
+
readonly srt_caller: "srt-caller";
|
|
329
|
+
readonly srt_listener: "srt-listener";
|
|
330
|
+
readonly st2110_jpegxs: "st2110-jpegxs";
|
|
331
|
+
readonly zixi_pull: "zixi-pull";
|
|
332
|
+
readonly zixi_push: "zixi-push";
|
|
333
|
+
};
|
|
334
|
+
/**
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
337
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
288
338
|
/**
|
|
289
339
|
* @public
|
|
290
340
|
* The settings for attaching a VPC interface to an output.
|
|
@@ -395,11 +445,16 @@ export interface DestinationConfiguration {
|
|
|
395
445
|
}
|
|
396
446
|
/**
|
|
397
447
|
* @public
|
|
448
|
+
* @enum
|
|
398
449
|
*/
|
|
399
|
-
export declare
|
|
400
|
-
DISABLED
|
|
401
|
-
ENABLED
|
|
402
|
-
}
|
|
450
|
+
export declare const EntitlementStatus: {
|
|
451
|
+
readonly DISABLED: "DISABLED";
|
|
452
|
+
readonly ENABLED: "ENABLED";
|
|
453
|
+
};
|
|
454
|
+
/**
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
457
|
+
export type EntitlementStatus = (typeof EntitlementStatus)[keyof typeof EntitlementStatus];
|
|
403
458
|
/**
|
|
404
459
|
* @public
|
|
405
460
|
* The settings for a flow entitlement.
|
|
@@ -516,16 +571,21 @@ export interface ListedEntitlement {
|
|
|
516
571
|
}
|
|
517
572
|
/**
|
|
518
573
|
* @public
|
|
574
|
+
* @enum
|
|
519
575
|
*/
|
|
520
|
-
export declare
|
|
521
|
-
Friday
|
|
522
|
-
Monday
|
|
523
|
-
Saturday
|
|
524
|
-
Sunday
|
|
525
|
-
Thursday
|
|
526
|
-
Tuesday
|
|
527
|
-
Wednesday
|
|
528
|
-
}
|
|
576
|
+
export declare const MaintenanceDay: {
|
|
577
|
+
readonly Friday: "Friday";
|
|
578
|
+
readonly Monday: "Monday";
|
|
579
|
+
readonly Saturday: "Saturday";
|
|
580
|
+
readonly Sunday: "Sunday";
|
|
581
|
+
readonly Thursday: "Thursday";
|
|
582
|
+
readonly Tuesday: "Tuesday";
|
|
583
|
+
readonly Wednesday: "Wednesday";
|
|
584
|
+
};
|
|
585
|
+
/**
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
export type MaintenanceDay = (typeof MaintenanceDay)[keyof typeof MaintenanceDay];
|
|
529
589
|
/**
|
|
530
590
|
* @public
|
|
531
591
|
* The maintenance setting of a flow
|
|
@@ -550,23 +610,33 @@ export interface Maintenance {
|
|
|
550
610
|
}
|
|
551
611
|
/**
|
|
552
612
|
* @public
|
|
613
|
+
* @enum
|
|
553
614
|
*/
|
|
554
|
-
export declare
|
|
555
|
-
ENTITLED
|
|
556
|
-
OWNED
|
|
557
|
-
}
|
|
615
|
+
export declare const SourceType: {
|
|
616
|
+
readonly ENTITLED: "ENTITLED";
|
|
617
|
+
readonly OWNED: "OWNED";
|
|
618
|
+
};
|
|
558
619
|
/**
|
|
559
620
|
* @public
|
|
560
621
|
*/
|
|
561
|
-
export
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
622
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
623
|
+
/**
|
|
624
|
+
* @public
|
|
625
|
+
* @enum
|
|
626
|
+
*/
|
|
627
|
+
export declare const Status: {
|
|
628
|
+
readonly ACTIVE: "ACTIVE";
|
|
629
|
+
readonly DELETING: "DELETING";
|
|
630
|
+
readonly ERROR: "ERROR";
|
|
631
|
+
readonly STANDBY: "STANDBY";
|
|
632
|
+
readonly STARTING: "STARTING";
|
|
633
|
+
readonly STOPPING: "STOPPING";
|
|
634
|
+
readonly UPDATING: "UPDATING";
|
|
635
|
+
};
|
|
636
|
+
/**
|
|
637
|
+
* @public
|
|
638
|
+
*/
|
|
639
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
570
640
|
/**
|
|
571
641
|
* @public
|
|
572
642
|
* Provides a summary of a flow, including its ARN, Availability Zone, and source type.
|
|
@@ -761,22 +831,37 @@ export interface MediaStreamSourceConfigurationRequest {
|
|
|
761
831
|
}
|
|
762
832
|
/**
|
|
763
833
|
* @public
|
|
834
|
+
* @enum
|
|
764
835
|
*/
|
|
765
|
-
export declare
|
|
766
|
-
MONTHS
|
|
767
|
-
}
|
|
836
|
+
export declare const DurationUnits: {
|
|
837
|
+
readonly MONTHS: "MONTHS";
|
|
838
|
+
};
|
|
768
839
|
/**
|
|
769
840
|
* @public
|
|
770
841
|
*/
|
|
771
|
-
export
|
|
772
|
-
HOURLY = "HOURLY"
|
|
773
|
-
}
|
|
842
|
+
export type DurationUnits = (typeof DurationUnits)[keyof typeof DurationUnits];
|
|
774
843
|
/**
|
|
775
844
|
* @public
|
|
845
|
+
* @enum
|
|
776
846
|
*/
|
|
777
|
-
export declare
|
|
778
|
-
|
|
779
|
-
}
|
|
847
|
+
export declare const PriceUnits: {
|
|
848
|
+
readonly HOURLY: "HOURLY";
|
|
849
|
+
};
|
|
850
|
+
/**
|
|
851
|
+
* @public
|
|
852
|
+
*/
|
|
853
|
+
export type PriceUnits = (typeof PriceUnits)[keyof typeof PriceUnits];
|
|
854
|
+
/**
|
|
855
|
+
* @public
|
|
856
|
+
* @enum
|
|
857
|
+
*/
|
|
858
|
+
export declare const ResourceType: {
|
|
859
|
+
readonly Mbps_Outbound_Bandwidth: "Mbps_Outbound_Bandwidth";
|
|
860
|
+
};
|
|
861
|
+
/**
|
|
862
|
+
* @public
|
|
863
|
+
*/
|
|
864
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
780
865
|
/**
|
|
781
866
|
* @public
|
|
782
867
|
* A definition of what is being billed for, including the type and amount.
|
|
@@ -947,13 +1032,18 @@ export interface Output {
|
|
|
947
1032
|
}
|
|
948
1033
|
/**
|
|
949
1034
|
* @public
|
|
1035
|
+
* @enum
|
|
950
1036
|
*/
|
|
951
|
-
export declare
|
|
952
|
-
ACTIVE
|
|
953
|
-
CANCELED
|
|
954
|
-
EXPIRED
|
|
955
|
-
PROCESSING
|
|
956
|
-
}
|
|
1037
|
+
export declare const ReservationState: {
|
|
1038
|
+
readonly ACTIVE: "ACTIVE";
|
|
1039
|
+
readonly CANCELED: "CANCELED";
|
|
1040
|
+
readonly EXPIRED: "EXPIRED";
|
|
1041
|
+
readonly PROCESSING: "PROCESSING";
|
|
1042
|
+
};
|
|
1043
|
+
/**
|
|
1044
|
+
* @public
|
|
1045
|
+
*/
|
|
1046
|
+
export type ReservationState = (typeof ReservationState)[keyof typeof ReservationState];
|
|
957
1047
|
/**
|
|
958
1048
|
* @public
|
|
959
1049
|
* 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.
|
|
@@ -1154,11 +1244,16 @@ export interface Source {
|
|
|
1154
1244
|
}
|
|
1155
1245
|
/**
|
|
1156
1246
|
* @public
|
|
1247
|
+
* @enum
|
|
1157
1248
|
*/
|
|
1158
|
-
export declare
|
|
1159
|
-
efa
|
|
1160
|
-
ena
|
|
1161
|
-
}
|
|
1249
|
+
export declare const NetworkInterfaceType: {
|
|
1250
|
+
readonly efa: "efa";
|
|
1251
|
+
readonly ena: "ena";
|
|
1252
|
+
};
|
|
1253
|
+
/**
|
|
1254
|
+
* @public
|
|
1255
|
+
*/
|
|
1256
|
+
export type NetworkInterfaceType = (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
|
|
1162
1257
|
/**
|
|
1163
1258
|
* @public
|
|
1164
1259
|
* The settings for a VPC Source.
|
|
@@ -1467,11 +1562,16 @@ export declare class CreateFlow420Exception extends __BaseException {
|
|
|
1467
1562
|
}
|
|
1468
1563
|
/**
|
|
1469
1564
|
* @public
|
|
1565
|
+
* @enum
|
|
1470
1566
|
*/
|
|
1471
|
-
export declare
|
|
1472
|
-
FAILOVER
|
|
1473
|
-
MERGE
|
|
1474
|
-
}
|
|
1567
|
+
export declare const FailoverMode: {
|
|
1568
|
+
readonly FAILOVER: "FAILOVER";
|
|
1569
|
+
readonly MERGE: "MERGE";
|
|
1570
|
+
};
|
|
1571
|
+
/**
|
|
1572
|
+
* @public
|
|
1573
|
+
*/
|
|
1574
|
+
export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
|
|
1475
1575
|
/**
|
|
1476
1576
|
* @public
|
|
1477
1577
|
* The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
|
|
@@ -1484,11 +1584,16 @@ export interface SourcePriority {
|
|
|
1484
1584
|
}
|
|
1485
1585
|
/**
|
|
1486
1586
|
* @public
|
|
1587
|
+
* @enum
|
|
1487
1588
|
*/
|
|
1488
|
-
export declare
|
|
1489
|
-
DISABLED
|
|
1490
|
-
ENABLED
|
|
1491
|
-
}
|
|
1589
|
+
export declare const State: {
|
|
1590
|
+
readonly DISABLED: "DISABLED";
|
|
1591
|
+
readonly ENABLED: "ENABLED";
|
|
1592
|
+
};
|
|
1593
|
+
/**
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1596
|
+
export type State = (typeof State)[keyof typeof State];
|
|
1492
1597
|
/**
|
|
1493
1598
|
* @public
|
|
1494
1599
|
* The settings for source failover.
|