@aws-sdk/client-mediaconnect 3.428.0 → 3.429.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.
|
@@ -50,7 +50,7 @@ export interface AddBridgeNetworkOutputRequest {
|
|
|
50
50
|
* @public
|
|
51
51
|
* The network output protocol.
|
|
52
52
|
*/
|
|
53
|
-
Protocol: Protocol |
|
|
53
|
+
Protocol: Protocol | undefined;
|
|
54
54
|
/**
|
|
55
55
|
* @public
|
|
56
56
|
* The network output TTL.
|
|
@@ -129,7 +129,7 @@ export interface AddBridgeNetworkSourceRequest {
|
|
|
129
129
|
* @public
|
|
130
130
|
* The network source protocol.
|
|
131
131
|
*/
|
|
132
|
-
Protocol: Protocol |
|
|
132
|
+
Protocol: Protocol | undefined;
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
135
|
* @public
|
|
@@ -223,7 +223,7 @@ export interface FmtpRequest {
|
|
|
223
223
|
* @public
|
|
224
224
|
* The format that is used for the representation of color.
|
|
225
225
|
*/
|
|
226
|
-
Colorimetry?: Colorimetry
|
|
226
|
+
Colorimetry?: Colorimetry;
|
|
227
227
|
/**
|
|
228
228
|
* @public
|
|
229
229
|
* 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.
|
|
@@ -238,17 +238,17 @@ export interface FmtpRequest {
|
|
|
238
238
|
* @public
|
|
239
239
|
* The encoding range of the video.
|
|
240
240
|
*/
|
|
241
|
-
Range?: Range
|
|
241
|
+
Range?: Range;
|
|
242
242
|
/**
|
|
243
243
|
* @public
|
|
244
244
|
* The type of compression that was used to smooth the video’s appearance.
|
|
245
245
|
*/
|
|
246
|
-
ScanMode?: ScanMode
|
|
246
|
+
ScanMode?: ScanMode;
|
|
247
247
|
/**
|
|
248
248
|
* @public
|
|
249
249
|
* The transfer characteristic system (TCS) that is used in the video.
|
|
250
250
|
*/
|
|
251
|
-
Tcs?: Tcs
|
|
251
|
+
Tcs?: Tcs;
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
254
|
* @public
|
|
@@ -313,7 +313,7 @@ export interface AddMediaStreamRequest {
|
|
|
313
313
|
* @public
|
|
314
314
|
* The type of media stream.
|
|
315
315
|
*/
|
|
316
|
-
MediaStreamType: MediaStreamType |
|
|
316
|
+
MediaStreamType: MediaStreamType | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* @public
|
|
319
319
|
* The resolution of the video.
|
|
@@ -355,7 +355,7 @@ export interface Encryption {
|
|
|
355
355
|
* @public
|
|
356
356
|
* The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
|
|
357
357
|
*/
|
|
358
|
-
Algorithm?: Algorithm
|
|
358
|
+
Algorithm?: Algorithm;
|
|
359
359
|
/**
|
|
360
360
|
* @public
|
|
361
361
|
* 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.
|
|
@@ -370,7 +370,7 @@ export interface Encryption {
|
|
|
370
370
|
* @public
|
|
371
371
|
* The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
372
372
|
*/
|
|
373
|
-
KeyType?: KeyType
|
|
373
|
+
KeyType?: KeyType;
|
|
374
374
|
/**
|
|
375
375
|
* @public
|
|
376
376
|
* 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.
|
|
@@ -469,7 +469,7 @@ export interface EncodingParametersRequest {
|
|
|
469
469
|
* @public
|
|
470
470
|
* A setting on the encoder that drives compression settings. This property only applies to video media streams associated with outputs that use the ST 2110 JPEG XS protocol, if at least one source on the flow uses the CDI protocol.
|
|
471
471
|
*/
|
|
472
|
-
EncoderProfile: EncoderProfile |
|
|
472
|
+
EncoderProfile: EncoderProfile | undefined;
|
|
473
473
|
}
|
|
474
474
|
/**
|
|
475
475
|
* @public
|
|
@@ -485,7 +485,7 @@ export interface MediaStreamOutputConfigurationRequest {
|
|
|
485
485
|
* @public
|
|
486
486
|
* 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.
|
|
487
487
|
*/
|
|
488
|
-
EncodingName: EncodingName |
|
|
488
|
+
EncodingName: EncodingName | undefined;
|
|
489
489
|
/**
|
|
490
490
|
* @public
|
|
491
491
|
* 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.
|
|
@@ -551,7 +551,7 @@ export interface AddOutputRequest {
|
|
|
551
551
|
* @public
|
|
552
552
|
* The protocol to use for the output.
|
|
553
553
|
*/
|
|
554
|
-
Protocol: Protocol |
|
|
554
|
+
Protocol: Protocol | undefined;
|
|
555
555
|
/**
|
|
556
556
|
* @public
|
|
557
557
|
* The remote ID for the Zixi-pull output stream.
|
|
@@ -628,7 +628,7 @@ export interface BridgeNetworkOutput {
|
|
|
628
628
|
* @public
|
|
629
629
|
* The network output protocol.
|
|
630
630
|
*/
|
|
631
|
-
Protocol: Protocol |
|
|
631
|
+
Protocol: Protocol | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* @public
|
|
634
634
|
* The network output TTL.
|
|
@@ -706,7 +706,7 @@ export interface BridgeNetworkSource {
|
|
|
706
706
|
* @public
|
|
707
707
|
* The network source protocol.
|
|
708
708
|
*/
|
|
709
|
-
Protocol: Protocol |
|
|
709
|
+
Protocol: Protocol | undefined;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
712
712
|
* @public
|
|
@@ -802,7 +802,7 @@ export interface Entitlement {
|
|
|
802
802
|
* @public
|
|
803
803
|
* An indication of whether the entitlement is enabled.
|
|
804
804
|
*/
|
|
805
|
-
EntitlementStatus?: EntitlementStatus
|
|
805
|
+
EntitlementStatus?: EntitlementStatus;
|
|
806
806
|
/**
|
|
807
807
|
* @public
|
|
808
808
|
* The name of the entitlement.
|
|
@@ -854,7 +854,7 @@ export interface GrantEntitlementRequest {
|
|
|
854
854
|
* @public
|
|
855
855
|
* 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.
|
|
856
856
|
*/
|
|
857
|
-
EntitlementStatus?: EntitlementStatus
|
|
857
|
+
EntitlementStatus?: EntitlementStatus;
|
|
858
858
|
/**
|
|
859
859
|
* @public
|
|
860
860
|
* The name of the entitlement. This value must be unique within the current flow.
|
|
@@ -935,7 +935,7 @@ export interface ListedBridge {
|
|
|
935
935
|
* The ARN of the bridge.
|
|
936
936
|
*/
|
|
937
937
|
BridgeArn: string | undefined;
|
|
938
|
-
BridgeState: BridgeState |
|
|
938
|
+
BridgeState: BridgeState | undefined;
|
|
939
939
|
/**
|
|
940
940
|
* @public
|
|
941
941
|
* The type of the bridge.
|
|
@@ -999,7 +999,7 @@ export interface Maintenance {
|
|
|
999
999
|
* @public
|
|
1000
1000
|
* A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
1001
1001
|
*/
|
|
1002
|
-
MaintenanceDay?: MaintenanceDay
|
|
1002
|
+
MaintenanceDay?: MaintenanceDay;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* @public
|
|
1005
1005
|
* The Maintenance has to be performed before this deadline in ISO UTC format. Example: 2021-01-30T08:30:00Z.
|
|
@@ -1074,12 +1074,12 @@ export interface ListedFlow {
|
|
|
1074
1074
|
* @public
|
|
1075
1075
|
* The type of source. This value is either owned (originated somewhere other than an AWS Elemental MediaConnect flow owned by another AWS account) or entitled (originated at an AWS Elemental MediaConnect flow owned by another AWS account).
|
|
1076
1076
|
*/
|
|
1077
|
-
SourceType: SourceType |
|
|
1077
|
+
SourceType: SourceType | undefined;
|
|
1078
1078
|
/**
|
|
1079
1079
|
* @public
|
|
1080
1080
|
* The current status of the flow.
|
|
1081
1081
|
*/
|
|
1082
|
-
Status: Status |
|
|
1082
|
+
Status: Status | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* @public
|
|
1085
1085
|
* The maintenance setting of a flow
|
|
@@ -1112,7 +1112,7 @@ export interface ListedGateway {
|
|
|
1112
1112
|
* The Amazon Resource Name (ARN) of the gateway.
|
|
1113
1113
|
*/
|
|
1114
1114
|
GatewayArn: string | undefined;
|
|
1115
|
-
GatewayState: GatewayState |
|
|
1115
|
+
GatewayState: GatewayState | undefined;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* @public
|
|
1118
1118
|
* The name of the gateway.
|
|
@@ -1159,7 +1159,7 @@ export interface ListedGatewayInstance {
|
|
|
1159
1159
|
* @public
|
|
1160
1160
|
* The status of the instance.
|
|
1161
1161
|
*/
|
|
1162
|
-
InstanceState?: InstanceState
|
|
1162
|
+
InstanceState?: InstanceState;
|
|
1163
1163
|
}
|
|
1164
1164
|
/**
|
|
1165
1165
|
* @public
|
|
@@ -1175,7 +1175,7 @@ export interface Fmtp {
|
|
|
1175
1175
|
* @public
|
|
1176
1176
|
* The format that is used for the representation of color.
|
|
1177
1177
|
*/
|
|
1178
|
-
Colorimetry?: Colorimetry
|
|
1178
|
+
Colorimetry?: Colorimetry;
|
|
1179
1179
|
/**
|
|
1180
1180
|
* @public
|
|
1181
1181
|
* 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.
|
|
@@ -1190,17 +1190,17 @@ export interface Fmtp {
|
|
|
1190
1190
|
* @public
|
|
1191
1191
|
* The encoding range of the video.
|
|
1192
1192
|
*/
|
|
1193
|
-
Range?: Range
|
|
1193
|
+
Range?: Range;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* @public
|
|
1196
1196
|
* The type of compression that was used to smooth the video’s appearance
|
|
1197
1197
|
*/
|
|
1198
|
-
ScanMode?: ScanMode
|
|
1198
|
+
ScanMode?: ScanMode;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* @public
|
|
1201
1201
|
* The transfer characteristic system (TCS) that is used in the video.
|
|
1202
1202
|
*/
|
|
1203
|
-
Tcs?: Tcs
|
|
1203
|
+
Tcs?: Tcs;
|
|
1204
1204
|
}
|
|
1205
1205
|
/**
|
|
1206
1206
|
* @public
|
|
@@ -1257,7 +1257,7 @@ export interface MediaStream {
|
|
|
1257
1257
|
* @public
|
|
1258
1258
|
* The type of media stream.
|
|
1259
1259
|
*/
|
|
1260
|
-
MediaStreamType: MediaStreamType |
|
|
1260
|
+
MediaStreamType: MediaStreamType | undefined;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* @public
|
|
1263
1263
|
* The resolution of the video.
|
|
@@ -1278,7 +1278,7 @@ export interface EncodingParameters {
|
|
|
1278
1278
|
* @public
|
|
1279
1279
|
* A setting on the encoder that drives compression settings. This property only applies to video media streams associated with outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol.
|
|
1280
1280
|
*/
|
|
1281
|
-
EncoderProfile: EncoderProfile |
|
|
1281
|
+
EncoderProfile: EncoderProfile | undefined;
|
|
1282
1282
|
}
|
|
1283
1283
|
/**
|
|
1284
1284
|
* @public
|
|
@@ -1294,7 +1294,7 @@ export interface MediaStreamOutputConfiguration {
|
|
|
1294
1294
|
* @public
|
|
1295
1295
|
* 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.
|
|
1296
1296
|
*/
|
|
1297
|
-
EncodingName: EncodingName |
|
|
1297
|
+
EncodingName: EncodingName | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* @public
|
|
1300
1300
|
* Encoding parameters
|
|
@@ -1315,7 +1315,7 @@ export interface MediaStreamSourceConfiguration {
|
|
|
1315
1315
|
* @public
|
|
1316
1316
|
* 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.
|
|
1317
1317
|
*/
|
|
1318
|
-
EncodingName: EncodingName |
|
|
1318
|
+
EncodingName: EncodingName | undefined;
|
|
1319
1319
|
/**
|
|
1320
1320
|
* @public
|
|
1321
1321
|
* The transport parameters that are associated with an incoming media stream.
|
|
@@ -1336,7 +1336,7 @@ export interface MediaStreamSourceConfigurationRequest {
|
|
|
1336
1336
|
* @public
|
|
1337
1337
|
* The format you want to use 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.
|
|
1338
1338
|
*/
|
|
1339
|
-
EncodingName: EncodingName |
|
|
1339
|
+
EncodingName: EncodingName | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* @public
|
|
1342
1342
|
* The transport parameters that you want to associate with the media stream.
|
|
@@ -1415,7 +1415,7 @@ export interface ResourceSpecification {
|
|
|
1415
1415
|
* @public
|
|
1416
1416
|
* The type of resource and the unit that is being billed for.
|
|
1417
1417
|
*/
|
|
1418
|
-
ResourceType: ResourceType |
|
|
1418
|
+
ResourceType: ResourceType | undefined;
|
|
1419
1419
|
}
|
|
1420
1420
|
/**
|
|
1421
1421
|
* @public
|
|
@@ -1436,7 +1436,7 @@ export interface Offering {
|
|
|
1436
1436
|
* @public
|
|
1437
1437
|
* The unit of measurement for the duration of the offering.
|
|
1438
1438
|
*/
|
|
1439
|
-
DurationUnits: DurationUnits |
|
|
1439
|
+
DurationUnits: DurationUnits | undefined;
|
|
1440
1440
|
/**
|
|
1441
1441
|
* @public
|
|
1442
1442
|
* The Amazon Resource Name (ARN) that MediaConnect assigns to the offering.
|
|
@@ -1456,7 +1456,7 @@ export interface Offering {
|
|
|
1456
1456
|
* @public
|
|
1457
1457
|
* The unit of measurement that is used for billing. This value, in combination with pricePerUnit, makes up the rate.
|
|
1458
1458
|
*/
|
|
1459
|
-
PriceUnits: PriceUnits |
|
|
1459
|
+
PriceUnits: PriceUnits | undefined;
|
|
1460
1460
|
/**
|
|
1461
1461
|
* @public
|
|
1462
1462
|
* A definition of the amount of outbound bandwidth that you would be reserving if you purchase the offering.
|
|
@@ -1497,7 +1497,7 @@ export interface Transport {
|
|
|
1497
1497
|
* @public
|
|
1498
1498
|
* The protocol that is used by the source or output.
|
|
1499
1499
|
*/
|
|
1500
|
-
Protocol: Protocol |
|
|
1500
|
+
Protocol: Protocol | undefined;
|
|
1501
1501
|
/**
|
|
1502
1502
|
* @public
|
|
1503
1503
|
* The remote ID for the Zixi-pull stream.
|
|
@@ -1648,7 +1648,7 @@ export interface Reservation {
|
|
|
1648
1648
|
* @public
|
|
1649
1649
|
* The unit of measurement for the duration of the reservation. MediaConnect defines this value in the offering.
|
|
1650
1650
|
*/
|
|
1651
|
-
DurationUnits: DurationUnits |
|
|
1651
|
+
DurationUnits: DurationUnits | undefined;
|
|
1652
1652
|
/**
|
|
1653
1653
|
* @public
|
|
1654
1654
|
* The day and time that this reservation expires. This value is calculated based on the start date and time that you set and the offering's duration.
|
|
@@ -1673,7 +1673,7 @@ export interface Reservation {
|
|
|
1673
1673
|
* @public
|
|
1674
1674
|
* The unit of measurement that is used for billing. This value, in combination with pricePerUnit, makes up the rate. MediaConnect defines this value in the offering.
|
|
1675
1675
|
*/
|
|
1676
|
-
PriceUnits: PriceUnits |
|
|
1676
|
+
PriceUnits: PriceUnits | undefined;
|
|
1677
1677
|
/**
|
|
1678
1678
|
* @public
|
|
1679
1679
|
* The Amazon Resource Name (ARN) that MediaConnect assigns to the reservation when you purchase an offering.
|
|
@@ -1688,7 +1688,7 @@ export interface Reservation {
|
|
|
1688
1688
|
* @public
|
|
1689
1689
|
* The status of your reservation.
|
|
1690
1690
|
*/
|
|
1691
|
-
ReservationState: ReservationState |
|
|
1691
|
+
ReservationState: ReservationState | undefined;
|
|
1692
1692
|
/**
|
|
1693
1693
|
* @public
|
|
1694
1694
|
* A definition of the amount of outbound bandwidth that you would be reserving if you purchase the offering. MediaConnect defines the values that make up the resourceSpecification in the offering.
|
|
@@ -1775,7 +1775,7 @@ export interface SetSourceRequest {
|
|
|
1775
1775
|
* @public
|
|
1776
1776
|
* The protocol that is used by the source.
|
|
1777
1777
|
*/
|
|
1778
|
-
Protocol?: Protocol
|
|
1778
|
+
Protocol?: Protocol;
|
|
1779
1779
|
/**
|
|
1780
1780
|
* @public
|
|
1781
1781
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
@@ -1945,7 +1945,7 @@ export interface VpcInterface {
|
|
|
1945
1945
|
* @public
|
|
1946
1946
|
* The type of network interface.
|
|
1947
1947
|
*/
|
|
1948
|
-
NetworkInterfaceType: NetworkInterfaceType |
|
|
1948
|
+
NetworkInterfaceType: NetworkInterfaceType | undefined;
|
|
1949
1949
|
/**
|
|
1950
1950
|
* @public
|
|
1951
1951
|
* Role Arn MediaConnect can assumes to create ENIs in customer's account
|
|
@@ -1976,7 +1976,7 @@ export interface VpcInterfaceRequest {
|
|
|
1976
1976
|
* @public
|
|
1977
1977
|
* The type of network interface. If this value is not included in the request, MediaConnect uses ENA as the networkInterfaceType.
|
|
1978
1978
|
*/
|
|
1979
|
-
NetworkInterfaceType?: NetworkInterfaceType
|
|
1979
|
+
NetworkInterfaceType?: NetworkInterfaceType;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* @public
|
|
1982
1982
|
* Role Arn MediaConnect can assumes to create ENIs in customer's account
|
|
@@ -2349,7 +2349,7 @@ export interface AddMaintenance {
|
|
|
2349
2349
|
* @public
|
|
2350
2350
|
* A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
2351
2351
|
*/
|
|
2352
|
-
MaintenanceDay: MaintenanceDay |
|
|
2352
|
+
MaintenanceDay: MaintenanceDay | undefined;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* @public
|
|
2355
2355
|
* 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.
|
|
@@ -2435,7 +2435,7 @@ export interface FailoverConfig {
|
|
|
2435
2435
|
* @public
|
|
2436
2436
|
* 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.
|
|
2437
2437
|
*/
|
|
2438
|
-
FailoverMode?: FailoverMode
|
|
2438
|
+
FailoverMode?: FailoverMode;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* @public
|
|
2441
2441
|
* Search window time to look for dash-7 packets
|
|
@@ -2446,7 +2446,7 @@ export interface FailoverConfig {
|
|
|
2446
2446
|
* The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
|
|
2447
2447
|
*/
|
|
2448
2448
|
SourcePriority?: SourcePriority;
|
|
2449
|
-
State?: State
|
|
2449
|
+
State?: State;
|
|
2450
2450
|
}
|
|
2451
2451
|
/**
|
|
2452
2452
|
* @public
|
|
@@ -2459,7 +2459,7 @@ export interface Bridge {
|
|
|
2459
2459
|
*/
|
|
2460
2460
|
BridgeArn: string | undefined;
|
|
2461
2461
|
BridgeMessages?: MessageDetail[];
|
|
2462
|
-
BridgeState: BridgeState |
|
|
2462
|
+
BridgeState: BridgeState | undefined;
|
|
2463
2463
|
EgressGatewayBridge?: EgressGatewayBridge;
|
|
2464
2464
|
IngressGatewayBridge?: IngressGatewayBridge;
|
|
2465
2465
|
/**
|
|
@@ -2709,7 +2709,7 @@ export interface Flow {
|
|
|
2709
2709
|
* @public
|
|
2710
2710
|
* The current status of the flow.
|
|
2711
2711
|
*/
|
|
2712
|
-
Status: Status |
|
|
2712
|
+
Status: Status | undefined;
|
|
2713
2713
|
/**
|
|
2714
2714
|
* @public
|
|
2715
2715
|
* The VPC Interfaces for this flow.
|
|
@@ -2789,7 +2789,7 @@ export interface Gateway {
|
|
|
2789
2789
|
* @public
|
|
2790
2790
|
* The current status of the gateway.
|
|
2791
2791
|
*/
|
|
2792
|
-
GatewayState?: GatewayState
|
|
2792
|
+
GatewayState?: GatewayState;
|
|
2793
2793
|
/**
|
|
2794
2794
|
* @public
|
|
2795
2795
|
* The name of the gateway. This name can not be modified after the gateway is created.
|
|
@@ -2854,7 +2854,7 @@ export interface DeleteFlowResponse {
|
|
|
2854
2854
|
* @public
|
|
2855
2855
|
* The status of the flow when the DeleteFlow process begins.
|
|
2856
2856
|
*/
|
|
2857
|
-
Status?: Status
|
|
2857
|
+
Status?: Status;
|
|
2858
2858
|
}
|
|
2859
2859
|
/**
|
|
2860
2860
|
* @public
|
|
@@ -2904,7 +2904,7 @@ export interface DeregisterGatewayInstanceResponse {
|
|
|
2904
2904
|
* @public
|
|
2905
2905
|
* The status of the instance.
|
|
2906
2906
|
*/
|
|
2907
|
-
InstanceState?: InstanceState
|
|
2907
|
+
InstanceState?: InstanceState;
|
|
2908
2908
|
}
|
|
2909
2909
|
/**
|
|
2910
2910
|
* @public
|
|
@@ -3001,12 +3001,12 @@ export interface GatewayInstance {
|
|
|
3001
3001
|
* @public
|
|
3002
3002
|
* 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.
|
|
3003
3003
|
*/
|
|
3004
|
-
BridgePlacement: BridgePlacement |
|
|
3004
|
+
BridgePlacement: BridgePlacement | undefined;
|
|
3005
3005
|
/**
|
|
3006
3006
|
* @public
|
|
3007
3007
|
* The connection state of the instance.
|
|
3008
3008
|
*/
|
|
3009
|
-
ConnectionStatus: ConnectionStatus |
|
|
3009
|
+
ConnectionStatus: ConnectionStatus | undefined;
|
|
3010
3010
|
/**
|
|
3011
3011
|
* @public
|
|
3012
3012
|
* The Amazon Resource Name (ARN) of the instance.
|
|
@@ -3027,7 +3027,7 @@ export interface GatewayInstance {
|
|
|
3027
3027
|
* @public
|
|
3028
3028
|
* The status of the instance.
|
|
3029
3029
|
*/
|
|
3030
|
-
InstanceState: InstanceState |
|
|
3030
|
+
InstanceState: InstanceState | undefined;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* @public
|
|
3033
3033
|
* The running bridge count.
|
|
@@ -3638,7 +3638,7 @@ export interface StartFlowResponse {
|
|
|
3638
3638
|
* @public
|
|
3639
3639
|
* The status of the flow when the StartFlow process begins.
|
|
3640
3640
|
*/
|
|
3641
|
-
Status?: Status
|
|
3641
|
+
Status?: Status;
|
|
3642
3642
|
}
|
|
3643
3643
|
/**
|
|
3644
3644
|
* @public
|
|
@@ -3663,7 +3663,7 @@ export interface StopFlowResponse {
|
|
|
3663
3663
|
* @public
|
|
3664
3664
|
* The status of the flow when the StopFlow process begins.
|
|
3665
3665
|
*/
|
|
3666
|
-
Status?: Status
|
|
3666
|
+
Status?: Status;
|
|
3667
3667
|
}
|
|
3668
3668
|
/**
|
|
3669
3669
|
* @public
|
|
@@ -3730,7 +3730,7 @@ export interface UpdateFailoverConfig {
|
|
|
3730
3730
|
* @public
|
|
3731
3731
|
* 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.
|
|
3732
3732
|
*/
|
|
3733
|
-
FailoverMode?: FailoverMode
|
|
3733
|
+
FailoverMode?: FailoverMode;
|
|
3734
3734
|
/**
|
|
3735
3735
|
* @public
|
|
3736
3736
|
* Recovery window time to look for dash-7 packets
|
|
@@ -3741,7 +3741,7 @@ export interface UpdateFailoverConfig {
|
|
|
3741
3741
|
* The priority you want to assign to a source. You can have a primary stream and a backup stream or two equally prioritized streams.
|
|
3742
3742
|
*/
|
|
3743
3743
|
SourcePriority?: SourcePriority;
|
|
3744
|
-
State?: State
|
|
3744
|
+
State?: State;
|
|
3745
3745
|
}
|
|
3746
3746
|
/**
|
|
3747
3747
|
* @public
|
|
@@ -3795,7 +3795,7 @@ export interface UpdateBridgeNetworkOutputRequest {
|
|
|
3795
3795
|
* @public
|
|
3796
3796
|
* The network output protocol.
|
|
3797
3797
|
*/
|
|
3798
|
-
Protocol?: Protocol
|
|
3798
|
+
Protocol?: Protocol;
|
|
3799
3799
|
/**
|
|
3800
3800
|
* @public
|
|
3801
3801
|
* The network output TTL.
|
|
@@ -3878,7 +3878,7 @@ export interface UpdateBridgeNetworkSourceRequest {
|
|
|
3878
3878
|
* @public
|
|
3879
3879
|
* The network source protocol.
|
|
3880
3880
|
*/
|
|
3881
|
-
Protocol?: Protocol
|
|
3881
|
+
Protocol?: Protocol;
|
|
3882
3882
|
}
|
|
3883
3883
|
/**
|
|
3884
3884
|
* @public
|
|
@@ -3931,7 +3931,7 @@ export interface UpdateBridgeStateRequest {
|
|
|
3931
3931
|
* The ARN of the bridge that you want to update.
|
|
3932
3932
|
*/
|
|
3933
3933
|
BridgeArn: string | undefined;
|
|
3934
|
-
DesiredState: DesiredState |
|
|
3934
|
+
DesiredState: DesiredState | undefined;
|
|
3935
3935
|
}
|
|
3936
3936
|
/**
|
|
3937
3937
|
* @public
|
|
@@ -3946,7 +3946,7 @@ export interface UpdateBridgeStateResponse {
|
|
|
3946
3946
|
* @public
|
|
3947
3947
|
* The state of the bridge. ACTIVE or STANDBY.
|
|
3948
3948
|
*/
|
|
3949
|
-
DesiredState?: DesiredState
|
|
3949
|
+
DesiredState?: DesiredState;
|
|
3950
3950
|
}
|
|
3951
3951
|
/**
|
|
3952
3952
|
* @public
|
|
@@ -3957,7 +3957,7 @@ export interface UpdateMaintenance {
|
|
|
3957
3957
|
* @public
|
|
3958
3958
|
* A day of a week when the maintenance will happen. use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
3959
3959
|
*/
|
|
3960
|
-
MaintenanceDay?: MaintenanceDay
|
|
3960
|
+
MaintenanceDay?: MaintenanceDay;
|
|
3961
3961
|
/**
|
|
3962
3962
|
* @public
|
|
3963
3963
|
* A scheduled date in ISO UTC format when the maintenance will happen. Use YYYY-MM-DD format. Example: 2021-01-30.
|
|
@@ -4009,7 +4009,7 @@ export interface UpdateEncryption {
|
|
|
4009
4009
|
* @public
|
|
4010
4010
|
* The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
|
|
4011
4011
|
*/
|
|
4012
|
-
Algorithm?: Algorithm
|
|
4012
|
+
Algorithm?: Algorithm;
|
|
4013
4013
|
/**
|
|
4014
4014
|
* @public
|
|
4015
4015
|
* 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.
|
|
@@ -4024,7 +4024,7 @@ export interface UpdateEncryption {
|
|
|
4024
4024
|
* @public
|
|
4025
4025
|
* The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
|
|
4026
4026
|
*/
|
|
4027
|
-
KeyType?: KeyType
|
|
4027
|
+
KeyType?: KeyType;
|
|
4028
4028
|
/**
|
|
4029
4029
|
* @public
|
|
4030
4030
|
* 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.
|
|
@@ -4075,7 +4075,7 @@ export interface UpdateFlowEntitlementRequest {
|
|
|
4075
4075
|
* @public
|
|
4076
4076
|
* 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.
|
|
4077
4077
|
*/
|
|
4078
|
-
EntitlementStatus?: EntitlementStatus
|
|
4078
|
+
EntitlementStatus?: EntitlementStatus;
|
|
4079
4079
|
/**
|
|
4080
4080
|
* @public
|
|
4081
4081
|
* The flow that is associated with the entitlement that you want to update.
|
|
@@ -4136,7 +4136,7 @@ export interface UpdateFlowMediaStreamRequest {
|
|
|
4136
4136
|
* @public
|
|
4137
4137
|
* The type of media stream.
|
|
4138
4138
|
*/
|
|
4139
|
-
MediaStreamType?: MediaStreamType
|
|
4139
|
+
MediaStreamType?: MediaStreamType;
|
|
4140
4140
|
/**
|
|
4141
4141
|
* @public
|
|
4142
4142
|
* The resolution of the video.
|
|
@@ -4217,7 +4217,7 @@ export interface UpdateFlowOutputRequest {
|
|
|
4217
4217
|
* @public
|
|
4218
4218
|
* The protocol to use for the output.
|
|
4219
4219
|
*/
|
|
4220
|
-
Protocol?: Protocol
|
|
4220
|
+
Protocol?: Protocol;
|
|
4221
4221
|
/**
|
|
4222
4222
|
* @public
|
|
4223
4223
|
* The remote ID for the Zixi-pull stream.
|
|
@@ -4339,7 +4339,7 @@ export interface UpdateFlowSourceRequest {
|
|
|
4339
4339
|
* @public
|
|
4340
4340
|
* The protocol that is used by the source.
|
|
4341
4341
|
*/
|
|
4342
|
-
Protocol?: Protocol
|
|
4342
|
+
Protocol?: Protocol;
|
|
4343
4343
|
/**
|
|
4344
4344
|
* @public
|
|
4345
4345
|
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
@@ -4410,7 +4410,7 @@ export interface UpdateGatewayInstanceRequest {
|
|
|
4410
4410
|
* @public
|
|
4411
4411
|
* 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.
|
|
4412
4412
|
*/
|
|
4413
|
-
BridgePlacement?: BridgePlacement
|
|
4413
|
+
BridgePlacement?: BridgePlacement;
|
|
4414
4414
|
/**
|
|
4415
4415
|
* @public
|
|
4416
4416
|
* The Amazon Resource Name (ARN) of the instance that you want to update.
|
|
@@ -4425,7 +4425,7 @@ export interface UpdateGatewayInstanceResponse {
|
|
|
4425
4425
|
* @public
|
|
4426
4426
|
* 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.
|
|
4427
4427
|
*/
|
|
4428
|
-
BridgePlacement?: BridgePlacement
|
|
4428
|
+
BridgePlacement?: BridgePlacement;
|
|
4429
4429
|
/**
|
|
4430
4430
|
* @public
|
|
4431
4431
|
* The Amazon Resource Name (ARN) of the instance.
|
|
@@ -19,7 +19,7 @@ export interface AddBridgeNetworkOutputRequest {
|
|
|
19
19
|
Name: string | undefined;
|
|
20
20
|
NetworkName: string | undefined;
|
|
21
21
|
Port: number | undefined;
|
|
22
|
-
Protocol: Protocol |
|
|
22
|
+
Protocol: Protocol | undefined;
|
|
23
23
|
Ttl: number | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface AddBridgeOutputRequest {
|
|
@@ -38,7 +38,7 @@ export interface AddBridgeNetworkSourceRequest {
|
|
|
38
38
|
Name: string | undefined;
|
|
39
39
|
NetworkName: string | undefined;
|
|
40
40
|
Port: number | undefined;
|
|
41
|
-
Protocol: Protocol |
|
|
41
|
+
Protocol: Protocol | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface AddBridgeSourceRequest {
|
|
44
44
|
FlowSource?: AddBridgeFlowSourceRequest;
|
|
@@ -80,12 +80,12 @@ export declare const Tcs: {
|
|
|
80
80
|
export type Tcs = (typeof Tcs)[keyof typeof Tcs];
|
|
81
81
|
export interface FmtpRequest {
|
|
82
82
|
ChannelOrder?: string;
|
|
83
|
-
Colorimetry?: Colorimetry
|
|
83
|
+
Colorimetry?: Colorimetry;
|
|
84
84
|
ExactFramerate?: string;
|
|
85
85
|
Par?: string;
|
|
86
|
-
Range?: Range
|
|
87
|
-
ScanMode?: ScanMode
|
|
88
|
-
Tcs?: Tcs
|
|
86
|
+
Range?: Range;
|
|
87
|
+
ScanMode?: ScanMode;
|
|
88
|
+
Tcs?: Tcs;
|
|
89
89
|
}
|
|
90
90
|
export interface MediaStreamAttributesRequest {
|
|
91
91
|
Fmtp?: FmtpRequest;
|
|
@@ -104,7 +104,7 @@ export interface AddMediaStreamRequest {
|
|
|
104
104
|
Description?: string;
|
|
105
105
|
MediaStreamId: number | undefined;
|
|
106
106
|
MediaStreamName: string | undefined;
|
|
107
|
-
MediaStreamType: MediaStreamType |
|
|
107
|
+
MediaStreamType: MediaStreamType | undefined;
|
|
108
108
|
VideoFormat?: string;
|
|
109
109
|
}
|
|
110
110
|
export declare const Algorithm: {
|
|
@@ -120,10 +120,10 @@ export declare const KeyType: {
|
|
|
120
120
|
};
|
|
121
121
|
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
122
122
|
export interface Encryption {
|
|
123
|
-
Algorithm?: Algorithm
|
|
123
|
+
Algorithm?: Algorithm;
|
|
124
124
|
ConstantInitializationVector?: string;
|
|
125
125
|
DeviceId?: string;
|
|
126
|
-
KeyType?: KeyType
|
|
126
|
+
KeyType?: KeyType;
|
|
127
127
|
Region?: string;
|
|
128
128
|
ResourceId?: string;
|
|
129
129
|
RoleArn: string | undefined;
|
|
@@ -153,11 +153,11 @@ export type EncoderProfile =
|
|
|
153
153
|
(typeof EncoderProfile)[keyof typeof EncoderProfile];
|
|
154
154
|
export interface EncodingParametersRequest {
|
|
155
155
|
CompressionFactor: number | undefined;
|
|
156
|
-
EncoderProfile: EncoderProfile |
|
|
156
|
+
EncoderProfile: EncoderProfile | undefined;
|
|
157
157
|
}
|
|
158
158
|
export interface MediaStreamOutputConfigurationRequest {
|
|
159
159
|
DestinationConfigurations?: DestinationConfigurationRequest[];
|
|
160
|
-
EncodingName: EncodingName |
|
|
160
|
+
EncodingName: EncodingName | undefined;
|
|
161
161
|
EncodingParameters?: EncodingParametersRequest;
|
|
162
162
|
MediaStreamName: string | undefined;
|
|
163
163
|
}
|
|
@@ -171,7 +171,7 @@ export interface AddOutputRequest {
|
|
|
171
171
|
MinLatency?: number;
|
|
172
172
|
Name?: string;
|
|
173
173
|
Port?: number;
|
|
174
|
-
Protocol: Protocol |
|
|
174
|
+
Protocol: Protocol | undefined;
|
|
175
175
|
RemoteId?: string;
|
|
176
176
|
SenderControlPort?: number;
|
|
177
177
|
SmoothingLatency?: number;
|
|
@@ -188,7 +188,7 @@ export interface BridgeNetworkOutput {
|
|
|
188
188
|
Name: string | undefined;
|
|
189
189
|
NetworkName: string | undefined;
|
|
190
190
|
Port: number | undefined;
|
|
191
|
-
Protocol: Protocol |
|
|
191
|
+
Protocol: Protocol | undefined;
|
|
192
192
|
Ttl: number | undefined;
|
|
193
193
|
}
|
|
194
194
|
export interface BridgeOutput {
|
|
@@ -206,7 +206,7 @@ export interface BridgeNetworkSource {
|
|
|
206
206
|
Name: string | undefined;
|
|
207
207
|
NetworkName: string | undefined;
|
|
208
208
|
Port: number | undefined;
|
|
209
|
-
Protocol: Protocol |
|
|
209
|
+
Protocol: Protocol | undefined;
|
|
210
210
|
}
|
|
211
211
|
export interface BridgeSource {
|
|
212
212
|
FlowSource?: BridgeFlowSource;
|
|
@@ -232,7 +232,7 @@ export interface Entitlement {
|
|
|
232
232
|
Description?: string;
|
|
233
233
|
Encryption?: Encryption;
|
|
234
234
|
EntitlementArn: string | undefined;
|
|
235
|
-
EntitlementStatus?: EntitlementStatus
|
|
235
|
+
EntitlementStatus?: EntitlementStatus;
|
|
236
236
|
Name: string | undefined;
|
|
237
237
|
Subscribers: string[] | undefined;
|
|
238
238
|
}
|
|
@@ -244,7 +244,7 @@ export interface GrantEntitlementRequest {
|
|
|
244
244
|
DataTransferSubscriberFeePercent?: number;
|
|
245
245
|
Description?: string;
|
|
246
246
|
Encryption?: Encryption;
|
|
247
|
-
EntitlementStatus?: EntitlementStatus
|
|
247
|
+
EntitlementStatus?: EntitlementStatus;
|
|
248
248
|
Name?: string;
|
|
249
249
|
Subscribers: string[] | undefined;
|
|
250
250
|
}
|
|
@@ -274,7 +274,7 @@ export declare const BridgeState: {
|
|
|
274
274
|
export type BridgeState = (typeof BridgeState)[keyof typeof BridgeState];
|
|
275
275
|
export interface ListedBridge {
|
|
276
276
|
BridgeArn: string | undefined;
|
|
277
|
-
BridgeState: BridgeState |
|
|
277
|
+
BridgeState: BridgeState | undefined;
|
|
278
278
|
BridgeType: string | undefined;
|
|
279
279
|
Name: string | undefined;
|
|
280
280
|
PlacementArn: string | undefined;
|
|
@@ -296,7 +296,7 @@ export declare const MaintenanceDay: {
|
|
|
296
296
|
export type MaintenanceDay =
|
|
297
297
|
(typeof MaintenanceDay)[keyof typeof MaintenanceDay];
|
|
298
298
|
export interface Maintenance {
|
|
299
|
-
MaintenanceDay?: MaintenanceDay
|
|
299
|
+
MaintenanceDay?: MaintenanceDay;
|
|
300
300
|
MaintenanceDeadline?: string;
|
|
301
301
|
MaintenanceScheduledDate?: string;
|
|
302
302
|
MaintenanceStartHour?: string;
|
|
@@ -321,8 +321,8 @@ export interface ListedFlow {
|
|
|
321
321
|
Description: string | undefined;
|
|
322
322
|
FlowArn: string | undefined;
|
|
323
323
|
Name: string | undefined;
|
|
324
|
-
SourceType: SourceType |
|
|
325
|
-
Status: Status |
|
|
324
|
+
SourceType: SourceType | undefined;
|
|
325
|
+
Status: Status | undefined;
|
|
326
326
|
Maintenance?: Maintenance;
|
|
327
327
|
}
|
|
328
328
|
export declare const GatewayState: {
|
|
@@ -336,7 +336,7 @@ export declare const GatewayState: {
|
|
|
336
336
|
export type GatewayState = (typeof GatewayState)[keyof typeof GatewayState];
|
|
337
337
|
export interface ListedGateway {
|
|
338
338
|
GatewayArn: string | undefined;
|
|
339
|
-
GatewayState: GatewayState |
|
|
339
|
+
GatewayState: GatewayState | undefined;
|
|
340
340
|
Name: string | undefined;
|
|
341
341
|
}
|
|
342
342
|
export declare const InstanceState: {
|
|
@@ -352,16 +352,16 @@ export interface ListedGatewayInstance {
|
|
|
352
352
|
GatewayArn: string | undefined;
|
|
353
353
|
GatewayInstanceArn: string | undefined;
|
|
354
354
|
InstanceId: string | undefined;
|
|
355
|
-
InstanceState?: InstanceState
|
|
355
|
+
InstanceState?: InstanceState;
|
|
356
356
|
}
|
|
357
357
|
export interface Fmtp {
|
|
358
358
|
ChannelOrder?: string;
|
|
359
|
-
Colorimetry?: Colorimetry
|
|
359
|
+
Colorimetry?: Colorimetry;
|
|
360
360
|
ExactFramerate?: string;
|
|
361
361
|
Par?: string;
|
|
362
|
-
Range?: Range
|
|
363
|
-
ScanMode?: ScanMode
|
|
364
|
-
Tcs?: Tcs
|
|
362
|
+
Range?: Range;
|
|
363
|
+
ScanMode?: ScanMode;
|
|
364
|
+
Tcs?: Tcs;
|
|
365
365
|
}
|
|
366
366
|
export interface MediaStreamAttributes {
|
|
367
367
|
Fmtp: Fmtp | undefined;
|
|
@@ -374,26 +374,26 @@ export interface MediaStream {
|
|
|
374
374
|
Fmt: number | undefined;
|
|
375
375
|
MediaStreamId: number | undefined;
|
|
376
376
|
MediaStreamName: string | undefined;
|
|
377
|
-
MediaStreamType: MediaStreamType |
|
|
377
|
+
MediaStreamType: MediaStreamType | undefined;
|
|
378
378
|
VideoFormat?: string;
|
|
379
379
|
}
|
|
380
380
|
export interface EncodingParameters {
|
|
381
381
|
CompressionFactor: number | undefined;
|
|
382
|
-
EncoderProfile: EncoderProfile |
|
|
382
|
+
EncoderProfile: EncoderProfile | undefined;
|
|
383
383
|
}
|
|
384
384
|
export interface MediaStreamOutputConfiguration {
|
|
385
385
|
DestinationConfigurations?: DestinationConfiguration[];
|
|
386
|
-
EncodingName: EncodingName |
|
|
386
|
+
EncodingName: EncodingName | undefined;
|
|
387
387
|
EncodingParameters?: EncodingParameters;
|
|
388
388
|
MediaStreamName: string | undefined;
|
|
389
389
|
}
|
|
390
390
|
export interface MediaStreamSourceConfiguration {
|
|
391
|
-
EncodingName: EncodingName |
|
|
391
|
+
EncodingName: EncodingName | undefined;
|
|
392
392
|
InputConfigurations?: InputConfiguration[];
|
|
393
393
|
MediaStreamName: string | undefined;
|
|
394
394
|
}
|
|
395
395
|
export interface MediaStreamSourceConfigurationRequest {
|
|
396
|
-
EncodingName: EncodingName |
|
|
396
|
+
EncodingName: EncodingName | undefined;
|
|
397
397
|
InputConfigurations?: InputConfigurationRequest[];
|
|
398
398
|
MediaStreamName: string | undefined;
|
|
399
399
|
}
|
|
@@ -416,16 +416,16 @@ export declare const ResourceType: {
|
|
|
416
416
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
417
417
|
export interface ResourceSpecification {
|
|
418
418
|
ReservedBitrate?: number;
|
|
419
|
-
ResourceType: ResourceType |
|
|
419
|
+
ResourceType: ResourceType | undefined;
|
|
420
420
|
}
|
|
421
421
|
export interface Offering {
|
|
422
422
|
CurrencyCode: string | undefined;
|
|
423
423
|
Duration: number | undefined;
|
|
424
|
-
DurationUnits: DurationUnits |
|
|
424
|
+
DurationUnits: DurationUnits | undefined;
|
|
425
425
|
OfferingArn: string | undefined;
|
|
426
426
|
OfferingDescription: string | undefined;
|
|
427
427
|
PricePerUnit: string | undefined;
|
|
428
|
-
PriceUnits: PriceUnits |
|
|
428
|
+
PriceUnits: PriceUnits | undefined;
|
|
429
429
|
ResourceSpecification: ResourceSpecification | undefined;
|
|
430
430
|
}
|
|
431
431
|
export interface Transport {
|
|
@@ -434,7 +434,7 @@ export interface Transport {
|
|
|
434
434
|
MaxLatency?: number;
|
|
435
435
|
MaxSyncBuffer?: number;
|
|
436
436
|
MinLatency?: number;
|
|
437
|
-
Protocol: Protocol |
|
|
437
|
+
Protocol: Protocol | undefined;
|
|
438
438
|
RemoteId?: string;
|
|
439
439
|
SenderControlPort?: number;
|
|
440
440
|
SenderIpAddress?: string;
|
|
@@ -471,15 +471,15 @@ export type ReservationState =
|
|
|
471
471
|
export interface Reservation {
|
|
472
472
|
CurrencyCode: string | undefined;
|
|
473
473
|
Duration: number | undefined;
|
|
474
|
-
DurationUnits: DurationUnits |
|
|
474
|
+
DurationUnits: DurationUnits | undefined;
|
|
475
475
|
End: string | undefined;
|
|
476
476
|
OfferingArn: string | undefined;
|
|
477
477
|
OfferingDescription: string | undefined;
|
|
478
478
|
PricePerUnit: string | undefined;
|
|
479
|
-
PriceUnits: PriceUnits |
|
|
479
|
+
PriceUnits: PriceUnits | undefined;
|
|
480
480
|
ReservationArn: string | undefined;
|
|
481
481
|
ReservationName: string | undefined;
|
|
482
|
-
ReservationState: ReservationState |
|
|
482
|
+
ReservationState: ReservationState | undefined;
|
|
483
483
|
ResourceSpecification: ResourceSpecification | undefined;
|
|
484
484
|
Start: string | undefined;
|
|
485
485
|
}
|
|
@@ -498,7 +498,7 @@ export interface SetSourceRequest {
|
|
|
498
498
|
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
|
|
499
499
|
MinLatency?: number;
|
|
500
500
|
Name?: string;
|
|
501
|
-
Protocol?: Protocol
|
|
501
|
+
Protocol?: Protocol;
|
|
502
502
|
SenderControlPort?: number;
|
|
503
503
|
SenderIpAddress?: string;
|
|
504
504
|
SourceListenerAddress?: string;
|
|
@@ -538,14 +538,14 @@ export type NetworkInterfaceType =
|
|
|
538
538
|
export interface VpcInterface {
|
|
539
539
|
Name: string | undefined;
|
|
540
540
|
NetworkInterfaceIds: string[] | undefined;
|
|
541
|
-
NetworkInterfaceType: NetworkInterfaceType |
|
|
541
|
+
NetworkInterfaceType: NetworkInterfaceType | undefined;
|
|
542
542
|
RoleArn: string | undefined;
|
|
543
543
|
SecurityGroupIds: string[] | undefined;
|
|
544
544
|
SubnetId: string | undefined;
|
|
545
545
|
}
|
|
546
546
|
export interface VpcInterfaceRequest {
|
|
547
547
|
Name: string | undefined;
|
|
548
|
-
NetworkInterfaceType?: NetworkInterfaceType
|
|
548
|
+
NetworkInterfaceType?: NetworkInterfaceType;
|
|
549
549
|
RoleArn: string | undefined;
|
|
550
550
|
SecurityGroupIds: string[] | undefined;
|
|
551
551
|
SubnetId: string | undefined;
|
|
@@ -664,7 +664,7 @@ export interface AddIngressGatewayBridgeRequest {
|
|
|
664
664
|
MaxOutputs: number | undefined;
|
|
665
665
|
}
|
|
666
666
|
export interface AddMaintenance {
|
|
667
|
-
MaintenanceDay: MaintenanceDay |
|
|
667
|
+
MaintenanceDay: MaintenanceDay | undefined;
|
|
668
668
|
MaintenanceStartHour: string | undefined;
|
|
669
669
|
}
|
|
670
670
|
export interface EgressGatewayBridge {
|
|
@@ -690,15 +690,15 @@ export declare const State: {
|
|
|
690
690
|
};
|
|
691
691
|
export type State = (typeof State)[keyof typeof State];
|
|
692
692
|
export interface FailoverConfig {
|
|
693
|
-
FailoverMode?: FailoverMode
|
|
693
|
+
FailoverMode?: FailoverMode;
|
|
694
694
|
RecoveryWindow?: number;
|
|
695
695
|
SourcePriority?: SourcePriority;
|
|
696
|
-
State?: State
|
|
696
|
+
State?: State;
|
|
697
697
|
}
|
|
698
698
|
export interface Bridge {
|
|
699
699
|
BridgeArn: string | undefined;
|
|
700
700
|
BridgeMessages?: MessageDetail[];
|
|
701
|
-
BridgeState: BridgeState |
|
|
701
|
+
BridgeState: BridgeState | undefined;
|
|
702
702
|
EgressGatewayBridge?: EgressGatewayBridge;
|
|
703
703
|
IngressGatewayBridge?: IngressGatewayBridge;
|
|
704
704
|
Name: string | undefined;
|
|
@@ -771,7 +771,7 @@ export interface Flow {
|
|
|
771
771
|
Source: Source | undefined;
|
|
772
772
|
SourceFailoverConfig?: FailoverConfig;
|
|
773
773
|
Sources?: Source[];
|
|
774
|
-
Status: Status |
|
|
774
|
+
Status: Status | undefined;
|
|
775
775
|
VpcInterfaces?: VpcInterface[];
|
|
776
776
|
Maintenance?: Maintenance;
|
|
777
777
|
}
|
|
@@ -795,7 +795,7 @@ export interface Gateway {
|
|
|
795
795
|
EgressCidrBlocks: string[] | undefined;
|
|
796
796
|
GatewayArn: string | undefined;
|
|
797
797
|
GatewayMessages?: MessageDetail[];
|
|
798
|
-
GatewayState?: GatewayState
|
|
798
|
+
GatewayState?: GatewayState;
|
|
799
799
|
Name: string | undefined;
|
|
800
800
|
Networks: GatewayNetwork[] | undefined;
|
|
801
801
|
}
|
|
@@ -813,7 +813,7 @@ export interface DeleteFlowRequest {
|
|
|
813
813
|
}
|
|
814
814
|
export interface DeleteFlowResponse {
|
|
815
815
|
FlowArn?: string;
|
|
816
|
-
Status?: Status
|
|
816
|
+
Status?: Status;
|
|
817
817
|
}
|
|
818
818
|
export interface DeleteGatewayRequest {
|
|
819
819
|
GatewayArn: string | undefined;
|
|
@@ -827,7 +827,7 @@ export interface DeregisterGatewayInstanceRequest {
|
|
|
827
827
|
}
|
|
828
828
|
export interface DeregisterGatewayInstanceResponse {
|
|
829
829
|
GatewayInstanceArn?: string;
|
|
830
|
-
InstanceState?: InstanceState
|
|
830
|
+
InstanceState?: InstanceState;
|
|
831
831
|
}
|
|
832
832
|
export interface DescribeBridgeRequest {
|
|
833
833
|
BridgeArn: string | undefined;
|
|
@@ -855,13 +855,13 @@ export interface DescribeGatewayInstanceRequest {
|
|
|
855
855
|
GatewayInstanceArn: string | undefined;
|
|
856
856
|
}
|
|
857
857
|
export interface GatewayInstance {
|
|
858
|
-
BridgePlacement: BridgePlacement |
|
|
859
|
-
ConnectionStatus: ConnectionStatus |
|
|
858
|
+
BridgePlacement: BridgePlacement | undefined;
|
|
859
|
+
ConnectionStatus: ConnectionStatus | undefined;
|
|
860
860
|
GatewayArn: string | undefined;
|
|
861
861
|
GatewayInstanceArn: string | undefined;
|
|
862
862
|
InstanceId: string | undefined;
|
|
863
863
|
InstanceMessages?: MessageDetail[];
|
|
864
|
-
InstanceState: InstanceState |
|
|
864
|
+
InstanceState: InstanceState | undefined;
|
|
865
865
|
RunningBridgeCount: number | undefined;
|
|
866
866
|
}
|
|
867
867
|
export interface DescribeGatewayInstanceResponse {
|
|
@@ -1038,14 +1038,14 @@ export interface StartFlowRequest {
|
|
|
1038
1038
|
}
|
|
1039
1039
|
export interface StartFlowResponse {
|
|
1040
1040
|
FlowArn?: string;
|
|
1041
|
-
Status?: Status
|
|
1041
|
+
Status?: Status;
|
|
1042
1042
|
}
|
|
1043
1043
|
export interface StopFlowRequest {
|
|
1044
1044
|
FlowArn: string | undefined;
|
|
1045
1045
|
}
|
|
1046
1046
|
export interface StopFlowResponse {
|
|
1047
1047
|
FlowArn?: string;
|
|
1048
|
-
Status?: Status
|
|
1048
|
+
Status?: Status;
|
|
1049
1049
|
}
|
|
1050
1050
|
export interface TagResourceRequest {
|
|
1051
1051
|
ResourceArn: string | undefined;
|
|
@@ -1063,10 +1063,10 @@ export interface UpdateIngressGatewayBridgeRequest {
|
|
|
1063
1063
|
MaxOutputs?: number;
|
|
1064
1064
|
}
|
|
1065
1065
|
export interface UpdateFailoverConfig {
|
|
1066
|
-
FailoverMode?: FailoverMode
|
|
1066
|
+
FailoverMode?: FailoverMode;
|
|
1067
1067
|
RecoveryWindow?: number;
|
|
1068
1068
|
SourcePriority?: SourcePriority;
|
|
1069
|
-
State?: State
|
|
1069
|
+
State?: State;
|
|
1070
1070
|
}
|
|
1071
1071
|
export interface UpdateBridgeRequest {
|
|
1072
1072
|
BridgeArn: string | undefined;
|
|
@@ -1081,7 +1081,7 @@ export interface UpdateBridgeNetworkOutputRequest {
|
|
|
1081
1081
|
IpAddress?: string;
|
|
1082
1082
|
NetworkName?: string;
|
|
1083
1083
|
Port?: number;
|
|
1084
|
-
Protocol?: Protocol
|
|
1084
|
+
Protocol?: Protocol;
|
|
1085
1085
|
Ttl?: number;
|
|
1086
1086
|
}
|
|
1087
1087
|
export interface UpdateBridgeOutputRequest {
|
|
@@ -1101,7 +1101,7 @@ export interface UpdateBridgeNetworkSourceRequest {
|
|
|
1101
1101
|
MulticastIp?: string;
|
|
1102
1102
|
NetworkName?: string;
|
|
1103
1103
|
Port?: number;
|
|
1104
|
-
Protocol?: Protocol
|
|
1104
|
+
Protocol?: Protocol;
|
|
1105
1105
|
}
|
|
1106
1106
|
export interface UpdateBridgeSourceRequest {
|
|
1107
1107
|
BridgeArn: string | undefined;
|
|
@@ -1115,14 +1115,14 @@ export interface UpdateBridgeSourceResponse {
|
|
|
1115
1115
|
}
|
|
1116
1116
|
export interface UpdateBridgeStateRequest {
|
|
1117
1117
|
BridgeArn: string | undefined;
|
|
1118
|
-
DesiredState: DesiredState |
|
|
1118
|
+
DesiredState: DesiredState | undefined;
|
|
1119
1119
|
}
|
|
1120
1120
|
export interface UpdateBridgeStateResponse {
|
|
1121
1121
|
BridgeArn?: string;
|
|
1122
|
-
DesiredState?: DesiredState
|
|
1122
|
+
DesiredState?: DesiredState;
|
|
1123
1123
|
}
|
|
1124
1124
|
export interface UpdateMaintenance {
|
|
1125
|
-
MaintenanceDay?: MaintenanceDay
|
|
1125
|
+
MaintenanceDay?: MaintenanceDay;
|
|
1126
1126
|
MaintenanceScheduledDate?: string;
|
|
1127
1127
|
MaintenanceStartHour?: string;
|
|
1128
1128
|
}
|
|
@@ -1135,10 +1135,10 @@ export interface UpdateFlowResponse {
|
|
|
1135
1135
|
Flow?: Flow;
|
|
1136
1136
|
}
|
|
1137
1137
|
export interface UpdateEncryption {
|
|
1138
|
-
Algorithm?: Algorithm
|
|
1138
|
+
Algorithm?: Algorithm;
|
|
1139
1139
|
ConstantInitializationVector?: string;
|
|
1140
1140
|
DeviceId?: string;
|
|
1141
|
-
KeyType?: KeyType
|
|
1141
|
+
KeyType?: KeyType;
|
|
1142
1142
|
Region?: string;
|
|
1143
1143
|
ResourceId?: string;
|
|
1144
1144
|
RoleArn?: string;
|
|
@@ -1149,7 +1149,7 @@ export interface UpdateFlowEntitlementRequest {
|
|
|
1149
1149
|
Description?: string;
|
|
1150
1150
|
Encryption?: UpdateEncryption;
|
|
1151
1151
|
EntitlementArn: string | undefined;
|
|
1152
|
-
EntitlementStatus?: EntitlementStatus
|
|
1152
|
+
EntitlementStatus?: EntitlementStatus;
|
|
1153
1153
|
FlowArn: string | undefined;
|
|
1154
1154
|
Subscribers?: string[];
|
|
1155
1155
|
}
|
|
@@ -1163,7 +1163,7 @@ export interface UpdateFlowMediaStreamRequest {
|
|
|
1163
1163
|
Description?: string;
|
|
1164
1164
|
FlowArn: string | undefined;
|
|
1165
1165
|
MediaStreamName: string | undefined;
|
|
1166
|
-
MediaStreamType?: MediaStreamType
|
|
1166
|
+
MediaStreamType?: MediaStreamType;
|
|
1167
1167
|
VideoFormat?: string;
|
|
1168
1168
|
}
|
|
1169
1169
|
export interface UpdateFlowMediaStreamResponse {
|
|
@@ -1181,7 +1181,7 @@ export interface UpdateFlowOutputRequest {
|
|
|
1181
1181
|
MinLatency?: number;
|
|
1182
1182
|
OutputArn: string | undefined;
|
|
1183
1183
|
Port?: number;
|
|
1184
|
-
Protocol?: Protocol
|
|
1184
|
+
Protocol?: Protocol;
|
|
1185
1185
|
RemoteId?: string;
|
|
1186
1186
|
SenderControlPort?: number;
|
|
1187
1187
|
SenderIpAddress?: string;
|
|
@@ -1208,7 +1208,7 @@ export interface UpdateFlowSourceRequest {
|
|
|
1208
1208
|
MaxSyncBuffer?: number;
|
|
1209
1209
|
MediaStreamSourceConfigurations?: MediaStreamSourceConfigurationRequest[];
|
|
1210
1210
|
MinLatency?: number;
|
|
1211
|
-
Protocol?: Protocol
|
|
1211
|
+
Protocol?: Protocol;
|
|
1212
1212
|
SenderControlPort?: number;
|
|
1213
1213
|
SenderIpAddress?: string;
|
|
1214
1214
|
SourceArn: string | undefined;
|
|
@@ -1224,10 +1224,10 @@ export interface UpdateFlowSourceResponse {
|
|
|
1224
1224
|
Source?: Source;
|
|
1225
1225
|
}
|
|
1226
1226
|
export interface UpdateGatewayInstanceRequest {
|
|
1227
|
-
BridgePlacement?: BridgePlacement
|
|
1227
|
+
BridgePlacement?: BridgePlacement;
|
|
1228
1228
|
GatewayInstanceArn: string | undefined;
|
|
1229
1229
|
}
|
|
1230
1230
|
export interface UpdateGatewayInstanceResponse {
|
|
1231
|
-
BridgePlacement?: BridgePlacement
|
|
1231
|
+
BridgePlacement?: BridgePlacement;
|
|
1232
1232
|
GatewayInstanceArn?: string;
|
|
1233
1233
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|