@aws-sdk/client-mediaconnect 3.40.0 → 3.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +18 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +19 -8
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +1 -1
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -1
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +1 -1
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +1 -1
- package/dist-types/commands/CreateFlowCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFlowCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFlowCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +1 -1
- package/dist-types/commands/ListEntitlementsCommand.d.ts +1 -1
- package/dist-types/commands/ListFlowsCommand.d.ts +1 -1
- package/dist-types/commands/ListOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/ListReservationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +1 -1
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +1 -1
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/StartFlowCommand.d.ts +1 -1
- package/dist-types/commands/StopFlowCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +56 -11
- package/dist-types/ts3.4/models/models_0.d.ts +23 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-mediaconnect
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-mediaconnect
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
45
|
|
|
8
46
|
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -14,6 +14,7 @@ const partitionHash = {
|
|
|
14
14
|
"ap-south-1",
|
|
15
15
|
"ap-southeast-1",
|
|
16
16
|
"ap-southeast-2",
|
|
17
|
+
"ap-southeast-3",
|
|
17
18
|
"ca-central-1",
|
|
18
19
|
"eu-central-1",
|
|
19
20
|
"eu-north-1",
|
|
@@ -78,6 +79,10 @@ const partitionHash = {
|
|
|
78
79
|
hostname: "mediaconnect.{region}.c2s.ic.gov",
|
|
79
80
|
tags: [],
|
|
80
81
|
},
|
|
82
|
+
{
|
|
83
|
+
hostname: "mediaconnect-fips.{region}.c2s.ic.gov",
|
|
84
|
+
tags: ["fips"],
|
|
85
|
+
},
|
|
81
86
|
],
|
|
82
87
|
},
|
|
83
88
|
"aws-iso-b": {
|
|
@@ -88,6 +93,10 @@ const partitionHash = {
|
|
|
88
93
|
hostname: "mediaconnect.{region}.sc2s.sgov.gov",
|
|
89
94
|
tags: [],
|
|
90
95
|
},
|
|
96
|
+
{
|
|
97
|
+
hostname: "mediaconnect-fips.{region}.sc2s.sgov.gov",
|
|
98
|
+
tags: ["fips"],
|
|
99
|
+
},
|
|
91
100
|
],
|
|
92
101
|
},
|
|
93
102
|
"aws-us-gov": {
|
|
@@ -118,6 +118,7 @@ var MediaStreamOutputConfigurationRequest;
|
|
|
118
118
|
var Protocol;
|
|
119
119
|
(function (Protocol) {
|
|
120
120
|
Protocol["cdi"] = "cdi";
|
|
121
|
+
Protocol["fujitsu_qos"] = "fujitsu-qos";
|
|
121
122
|
Protocol["rist"] = "rist";
|
|
122
123
|
Protocol["rtp"] = "rtp";
|
|
123
124
|
Protocol["rtp_fec"] = "rtp-fec";
|
|
@@ -938,6 +938,10 @@ const serializeAws_restJson1UpdateFlowOutputCommand = async (input, context) =>
|
|
|
938
938
|
...(input.Port !== undefined && input.Port !== null && { port: input.Port }),
|
|
939
939
|
...(input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol }),
|
|
940
940
|
...(input.RemoteId !== undefined && input.RemoteId !== null && { remoteId: input.RemoteId }),
|
|
941
|
+
...(input.SenderControlPort !== undefined &&
|
|
942
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort }),
|
|
943
|
+
...(input.SenderIpAddress !== undefined &&
|
|
944
|
+
input.SenderIpAddress !== null && { senderIpAddress: input.SenderIpAddress }),
|
|
941
945
|
...(input.SmoothingLatency !== undefined &&
|
|
942
946
|
input.SmoothingLatency !== null && { smoothingLatency: input.SmoothingLatency }),
|
|
943
947
|
...(input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId }),
|
|
@@ -1000,6 +1004,10 @@ const serializeAws_restJson1UpdateFlowSourceCommand = async (input, context) =>
|
|
|
1000
1004
|
}),
|
|
1001
1005
|
...(input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency }),
|
|
1002
1006
|
...(input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol }),
|
|
1007
|
+
...(input.SenderControlPort !== undefined &&
|
|
1008
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort }),
|
|
1009
|
+
...(input.SenderIpAddress !== undefined &&
|
|
1010
|
+
input.SenderIpAddress !== null && { senderIpAddress: input.SenderIpAddress }),
|
|
1003
1011
|
...(input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId }),
|
|
1004
1012
|
...(input.VpcInterfaceName !== undefined &&
|
|
1005
1013
|
input.VpcInterfaceName !== null && { vpcInterfaceName: input.VpcInterfaceName }),
|
|
@@ -3868,6 +3876,8 @@ const serializeAws_restJson1AddOutputRequest = (input, context) => {
|
|
|
3868
3876
|
...(input.Port !== undefined && input.Port !== null && { port: input.Port }),
|
|
3869
3877
|
...(input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol }),
|
|
3870
3878
|
...(input.RemoteId !== undefined && input.RemoteId !== null && { remoteId: input.RemoteId }),
|
|
3879
|
+
...(input.SenderControlPort !== undefined &&
|
|
3880
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort }),
|
|
3871
3881
|
...(input.SmoothingLatency !== undefined &&
|
|
3872
3882
|
input.SmoothingLatency !== null && { smoothingLatency: input.SmoothingLatency }),
|
|
3873
3883
|
...(input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId }),
|
|
@@ -4015,6 +4025,10 @@ const serializeAws_restJson1SetSourceRequest = (input, context) => {
|
|
|
4015
4025
|
...(input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency }),
|
|
4016
4026
|
...(input.Name !== undefined && input.Name !== null && { name: input.Name }),
|
|
4017
4027
|
...(input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol }),
|
|
4028
|
+
...(input.SenderControlPort !== undefined &&
|
|
4029
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort }),
|
|
4030
|
+
...(input.SenderIpAddress !== undefined &&
|
|
4031
|
+
input.SenderIpAddress !== null && { senderIpAddress: input.SenderIpAddress }),
|
|
4018
4032
|
...(input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId }),
|
|
4019
4033
|
...(input.VpcInterfaceName !== undefined &&
|
|
4020
4034
|
input.VpcInterfaceName !== null && { vpcInterfaceName: input.VpcInterfaceName }),
|
|
@@ -4479,6 +4493,8 @@ const deserializeAws_restJson1Source = (output, context) => {
|
|
|
4479
4493
|
? deserializeAws_restJson1__listOfMediaStreamSourceConfiguration(output.mediaStreamSourceConfigurations, context)
|
|
4480
4494
|
: undefined,
|
|
4481
4495
|
Name: smithy_client_1.expectString(output.name),
|
|
4496
|
+
SenderControlPort: smithy_client_1.expectInt32(output.senderControlPort),
|
|
4497
|
+
SenderIpAddress: smithy_client_1.expectString(output.senderIpAddress),
|
|
4482
4498
|
SourceArn: smithy_client_1.expectString(output.sourceArn),
|
|
4483
4499
|
Transport: output.transport !== undefined && output.transport !== null
|
|
4484
4500
|
? deserializeAws_restJson1Transport(output.transport, context)
|
|
@@ -4503,6 +4519,8 @@ const deserializeAws_restJson1Transport = (output, context) => {
|
|
|
4503
4519
|
MinLatency: smithy_client_1.expectInt32(output.minLatency),
|
|
4504
4520
|
Protocol: smithy_client_1.expectString(output.protocol),
|
|
4505
4521
|
RemoteId: smithy_client_1.expectString(output.remoteId),
|
|
4522
|
+
SenderControlPort: smithy_client_1.expectInt32(output.senderControlPort),
|
|
4523
|
+
SenderIpAddress: smithy_client_1.expectString(output.senderIpAddress),
|
|
4506
4524
|
SmoothingLatency: smithy_client_1.expectInt32(output.smoothingLatency),
|
|
4507
4525
|
StreamId: smithy_client_1.expectString(output.streamId),
|
|
4508
4526
|
};
|
package/dist-es/endpoints.js
CHANGED
|
@@ -12,6 +12,7 @@ var partitionHash = {
|
|
|
12
12
|
"ap-south-1",
|
|
13
13
|
"ap-southeast-1",
|
|
14
14
|
"ap-southeast-2",
|
|
15
|
+
"ap-southeast-3",
|
|
15
16
|
"ca-central-1",
|
|
16
17
|
"eu-central-1",
|
|
17
18
|
"eu-north-1",
|
|
@@ -76,6 +77,10 @@ var partitionHash = {
|
|
|
76
77
|
hostname: "mediaconnect.{region}.c2s.ic.gov",
|
|
77
78
|
tags: [],
|
|
78
79
|
},
|
|
80
|
+
{
|
|
81
|
+
hostname: "mediaconnect-fips.{region}.c2s.ic.gov",
|
|
82
|
+
tags: ["fips"],
|
|
83
|
+
},
|
|
79
84
|
],
|
|
80
85
|
},
|
|
81
86
|
"aws-iso-b": {
|
|
@@ -86,6 +91,10 @@ var partitionHash = {
|
|
|
86
91
|
hostname: "mediaconnect.{region}.sc2s.sgov.gov",
|
|
87
92
|
tags: [],
|
|
88
93
|
},
|
|
94
|
+
{
|
|
95
|
+
hostname: "mediaconnect-fips.{region}.sc2s.sgov.gov",
|
|
96
|
+
tags: ["fips"],
|
|
97
|
+
},
|
|
89
98
|
],
|
|
90
99
|
},
|
|
91
100
|
"aws-us-gov": {
|
|
@@ -98,6 +98,7 @@ export var MediaStreamOutputConfigurationRequest;
|
|
|
98
98
|
export var Protocol;
|
|
99
99
|
(function (Protocol) {
|
|
100
100
|
Protocol["cdi"] = "cdi";
|
|
101
|
+
Protocol["fujitsu_qos"] = "fujitsu-qos";
|
|
101
102
|
Protocol["rist"] = "rist";
|
|
102
103
|
Protocol["rtp"] = "rtp";
|
|
103
104
|
Protocol["rtp_fec"] = "rtp-fec";
|
|
@@ -1009,14 +1009,16 @@ export var serializeAws_restJson1UpdateFlowOutputCommand = function (input, cont
|
|
|
1009
1009
|
else {
|
|
1010
1010
|
throw new Error("No value provided for input HTTP label: OutputArn.");
|
|
1011
1011
|
}
|
|
1012
|
-
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.CidrAllowList !== undefined &&
|
|
1012
|
+
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.CidrAllowList !== undefined &&
|
|
1013
1013
|
input.CidrAllowList !== null && {
|
|
1014
1014
|
cidrAllowList: serializeAws_restJson1__listOf__string(input.CidrAllowList, context),
|
|
1015
1015
|
})), (input.Description !== undefined && input.Description !== null && { description: input.Description })), (input.Destination !== undefined && input.Destination !== null && { destination: input.Destination })), (input.Encryption !== undefined &&
|
|
1016
1016
|
input.Encryption !== null && { encryption: serializeAws_restJson1UpdateEncryption(input.Encryption, context) })), (input.MaxLatency !== undefined && input.MaxLatency !== null && { maxLatency: input.MaxLatency })), (input.MediaStreamOutputConfigurations !== undefined &&
|
|
1017
1017
|
input.MediaStreamOutputConfigurations !== null && {
|
|
1018
1018
|
mediaStreamOutputConfigurations: serializeAws_restJson1__listOfMediaStreamOutputConfigurationRequest(input.MediaStreamOutputConfigurations, context),
|
|
1019
|
-
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Port !== undefined && input.Port !== null && { port: input.Port })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.RemoteId !== undefined && input.RemoteId !== null && { remoteId: input.RemoteId })), (input.
|
|
1019
|
+
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Port !== undefined && input.Port !== null && { port: input.Port })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.RemoteId !== undefined && input.RemoteId !== null && { remoteId: input.RemoteId })), (input.SenderControlPort !== undefined &&
|
|
1020
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort })), (input.SenderIpAddress !== undefined &&
|
|
1021
|
+
input.SenderIpAddress !== null && { senderIpAddress: input.SenderIpAddress })), (input.SmoothingLatency !== undefined &&
|
|
1020
1022
|
input.SmoothingLatency !== null && { smoothingLatency: input.SmoothingLatency })), (input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId })), (input.VpcInterfaceAttachment !== undefined &&
|
|
1021
1023
|
input.VpcInterfaceAttachment !== null && {
|
|
1022
1024
|
vpcInterfaceAttachment: serializeAws_restJson1VpcInterfaceAttachment(input.VpcInterfaceAttachment, context),
|
|
@@ -1064,12 +1066,14 @@ export var serializeAws_restJson1UpdateFlowSourceCommand = function (input, cont
|
|
|
1064
1066
|
else {
|
|
1065
1067
|
throw new Error("No value provided for input HTTP label: SourceArn.");
|
|
1066
1068
|
}
|
|
1067
|
-
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Decryption !== undefined &&
|
|
1069
|
+
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Decryption !== undefined &&
|
|
1068
1070
|
input.Decryption !== null && { decryption: serializeAws_restJson1UpdateEncryption(input.Decryption, context) })), (input.Description !== undefined && input.Description !== null && { description: input.Description })), (input.EntitlementArn !== undefined &&
|
|
1069
1071
|
input.EntitlementArn !== null && { entitlementArn: input.EntitlementArn })), (input.IngestPort !== undefined && input.IngestPort !== null && { ingestPort: input.IngestPort })), (input.MaxBitrate !== undefined && input.MaxBitrate !== null && { maxBitrate: input.MaxBitrate })), (input.MaxLatency !== undefined && input.MaxLatency !== null && { maxLatency: input.MaxLatency })), (input.MaxSyncBuffer !== undefined && input.MaxSyncBuffer !== null && { maxSyncBuffer: input.MaxSyncBuffer })), (input.MediaStreamSourceConfigurations !== undefined &&
|
|
1070
1072
|
input.MediaStreamSourceConfigurations !== null && {
|
|
1071
1073
|
mediaStreamSourceConfigurations: serializeAws_restJson1__listOfMediaStreamSourceConfigurationRequest(input.MediaStreamSourceConfigurations, context),
|
|
1072
|
-
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.
|
|
1074
|
+
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.SenderControlPort !== undefined &&
|
|
1075
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort })), (input.SenderIpAddress !== undefined &&
|
|
1076
|
+
input.SenderIpAddress !== null && { senderIpAddress: input.SenderIpAddress })), (input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId })), (input.VpcInterfaceName !== undefined &&
|
|
1073
1077
|
input.VpcInterfaceName !== null && { vpcInterfaceName: input.VpcInterfaceName })), (input.WhitelistCidr !== undefined && input.WhitelistCidr !== null && { whitelistCidr: input.WhitelistCidr })));
|
|
1074
1078
|
return [2, new __HttpRequest({
|
|
1075
1079
|
protocol: protocol,
|
|
@@ -4350,14 +4354,15 @@ var serializeAws_restJson1AddMediaStreamRequest = function (input, context) {
|
|
|
4350
4354
|
input.MediaStreamType !== null && { mediaStreamType: input.MediaStreamType })), (input.VideoFormat !== undefined && input.VideoFormat !== null && { videoFormat: input.VideoFormat }));
|
|
4351
4355
|
};
|
|
4352
4356
|
var serializeAws_restJson1AddOutputRequest = function (input, context) {
|
|
4353
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.CidrAllowList !== undefined &&
|
|
4357
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.CidrAllowList !== undefined &&
|
|
4354
4358
|
input.CidrAllowList !== null && {
|
|
4355
4359
|
cidrAllowList: serializeAws_restJson1__listOf__string(input.CidrAllowList, context),
|
|
4356
4360
|
})), (input.Description !== undefined && input.Description !== null && { description: input.Description })), (input.Destination !== undefined && input.Destination !== null && { destination: input.Destination })), (input.Encryption !== undefined &&
|
|
4357
4361
|
input.Encryption !== null && { encryption: serializeAws_restJson1Encryption(input.Encryption, context) })), (input.MaxLatency !== undefined && input.MaxLatency !== null && { maxLatency: input.MaxLatency })), (input.MediaStreamOutputConfigurations !== undefined &&
|
|
4358
4362
|
input.MediaStreamOutputConfigurations !== null && {
|
|
4359
4363
|
mediaStreamOutputConfigurations: serializeAws_restJson1__listOfMediaStreamOutputConfigurationRequest(input.MediaStreamOutputConfigurations, context),
|
|
4360
|
-
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Name !== undefined && input.Name !== null && { name: input.Name })), (input.Port !== undefined && input.Port !== null && { port: input.Port })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.RemoteId !== undefined && input.RemoteId !== null && { remoteId: input.RemoteId })), (input.
|
|
4364
|
+
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Name !== undefined && input.Name !== null && { name: input.Name })), (input.Port !== undefined && input.Port !== null && { port: input.Port })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.RemoteId !== undefined && input.RemoteId !== null && { remoteId: input.RemoteId })), (input.SenderControlPort !== undefined &&
|
|
4365
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort })), (input.SmoothingLatency !== undefined &&
|
|
4361
4366
|
input.SmoothingLatency !== null && { smoothingLatency: input.SmoothingLatency })), (input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId })), (input.VpcInterfaceAttachment !== undefined &&
|
|
4362
4367
|
input.VpcInterfaceAttachment !== null && {
|
|
4363
4368
|
vpcInterfaceAttachment: serializeAws_restJson1VpcInterfaceAttachment(input.VpcInterfaceAttachment, context),
|
|
@@ -4430,12 +4435,14 @@ var serializeAws_restJson1MediaStreamSourceConfigurationRequest = function (inpu
|
|
|
4430
4435
|
input.MediaStreamName !== null && { mediaStreamName: input.MediaStreamName }));
|
|
4431
4436
|
};
|
|
4432
4437
|
var serializeAws_restJson1SetSourceRequest = function (input, context) {
|
|
4433
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Decryption !== undefined &&
|
|
4438
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Decryption !== undefined &&
|
|
4434
4439
|
input.Decryption !== null && { decryption: serializeAws_restJson1Encryption(input.Decryption, context) })), (input.Description !== undefined && input.Description !== null && { description: input.Description })), (input.EntitlementArn !== undefined &&
|
|
4435
4440
|
input.EntitlementArn !== null && { entitlementArn: input.EntitlementArn })), (input.IngestPort !== undefined && input.IngestPort !== null && { ingestPort: input.IngestPort })), (input.MaxBitrate !== undefined && input.MaxBitrate !== null && { maxBitrate: input.MaxBitrate })), (input.MaxLatency !== undefined && input.MaxLatency !== null && { maxLatency: input.MaxLatency })), (input.MaxSyncBuffer !== undefined && input.MaxSyncBuffer !== null && { maxSyncBuffer: input.MaxSyncBuffer })), (input.MediaStreamSourceConfigurations !== undefined &&
|
|
4436
4441
|
input.MediaStreamSourceConfigurations !== null && {
|
|
4437
4442
|
mediaStreamSourceConfigurations: serializeAws_restJson1__listOfMediaStreamSourceConfigurationRequest(input.MediaStreamSourceConfigurations, context),
|
|
4438
|
-
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Name !== undefined && input.Name !== null && { name: input.Name })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.
|
|
4443
|
+
})), (input.MinLatency !== undefined && input.MinLatency !== null && { minLatency: input.MinLatency })), (input.Name !== undefined && input.Name !== null && { name: input.Name })), (input.Protocol !== undefined && input.Protocol !== null && { protocol: input.Protocol })), (input.SenderControlPort !== undefined &&
|
|
4444
|
+
input.SenderControlPort !== null && { senderControlPort: input.SenderControlPort })), (input.SenderIpAddress !== undefined &&
|
|
4445
|
+
input.SenderIpAddress !== null && { senderIpAddress: input.SenderIpAddress })), (input.StreamId !== undefined && input.StreamId !== null && { streamId: input.StreamId })), (input.VpcInterfaceName !== undefined &&
|
|
4439
4446
|
input.VpcInterfaceName !== null && { vpcInterfaceName: input.VpcInterfaceName })), (input.WhitelistCidr !== undefined && input.WhitelistCidr !== null && { whitelistCidr: input.WhitelistCidr }));
|
|
4440
4447
|
};
|
|
4441
4448
|
var serializeAws_restJson1SourcePriority = function (input, context) {
|
|
@@ -4870,6 +4877,8 @@ var deserializeAws_restJson1Source = function (output, context) {
|
|
|
4870
4877
|
? deserializeAws_restJson1__listOfMediaStreamSourceConfiguration(output.mediaStreamSourceConfigurations, context)
|
|
4871
4878
|
: undefined,
|
|
4872
4879
|
Name: __expectString(output.name),
|
|
4880
|
+
SenderControlPort: __expectInt32(output.senderControlPort),
|
|
4881
|
+
SenderIpAddress: __expectString(output.senderIpAddress),
|
|
4873
4882
|
SourceArn: __expectString(output.sourceArn),
|
|
4874
4883
|
Transport: output.transport !== undefined && output.transport !== null
|
|
4875
4884
|
? deserializeAws_restJson1Transport(output.transport, context)
|
|
@@ -4894,6 +4903,8 @@ var deserializeAws_restJson1Transport = function (output, context) {
|
|
|
4894
4903
|
MinLatency: __expectInt32(output.minLatency),
|
|
4895
4904
|
Protocol: __expectString(output.protocol),
|
|
4896
4905
|
RemoteId: __expectString(output.remoteId),
|
|
4906
|
+
SenderControlPort: __expectInt32(output.senderControlPort),
|
|
4907
|
+
SenderIpAddress: __expectString(output.senderIpAddress),
|
|
4897
4908
|
SmoothingLatency: __expectInt32(output.smoothingLatency),
|
|
4898
4909
|
StreamId: __expectString(output.streamId),
|
|
4899
4910
|
};
|
|
@@ -20,7 +20,7 @@ export interface AddFlowMediaStreamsCommandOutput extends AddFlowMediaStreamsRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link AddFlowMediaStreamsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link AddFlowMediaStreamsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class AddFlowMediaStreamsCommand extends $Command<AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface AddFlowOutputsCommandOutput extends AddFlowOutputsResponse, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link AddFlowOutputsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link AddFlowOutputsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class AddFlowOutputsCommand extends $Command<AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface AddFlowSourcesCommandOutput extends AddFlowSourcesResponse, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link AddFlowSourcesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link AddFlowSourcesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class AddFlowSourcesCommand extends $Command<AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface AddFlowVpcInterfacesCommandOutput extends AddFlowVpcInterfacesR
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link AddFlowVpcInterfacesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link AddFlowVpcInterfacesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class AddFlowVpcInterfacesCommand extends $Command<AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateFlowCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateFlowCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteFlowCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteFlowCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeFlowCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeFlowCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeOfferingCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeOfferingCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeOfferingCommand extends $Command<DescribeOfferingCommandInput, DescribeOfferingCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeReservationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeReservationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeReservationCommand extends $Command<DescribeReservationCommandInput, DescribeReservationCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlement
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GrantFlowEntitlementsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GrantFlowEntitlementsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GrantFlowEntitlementsCommand extends $Command<GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListEntitlementsCommandOutput extends ListEntitlementsResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListEntitlementsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListEntitlementsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListEntitlementsCommand extends $Command<ListEntitlementsCommandInput, ListEntitlementsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListFlowsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListFlowsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListFlowsCommand extends $Command<ListFlowsCommandInput, ListFlowsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListOfferingsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListOfferingsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListOfferingsCommand extends $Command<ListOfferingsCommandInput, ListOfferingsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListReservationsCommandOutput extends ListReservationsResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListReservationsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListReservationsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListReservationsCommand extends $Command<ListReservationsCommandInput, ListReservationsCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link PurchaseOfferingCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link PurchaseOfferingCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class PurchaseOfferingCommand extends $Command<PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RemoveFlowMediaStreamCommandOutput extends RemoveFlowMediaStrea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveFlowMediaStreamCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveFlowMediaStreamCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveFlowMediaStreamCommand extends $Command<RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RemoveFlowOutputCommandOutput extends RemoveFlowOutputResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveFlowOutputCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveFlowOutputCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveFlowOutputCommand extends $Command<RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RemoveFlowSourceCommandOutput extends RemoveFlowSourceResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveFlowSourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveFlowSourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveFlowSourceCommand extends $Command<RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RemoveFlowVpcInterfaceCommandOutput extends RemoveFlowVpcInterf
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveFlowVpcInterfaceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveFlowVpcInterfaceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveFlowVpcInterfaceCommand extends $Command<RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RevokeFlowEntitlementCommandOutput extends RevokeFlowEntitlemen
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RevokeFlowEntitlementCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RevokeFlowEntitlementCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RevokeFlowEntitlementCommand extends $Command<RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartFlowCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartFlowCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartFlowCommand extends $Command<StartFlowCommandInput, StartFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StopFlowCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StopFlowCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StopFlowCommand extends $Command<StopFlowCommandInput, StopFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateFlowCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateFlowCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateFlowCommand extends $Command<UpdateFlowCommandInput, UpdateFlowCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateFlowEntitlementCommandOutput extends UpdateFlowEntitlemen
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateFlowEntitlementCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateFlowEntitlementCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateFlowEntitlementCommand extends $Command<UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateFlowMediaStreamCommandOutput extends UpdateFlowMediaStrea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateFlowMediaStreamCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateFlowMediaStreamCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateFlowMediaStreamCommand extends $Command<UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateFlowOutputCommandOutput extends UpdateFlowOutputResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateFlowOutputCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateFlowOutputCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateFlowOutputCommand extends $Command<UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateFlowSourceCommandOutput extends UpdateFlowSourceResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateFlowSourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateFlowSourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link MediaConnectClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateFlowSourceCommand extends $Command<UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput, MediaConnectClientResolvedConfig> {
|
|
@@ -284,6 +284,7 @@ export declare namespace MediaStreamOutputConfigurationRequest {
|
|
|
284
284
|
}
|
|
285
285
|
export declare enum Protocol {
|
|
286
286
|
cdi = "cdi",
|
|
287
|
+
fujitsu_qos = "fujitsu-qos",
|
|
287
288
|
rist = "rist",
|
|
288
289
|
rtp = "rtp",
|
|
289
290
|
rtp_fec = "rtp-fec",
|
|
@@ -328,7 +329,7 @@ export interface AddOutputRequest {
|
|
|
328
329
|
*/
|
|
329
330
|
Encryption?: Encryption;
|
|
330
331
|
/**
|
|
331
|
-
* The maximum latency in milliseconds
|
|
332
|
+
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
332
333
|
*/
|
|
333
334
|
MaxLatency?: number;
|
|
334
335
|
/**
|
|
@@ -355,6 +356,10 @@ export interface AddOutputRequest {
|
|
|
355
356
|
* The remote ID for the Zixi-pull output stream.
|
|
356
357
|
*/
|
|
357
358
|
RemoteId?: string;
|
|
359
|
+
/**
|
|
360
|
+
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
361
|
+
*/
|
|
362
|
+
SenderControlPort?: number;
|
|
358
363
|
/**
|
|
359
364
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
360
365
|
*/
|
|
@@ -884,7 +889,7 @@ export interface Transport {
|
|
|
884
889
|
*/
|
|
885
890
|
MaxBitrate?: number;
|
|
886
891
|
/**
|
|
887
|
-
* The maximum latency in milliseconds. This parameter applies only to RIST-based and
|
|
892
|
+
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
888
893
|
*/
|
|
889
894
|
MaxLatency?: number;
|
|
890
895
|
/**
|
|
@@ -903,6 +908,14 @@ export interface Transport {
|
|
|
903
908
|
* The remote ID for the Zixi-pull stream.
|
|
904
909
|
*/
|
|
905
910
|
RemoteId?: string;
|
|
911
|
+
/**
|
|
912
|
+
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
913
|
+
*/
|
|
914
|
+
SenderControlPort?: number;
|
|
915
|
+
/**
|
|
916
|
+
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
917
|
+
*/
|
|
918
|
+
SenderIpAddress?: string;
|
|
906
919
|
/**
|
|
907
920
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
908
921
|
*/
|
|
@@ -1075,7 +1088,7 @@ export interface SetSourceRequest {
|
|
|
1075
1088
|
*/
|
|
1076
1089
|
MaxBitrate?: number;
|
|
1077
1090
|
/**
|
|
1078
|
-
* The maximum latency in milliseconds. This parameter applies only to RIST-based and
|
|
1091
|
+
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
1079
1092
|
*/
|
|
1080
1093
|
MaxLatency?: number;
|
|
1081
1094
|
/**
|
|
@@ -1098,6 +1111,14 @@ export interface SetSourceRequest {
|
|
|
1098
1111
|
* The protocol that is used by the source.
|
|
1099
1112
|
*/
|
|
1100
1113
|
Protocol?: Protocol | string;
|
|
1114
|
+
/**
|
|
1115
|
+
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
1116
|
+
*/
|
|
1117
|
+
SenderControlPort?: number;
|
|
1118
|
+
/**
|
|
1119
|
+
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
1120
|
+
*/
|
|
1121
|
+
SenderIpAddress?: string;
|
|
1101
1122
|
/**
|
|
1102
1123
|
* The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.
|
|
1103
1124
|
*/
|
|
@@ -1153,6 +1174,14 @@ export interface Source {
|
|
|
1153
1174
|
* The name of the source.
|
|
1154
1175
|
*/
|
|
1155
1176
|
Name: string | undefined;
|
|
1177
|
+
/**
|
|
1178
|
+
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
1179
|
+
*/
|
|
1180
|
+
SenderControlPort?: number;
|
|
1181
|
+
/**
|
|
1182
|
+
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
1183
|
+
*/
|
|
1184
|
+
SenderIpAddress?: string;
|
|
1156
1185
|
/**
|
|
1157
1186
|
* The ARN of the source.
|
|
1158
1187
|
*/
|
|
@@ -1185,7 +1214,7 @@ export declare enum NetworkInterfaceType {
|
|
|
1185
1214
|
*/
|
|
1186
1215
|
export interface VpcInterface {
|
|
1187
1216
|
/**
|
|
1188
|
-
* Immutable and has to be a unique against other VpcInterfaces in this Flow
|
|
1217
|
+
* Immutable and has to be a unique against other VpcInterfaces in this Flow.
|
|
1189
1218
|
*/
|
|
1190
1219
|
Name: string | undefined;
|
|
1191
1220
|
/**
|
|
@@ -1546,7 +1575,7 @@ export declare enum State {
|
|
|
1546
1575
|
ENABLED = "ENABLED"
|
|
1547
1576
|
}
|
|
1548
1577
|
/**
|
|
1549
|
-
* The settings for source failover
|
|
1578
|
+
* The settings for source failover.
|
|
1550
1579
|
*/
|
|
1551
1580
|
export interface FailoverConfig {
|
|
1552
1581
|
/**
|
|
@@ -1598,7 +1627,7 @@ export interface CreateFlowRequest {
|
|
|
1598
1627
|
*/
|
|
1599
1628
|
Source?: SetSourceRequest;
|
|
1600
1629
|
/**
|
|
1601
|
-
* The settings for source failover
|
|
1630
|
+
* The settings for source failover.
|
|
1602
1631
|
*/
|
|
1603
1632
|
SourceFailoverConfig?: FailoverConfig;
|
|
1604
1633
|
Sources?: SetSourceRequest[];
|
|
@@ -1654,7 +1683,7 @@ export interface Flow {
|
|
|
1654
1683
|
*/
|
|
1655
1684
|
Source: Source | undefined;
|
|
1656
1685
|
/**
|
|
1657
|
-
* The settings for source failover
|
|
1686
|
+
* The settings for source failover.
|
|
1658
1687
|
*/
|
|
1659
1688
|
SourceFailoverConfig?: FailoverConfig;
|
|
1660
1689
|
Sources?: Source[];
|
|
@@ -2303,7 +2332,7 @@ export declare namespace UntagResourceRequest {
|
|
|
2303
2332
|
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2304
2333
|
}
|
|
2305
2334
|
/**
|
|
2306
|
-
* The settings for source failover
|
|
2335
|
+
* The settings for source failover.
|
|
2307
2336
|
*/
|
|
2308
2337
|
export interface UpdateFailoverConfig {
|
|
2309
2338
|
/**
|
|
@@ -2335,7 +2364,7 @@ export interface UpdateFlowRequest {
|
|
|
2335
2364
|
*/
|
|
2336
2365
|
FlowArn: string | undefined;
|
|
2337
2366
|
/**
|
|
2338
|
-
* The settings for source failover
|
|
2367
|
+
* The settings for source failover.
|
|
2339
2368
|
*/
|
|
2340
2369
|
SourceFailoverConfig?: UpdateFailoverConfig;
|
|
2341
2370
|
}
|
|
@@ -2535,7 +2564,7 @@ export interface UpdateFlowOutputRequest {
|
|
|
2535
2564
|
*/
|
|
2536
2565
|
FlowArn: string | undefined;
|
|
2537
2566
|
/**
|
|
2538
|
-
* The maximum latency in milliseconds
|
|
2567
|
+
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
2539
2568
|
*/
|
|
2540
2569
|
MaxLatency?: number;
|
|
2541
2570
|
/**
|
|
@@ -2562,6 +2591,14 @@ export interface UpdateFlowOutputRequest {
|
|
|
2562
2591
|
* The remote ID for the Zixi-pull stream.
|
|
2563
2592
|
*/
|
|
2564
2593
|
RemoteId?: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
2596
|
+
*/
|
|
2597
|
+
SenderControlPort?: number;
|
|
2598
|
+
/**
|
|
2599
|
+
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
2600
|
+
*/
|
|
2601
|
+
SenderIpAddress?: string;
|
|
2565
2602
|
/**
|
|
2566
2603
|
* The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
|
2567
2604
|
*/
|
|
@@ -2626,7 +2663,7 @@ export interface UpdateFlowSourceRequest {
|
|
|
2626
2663
|
*/
|
|
2627
2664
|
MaxBitrate?: number;
|
|
2628
2665
|
/**
|
|
2629
|
-
* The maximum latency in milliseconds. This parameter applies only to RIST-based and
|
|
2666
|
+
* The maximum latency in milliseconds. This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
2630
2667
|
*/
|
|
2631
2668
|
MaxLatency?: number;
|
|
2632
2669
|
/**
|
|
@@ -2645,6 +2682,14 @@ export interface UpdateFlowSourceRequest {
|
|
|
2645
2682
|
* The protocol that is used by the source.
|
|
2646
2683
|
*/
|
|
2647
2684
|
Protocol?: Protocol | string;
|
|
2685
|
+
/**
|
|
2686
|
+
* The port that the flow uses to send outbound requests to initiate connection with the sender.
|
|
2687
|
+
*/
|
|
2688
|
+
SenderControlPort?: number;
|
|
2689
|
+
/**
|
|
2690
|
+
* The IP address that the flow communicates with to initiate connection with the sender.
|
|
2691
|
+
*/
|
|
2692
|
+
SenderIpAddress?: string;
|
|
2648
2693
|
/**
|
|
2649
2694
|
* The ARN of the source that you want to update.
|
|
2650
2695
|
*/
|
|
@@ -182,6 +182,7 @@ export declare namespace MediaStreamOutputConfigurationRequest {
|
|
|
182
182
|
}
|
|
183
183
|
export declare enum Protocol {
|
|
184
184
|
cdi = "cdi",
|
|
185
|
+
fujitsu_qos = "fujitsu-qos",
|
|
185
186
|
rist = "rist",
|
|
186
187
|
rtp = "rtp",
|
|
187
188
|
rtp_fec = "rtp-fec",
|
|
@@ -224,6 +225,8 @@ export interface AddOutputRequest {
|
|
|
224
225
|
|
|
225
226
|
RemoteId?: string;
|
|
226
227
|
|
|
228
|
+
SenderControlPort?: number;
|
|
229
|
+
|
|
227
230
|
SmoothingLatency?: number;
|
|
228
231
|
|
|
229
232
|
StreamId?: string;
|
|
@@ -538,6 +541,10 @@ export interface Transport {
|
|
|
538
541
|
|
|
539
542
|
RemoteId?: string;
|
|
540
543
|
|
|
544
|
+
SenderControlPort?: number;
|
|
545
|
+
|
|
546
|
+
SenderIpAddress?: string;
|
|
547
|
+
|
|
541
548
|
SmoothingLatency?: number;
|
|
542
549
|
|
|
543
550
|
StreamId?: string;
|
|
@@ -643,6 +650,10 @@ export interface SetSourceRequest {
|
|
|
643
650
|
|
|
644
651
|
Protocol?: Protocol | string;
|
|
645
652
|
|
|
653
|
+
SenderControlPort?: number;
|
|
654
|
+
|
|
655
|
+
SenderIpAddress?: string;
|
|
656
|
+
|
|
646
657
|
StreamId?: string;
|
|
647
658
|
|
|
648
659
|
VpcInterfaceName?: string;
|
|
@@ -672,6 +683,10 @@ export interface Source {
|
|
|
672
683
|
|
|
673
684
|
Name: string | undefined;
|
|
674
685
|
|
|
686
|
+
SenderControlPort?: number;
|
|
687
|
+
|
|
688
|
+
SenderIpAddress?: string;
|
|
689
|
+
|
|
675
690
|
SourceArn: string | undefined;
|
|
676
691
|
|
|
677
692
|
Transport?: Transport;
|
|
@@ -1525,6 +1540,10 @@ export interface UpdateFlowOutputRequest {
|
|
|
1525
1540
|
|
|
1526
1541
|
RemoteId?: string;
|
|
1527
1542
|
|
|
1543
|
+
SenderControlPort?: number;
|
|
1544
|
+
|
|
1545
|
+
SenderIpAddress?: string;
|
|
1546
|
+
|
|
1528
1547
|
SmoothingLatency?: number;
|
|
1529
1548
|
|
|
1530
1549
|
StreamId?: string;
|
|
@@ -1570,6 +1589,10 @@ export interface UpdateFlowSourceRequest {
|
|
|
1570
1589
|
|
|
1571
1590
|
Protocol?: Protocol | string;
|
|
1572
1591
|
|
|
1592
|
+
SenderControlPort?: number;
|
|
1593
|
+
|
|
1594
|
+
SenderIpAddress?: string;
|
|
1595
|
+
|
|
1573
1596
|
SourceArn: string | undefined;
|
|
1574
1597
|
|
|
1575
1598
|
StreamId?: string;
|
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.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
42
|
"@aws-sdk/types": "3.40.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|