@aws-sdk/client-mediaconnect 3.1026.0 → 3.1028.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +15 -9
- package/dist-cjs/schemas/schemas_0.js +38 -20
- package/dist-es/MediaConnect.js +5 -5
- package/dist-es/models/enums.js +9 -4
- package/dist-es/schemas/schemas_0.js +32 -14
- package/dist-es/waiters/index.js +5 -5
- package/dist-types/MediaConnect.d.ts +8 -8
- package/dist-types/commands/BatchGetRouterInputCommand.d.ts +39 -29
- package/dist-types/commands/BatchGetRouterOutputCommand.d.ts +5 -5
- package/dist-types/commands/CreateRouterInputCommand.d.ts +75 -56
- package/dist-types/commands/CreateRouterOutputCommand.d.ts +10 -10
- package/dist-types/commands/GetRouterInputCommand.d.ts +39 -29
- package/dist-types/commands/GetRouterOutputCommand.d.ts +5 -5
- package/dist-types/commands/ListRouterInputsCommand.d.ts +6 -6
- package/dist-types/commands/ListRouterOutputsCommand.d.ts +8 -8
- package/dist-types/commands/RestartRouterInputCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRouterInputCommand.d.ts +75 -56
- package/dist-types/commands/UpdateRouterOutputCommand.d.ts +10 -10
- package/dist-types/models/enums.d.ts +25 -12
- package/dist-types/models/models_0.d.ts +263 -225
- package/dist-types/models/models_1.d.ts +30 -0
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/MediaConnect.d.ts +8 -8
- package/dist-types/ts3.4/commands/RestartRouterInputCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +13 -6
- package/dist-types/ts3.4/models/models_0.d.ts +175 -145
- package/dist-types/ts3.4/models/models_1.d.ts +8 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -5
- package/dist-types/waiters/index.d.ts +5 -5
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -1828,16 +1828,16 @@ const paginators = {
|
|
|
1828
1828
|
};
|
|
1829
1829
|
const waiters = {
|
|
1830
1830
|
waitUntilFlowActive,
|
|
1831
|
-
waitUntilFlowDeleted,
|
|
1832
1831
|
waitUntilFlowStandby,
|
|
1832
|
+
waitUntilFlowDeleted,
|
|
1833
|
+
waitUntilInputActive,
|
|
1833
1834
|
waitUntilInputStandby,
|
|
1834
1835
|
waitUntilInputDeleted,
|
|
1835
|
-
waitUntilInputActive,
|
|
1836
|
-
waitUntilOutputUnrouted,
|
|
1837
|
-
waitUntilOutputDeleted,
|
|
1838
1836
|
waitUntilOutputActive,
|
|
1839
|
-
|
|
1837
|
+
waitUntilOutputDeleted,
|
|
1840
1838
|
waitUntilOutputRouted,
|
|
1839
|
+
waitUntilOutputStandby,
|
|
1840
|
+
waitUntilOutputUnrouted,
|
|
1841
1841
|
};
|
|
1842
1842
|
class MediaConnect extends MediaConnectClient {
|
|
1843
1843
|
}
|
|
@@ -2007,6 +2007,14 @@ const FailoverInputSourcePriorityMode = {
|
|
|
2007
2007
|
NO_PRIORITY: "NO_PRIORITY",
|
|
2008
2008
|
PRIMARY_SECONDARY: "PRIMARY_SECONDARY",
|
|
2009
2009
|
};
|
|
2010
|
+
const MediaLiveChannelPipelineId = {
|
|
2011
|
+
PIPELINE_0: "PIPELINE_0",
|
|
2012
|
+
PIPELINE_1: "PIPELINE_1",
|
|
2013
|
+
};
|
|
2014
|
+
const MediaLiveTransitEncryptionKeyType = {
|
|
2015
|
+
AUTOMATIC: "AUTOMATIC",
|
|
2016
|
+
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
2017
|
+
};
|
|
2010
2018
|
const RouterInputProtocol = {
|
|
2011
2019
|
RIST: "RIST",
|
|
2012
2020
|
RTP: "RTP",
|
|
@@ -2016,6 +2024,7 @@ const RouterInputProtocol = {
|
|
|
2016
2024
|
const RouterInputType = {
|
|
2017
2025
|
FAILOVER: "FAILOVER",
|
|
2018
2026
|
MEDIACONNECT_FLOW: "MEDIACONNECT_FLOW",
|
|
2027
|
+
MEDIALIVE_CHANNEL: "MEDIALIVE_CHANNEL",
|
|
2019
2028
|
MERGE: "MERGE",
|
|
2020
2029
|
STANDARD: "STANDARD",
|
|
2021
2030
|
};
|
|
@@ -2072,10 +2081,6 @@ const RouterNetworkInterfaceState = {
|
|
|
2072
2081
|
RECOVERING: "RECOVERING",
|
|
2073
2082
|
UPDATING: "UPDATING",
|
|
2074
2083
|
};
|
|
2075
|
-
const MediaLiveTransitEncryptionKeyType = {
|
|
2076
|
-
AUTOMATIC: "AUTOMATIC",
|
|
2077
|
-
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
2078
|
-
};
|
|
2079
2084
|
const MediaLiveInputPipelineId = {
|
|
2080
2085
|
PIPELINE_0: "PIPELINE_0",
|
|
2081
2086
|
PIPELINE_1: "PIPELINE_1",
|
|
@@ -2229,6 +2234,7 @@ exports.MaintenanceScheduleType = MaintenanceScheduleType;
|
|
|
2229
2234
|
exports.MaintenanceType = MaintenanceType;
|
|
2230
2235
|
exports.MediaConnect = MediaConnect;
|
|
2231
2236
|
exports.MediaConnectClient = MediaConnectClient;
|
|
2237
|
+
exports.MediaLiveChannelPipelineId = MediaLiveChannelPipelineId;
|
|
2232
2238
|
exports.MediaLiveInputPipelineId = MediaLiveInputPipelineId;
|
|
2233
2239
|
exports.MediaLiveTransitEncryptionKeyType = MediaLiveTransitEncryptionKeyType;
|
|
2234
2240
|
exports.MediaStreamType = MediaStreamType;
|
|
@@ -3,12 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.BatchGetRouterOutputResponse$ = exports.BatchGetRouterOutputRequest$ = exports.BatchGetRouterOutputError$ = exports.BatchGetRouterNetworkInterfaceResponse$ = exports.BatchGetRouterNetworkInterfaceRequest$ = exports.BatchGetRouterNetworkInterfaceError$ = exports.BatchGetRouterInputResponse$ = exports.BatchGetRouterInputRequest$ = exports.BatchGetRouterInputError$ = exports.AutomaticEncryptionKeyConfiguration$ = exports.AudioMonitoringSetting$ = exports.AddOutputRequest$ = exports.AddMediaStreamRequest$ = exports.AddMaintenance$ = exports.AddIngressGatewayBridgeRequest$ = exports.AddFlowVpcInterfacesResponse$ = exports.AddFlowVpcInterfacesRequest$ = exports.AddFlowSourcesResponse$ = exports.AddFlowSourcesRequest$ = exports.AddFlowOutputsResponse$ = exports.AddFlowOutputsRequest$ = exports.AddFlowMediaStreamsResponse$ = exports.AddFlowMediaStreamsRequest$ = exports.AddEgressGatewayBridgeRequest$ = exports.AddBridgeSourcesResponse$ = exports.AddBridgeSourcesRequest$ = exports.AddBridgeSourceRequest$ = exports.AddBridgeOutputsResponse$ = exports.AddBridgeOutputsRequest$ = exports.AddBridgeOutputRequest$ = exports.AddBridgeNetworkSourceRequest$ = exports.AddBridgeNetworkOutputRequest$ = exports.AddBridgeFlowSourceRequest$ = exports.errorTypeRegistries = exports.TooManyRequestsException$ = exports.ServiceUnavailableException$ = exports.RouterOutputServiceQuotaExceededException$ = exports.RouterNetworkInterfaceServiceQuotaExceededException$ = exports.RouterInputServiceQuotaExceededException$ = exports.NotFoundException$ = exports.InternalServerErrorException$ = exports.GrantFlowEntitlements420Exception$ = exports.ForbiddenException$ = exports.CreateGateway420Exception$ = exports.CreateFlow420Exception$ = exports.CreateBridge420Exception$ = exports.ConflictException$ = exports.BadRequestException$ = exports.AddFlowOutputs420Exception$ = exports.MediaConnectServiceException$ = void 0;
|
|
4
4
|
exports.DescribeReservationRequest$ = exports.DescribeOfferingResponse$ = exports.DescribeOfferingRequest$ = exports.DescribeGatewayResponse$ = exports.DescribeGatewayRequest$ = exports.DescribeGatewayInstanceResponse$ = exports.DescribeGatewayInstanceRequest$ = exports.DescribeFlowSourceThumbnailResponse$ = exports.DescribeFlowSourceThumbnailRequest$ = exports.DescribeFlowSourceMetadataResponse$ = exports.DescribeFlowSourceMetadataRequest$ = exports.DescribeFlowResponse$ = exports.DescribeFlowRequest$ = exports.DescribeBridgeResponse$ = exports.DescribeBridgeRequest$ = exports.DeregisterGatewayInstanceResponse$ = exports.DeregisterGatewayInstanceRequest$ = exports.DeleteRouterOutputResponse$ = exports.DeleteRouterOutputRequest$ = exports.DeleteRouterNetworkInterfaceResponse$ = exports.DeleteRouterNetworkInterfaceRequest$ = exports.DeleteRouterInputResponse$ = exports.DeleteRouterInputRequest$ = exports.DeleteGatewayResponse$ = exports.DeleteGatewayRequest$ = exports.DeleteFlowResponse$ = exports.DeleteFlowRequest$ = exports.DeleteBridgeResponse$ = exports.DeleteBridgeRequest$ = exports.DefaultMaintenanceConfiguration$ = exports.CreateRouterOutputResponse$ = exports.CreateRouterOutputRequest$ = exports.CreateRouterNetworkInterfaceResponse$ = exports.CreateRouterNetworkInterfaceRequest$ = exports.CreateRouterInputResponse$ = exports.CreateRouterInputRequest$ = exports.CreateGatewayResponse$ = exports.CreateGatewayRequest$ = exports.CreateFlowResponse$ = exports.CreateFlowRequest$ = exports.CreateBridgeResponse$ = exports.CreateBridgeRequest$ = exports.BridgeSource$ = exports.BridgeOutput$ = exports.BridgeNetworkSource$ = exports.BridgeNetworkOutput$ = exports.BridgeFlowSource$ = exports.BridgeFlowOutput$ = exports.Bridge$ = exports.BlackFrames$ = void 0;
|
|
5
5
|
exports.ListedRouterNetworkInterface$ = exports.ListedRouterInput$ = exports.ListedGatewayInstance$ = exports.ListedGateway$ = exports.ListedFlow$ = exports.ListedEntitlement$ = exports.ListedBridge$ = exports.ListBridgesResponse$ = exports.ListBridgesRequest$ = exports.InterfaceRequest$ = exports.Interface$ = exports.InputConfigurationRequest$ = exports.InputConfiguration$ = exports.IngressGatewayBridge$ = exports.GrantFlowEntitlementsResponse$ = exports.GrantFlowEntitlementsRequest$ = exports.GrantEntitlementRequest$ = exports.GetRouterOutputResponse$ = exports.GetRouterOutputRequest$ = exports.GetRouterNetworkInterfaceResponse$ = exports.GetRouterNetworkInterfaceRequest$ = exports.GetRouterInputThumbnailResponse$ = exports.GetRouterInputThumbnailRequest$ = exports.GetRouterInputSourceMetadataResponse$ = exports.GetRouterInputSourceMetadataRequest$ = exports.GetRouterInputResponse$ = exports.GetRouterInputRequest$ = exports.GatewayNetwork$ = exports.GatewayInstance$ = exports.GatewayBridgeSource$ = exports.Gateway$ = exports.FrozenFrames$ = exports.FrameResolution$ = exports.FmtpRequest$ = exports.Fmtp$ = exports.FlowTransitEncryption$ = exports.Flow$ = exports.FailoverRouterInputStreamDetails$ = exports.FailoverRouterInputIndexedStreamDetails$ = exports.FailoverRouterInputConfiguration$ = exports.FailoverConfig$ = exports.Entitlement$ = exports.Encryption$ = exports.EncodingParametersRequest$ = exports.EncodingParameters$ = exports.EncodingConfig$ = exports.EgressGatewayBridge$ = exports.DestinationConfigurationRequest$ = exports.DestinationConfiguration$ = exports.DescribeReservationResponse$ = void 0;
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.UpdateRouterOutput$ = exports.UpdateRouterNetworkInterface$ = exports.UpdateRouterInput$ = exports.UpdateGatewayInstance$ = exports.UpdateFlowSource$ = exports.UpdateFlowOutput$ = exports.UpdateFlowMediaStream$ = exports.UpdateFlowEntitlement$ = exports.UpdateFlow$ = exports.UpdateBridgeState$ = exports.UpdateBridgeSource$ = exports.UpdateBridgeOutput$ = exports.UpdateBridge$ = exports.UntagResource$ = exports.UntagGlobalResource$ = exports.TakeRouterInput$ = exports.TagResource$ = exports.TagGlobalResource$ = exports.StopRouterOutput$ = exports.StopRouterInput$ = exports.StopFlow$ = void 0;
|
|
6
|
+
exports.NdiMediaInfo$ = exports.NdiDiscoveryServerConfig$ = exports.NdiConfig$ = exports.MulticastSourceSettings$ = exports.MonitoringConfig$ = exports.Messages$ = exports.MessageDetail$ = exports.MergeRouterInputStreamDetails$ = exports.MergeRouterInputIndexedStreamDetails$ = exports.MergeRouterInputConfiguration$ = exports.MediaStreamSourceConfigurationRequest$ = exports.MediaStreamSourceConfiguration$ = exports.MediaStreamOutputConfigurationRequest$ = exports.MediaStreamOutputConfiguration$ = exports.MediaStreamAttributesRequest$ = exports.MediaStreamAttributes$ = exports.MediaStream$ = exports.MediaLiveTransitEncryption$ = exports.MediaLiveInputRouterOutputStreamDetails$ = exports.MediaLiveInputRouterOutputConfiguration$ = exports.MediaLiveChannelRouterInputStreamDetails$ = exports.MediaLiveChannelRouterInputConfiguration$ = exports.MediaConnectFlowRouterOutputStreamDetails$ = exports.MediaConnectFlowRouterOutputConfiguration$ = exports.MediaConnectFlowRouterInputStreamDetails$ = exports.MediaConnectFlowRouterInputConfiguration$ = exports.Maintenance$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListTagsForGlobalResourceResponse$ = exports.ListTagsForGlobalResourceRequest$ = exports.ListRouterOutputsResponse$ = exports.ListRouterOutputsRequest$ = exports.ListRouterNetworkInterfacesResponse$ = exports.ListRouterNetworkInterfacesRequest$ = exports.ListRouterInputsResponse$ = exports.ListRouterInputsRequest$ = exports.ListReservationsResponse$ = exports.ListReservationsRequest$ = exports.ListOfferingsResponse$ = exports.ListOfferingsRequest$ = exports.ListGatewaysResponse$ = exports.ListGatewaysRequest$ = exports.ListGatewayInstancesResponse$ = exports.ListGatewayInstancesRequest$ = exports.ListFlowsResponse$ = exports.ListFlowsRequest$ = exports.ListEntitlementsResponse$ = exports.ListEntitlementsRequest$ = exports.ListedRouterOutput$ = void 0;
|
|
7
|
+
exports.SrtCallerRouterInputConfiguration$ = exports.SourcePriority$ = exports.Source$ = exports.SilentAudio$ = exports.SetSourceRequest$ = exports.SetGatewayBridgeSourceRequest$ = exports.SecretsManagerEncryptionKeyConfiguration$ = exports.RtpRouterOutputConfiguration$ = exports.RtpRouterInputConfiguration$ = exports.RouterOutputMessage$ = exports.RouterOutput$ = exports.RouterNetworkInterface$ = exports.RouterInputTransitEncryption$ = exports.RouterInputThumbnailDetails$ = exports.RouterInputSourceMetadataDetails$ = exports.RouterInputMessage$ = exports.RouterInput$ = exports.RistRouterOutputConfiguration$ = exports.RistRouterInputConfiguration$ = exports.RevokeFlowEntitlementResponse$ = exports.RevokeFlowEntitlementRequest$ = exports.RestartRouterOutputResponse$ = exports.RestartRouterOutputRequest$ = exports.RestartRouterInputResponse$ = exports.RestartRouterInputRequest$ = exports.ResourceSpecification$ = exports.Reservation$ = exports.RemoveFlowVpcInterfaceResponse$ = exports.RemoveFlowVpcInterfaceRequest$ = exports.RemoveFlowSourceResponse$ = exports.RemoveFlowSourceRequest$ = exports.RemoveFlowOutputResponse$ = exports.RemoveFlowOutputRequest$ = exports.RemoveFlowMediaStreamResponse$ = exports.RemoveFlowMediaStreamRequest$ = exports.RemoveBridgeSourceResponse$ = exports.RemoveBridgeSourceRequest$ = exports.RemoveBridgeOutputResponse$ = exports.RemoveBridgeOutputRequest$ = exports.PurchaseOfferingResponse$ = exports.PurchaseOfferingRequest$ = exports.PublicRouterNetworkInterfaceRule$ = exports.PublicRouterNetworkInterfaceConfiguration$ = exports.PreferredDayTimeMaintenanceConfiguration$ = exports.Output$ = exports.Offering$ = exports.NdiSourceSettings$ = exports.NdiSourceMetadataInfo$ = exports.NdiSourceInfo$ = exports.NdiMediaStreamInfo$ = void 0;
|
|
8
|
+
exports.UpdateFlowMediaStreamResponse$ = exports.UpdateFlowMediaStreamRequest$ = exports.UpdateFlowEntitlementResponse$ = exports.UpdateFlowEntitlementRequest$ = exports.UpdateFailoverConfig$ = exports.UpdateEncryption$ = exports.UpdateEgressGatewayBridgeRequest$ = exports.UpdateBridgeStateResponse$ = exports.UpdateBridgeStateRequest$ = exports.UpdateBridgeSourceResponse$ = exports.UpdateBridgeSourceRequest$ = exports.UpdateBridgeResponse$ = exports.UpdateBridgeRequest$ = exports.UpdateBridgeOutputResponse$ = exports.UpdateBridgeOutputRequest$ = exports.UpdateBridgeNetworkSourceRequest$ = exports.UpdateBridgeNetworkOutputRequest$ = exports.UpdateBridgeFlowSourceRequest$ = exports.UntagResourceRequest$ = exports.UntagGlobalResourceRequest$ = exports.TransportStreamProgram$ = exports.TransportStream$ = exports.TransportMediaInfo$ = exports.Transport$ = exports.ThumbnailDetails$ = exports.TakeRouterInputResponse$ = exports.TakeRouterInputRequest$ = exports.TagResourceRequest$ = exports.TagGlobalResourceRequest$ = exports.StopRouterOutputResponse$ = exports.StopRouterOutputRequest$ = exports.StopRouterInputResponse$ = exports.StopRouterInputRequest$ = exports.StopFlowResponse$ = exports.StopFlowRequest$ = exports.StartRouterOutputResponse$ = exports.StartRouterOutputRequest$ = exports.StartRouterInputResponse$ = exports.StartRouterInputRequest$ = exports.StartFlowResponse$ = exports.StartFlowRequest$ = exports.StandardRouterOutputStreamDetails$ = exports.StandardRouterOutputConfiguration$ = exports.StandardRouterInputStreamDetails$ = exports.StandardRouterInputConfiguration$ = exports.SrtListenerRouterOutputConfiguration$ = exports.SrtListenerRouterInputConfiguration$ = exports.SrtEncryptionConfiguration$ = exports.SrtDecryptionConfiguration$ = exports.SrtCallerRouterOutputConfiguration$ = void 0;
|
|
9
|
+
exports.BatchGetRouterOutput$ = exports.BatchGetRouterNetworkInterface$ = exports.BatchGetRouterInput$ = exports.AddFlowVpcInterfaces$ = exports.AddFlowSources$ = exports.AddFlowOutputs$ = exports.AddFlowMediaStreams$ = exports.AddBridgeSources$ = exports.AddBridgeOutputs$ = exports.RouterOutputStreamDetails$ = exports.RouterOutputProtocolConfiguration$ = exports.RouterOutputFilter$ = exports.RouterOutputConfiguration$ = exports.RouterNetworkInterfaceFilter$ = exports.RouterNetworkInterfaceConfiguration$ = exports.RouterInputTransitEncryptionKeyConfiguration$ = exports.RouterInputStreamDetails$ = exports.RouterInputProtocolConfiguration$ = exports.RouterInputMetadata$ = exports.RouterInputFilter$ = exports.RouterInputConfiguration$ = exports.MergeRouterInputProtocolConfiguration$ = exports.MediaLiveTransitEncryptionKeyConfiguration$ = exports.MaintenanceSchedule$ = exports.MaintenanceConfiguration$ = exports.FlowTransitEncryptionKeyConfiguration$ = exports.FailoverRouterInputProtocolConfiguration$ = exports.WindowMaintenanceSchedule$ = exports.VpcRouterNetworkInterfaceConfiguration$ = exports.VpcInterfaceRequest$ = exports.VpcInterfaceAttachment$ = exports.VpcInterface$ = exports.VideoMonitoringSetting$ = exports.UpdateRouterOutputResponse$ = exports.UpdateRouterOutputRequest$ = exports.UpdateRouterNetworkInterfaceResponse$ = exports.UpdateRouterNetworkInterfaceRequest$ = exports.UpdateRouterInputResponse$ = exports.UpdateRouterInputRequest$ = exports.UpdateMaintenance$ = exports.UpdateIngressGatewayBridgeRequest$ = exports.UpdateGatewayInstanceResponse$ = exports.UpdateGatewayInstanceRequest$ = exports.UpdateGatewayBridgeSourceRequest$ = exports.UpdateFlowSourceResponse$ = exports.UpdateFlowSourceRequest$ = exports.UpdateFlowResponse$ = exports.UpdateFlowRequest$ = exports.UpdateFlowOutputResponse$ = exports.UpdateFlowOutputRequest$ = void 0;
|
|
10
|
+
exports.StartFlow$ = exports.RevokeFlowEntitlement$ = exports.RestartRouterOutput$ = exports.RestartRouterInput$ = exports.RemoveFlowVpcInterface$ = exports.RemoveFlowSource$ = exports.RemoveFlowOutput$ = exports.RemoveFlowMediaStream$ = exports.RemoveBridgeSource$ = exports.RemoveBridgeOutput$ = exports.PurchaseOffering$ = exports.ListTagsForResource$ = exports.ListTagsForGlobalResource$ = exports.ListRouterOutputs$ = exports.ListRouterNetworkInterfaces$ = exports.ListRouterInputs$ = exports.ListReservations$ = exports.ListOfferings$ = exports.ListGateways$ = exports.ListGatewayInstances$ = exports.ListFlows$ = exports.ListEntitlements$ = exports.ListBridges$ = exports.GrantFlowEntitlements$ = exports.GetRouterOutput$ = exports.GetRouterNetworkInterface$ = exports.GetRouterInputThumbnail$ = exports.GetRouterInputSourceMetadata$ = exports.GetRouterInput$ = exports.DescribeReservation$ = exports.DescribeOffering$ = exports.DescribeGatewayInstance$ = exports.DescribeGateway$ = exports.DescribeFlowSourceThumbnail$ = exports.DescribeFlowSourceMetadata$ = exports.DescribeFlow$ = exports.DescribeBridge$ = exports.DeregisterGatewayInstance$ = exports.DeleteRouterOutput$ = exports.DeleteRouterNetworkInterface$ = exports.DeleteRouterInput$ = exports.DeleteGateway$ = exports.DeleteFlow$ = exports.DeleteBridge$ = exports.CreateRouterOutput$ = exports.CreateRouterNetworkInterface$ = exports.CreateRouterInput$ = exports.CreateGateway$ = exports.CreateFlow$ = exports.CreateBridge$ = void 0;
|
|
11
|
+
exports.UpdateRouterOutput$ = exports.UpdateRouterNetworkInterface$ = exports.UpdateRouterInput$ = exports.UpdateGatewayInstance$ = exports.UpdateFlowSource$ = exports.UpdateFlowOutput$ = exports.UpdateFlowMediaStream$ = exports.UpdateFlowEntitlement$ = exports.UpdateFlow$ = exports.UpdateBridgeState$ = exports.UpdateBridgeSource$ = exports.UpdateBridgeOutput$ = exports.UpdateBridge$ = exports.UntagResource$ = exports.UntagGlobalResource$ = exports.TakeRouterInput$ = exports.TagResource$ = exports.TagGlobalResource$ = exports.StopRouterOutput$ = exports.StopRouterInput$ = exports.StopFlow$ = exports.StartRouterOutput$ = exports.StartRouterInput$ = void 0;
|
|
12
12
|
const _A = "Attributes";
|
|
13
13
|
const _ABFSR = "AddBridgeFlowSourceRequest";
|
|
14
14
|
const _ABNOR = "AddBridgeNetworkOutputRequest";
|
|
@@ -362,6 +362,11 @@ const _MDe = "MessageDetail";
|
|
|
362
362
|
const _MI = "MulticastIp";
|
|
363
363
|
const _MIe = "MediaInfo";
|
|
364
364
|
const _ML = "MaxLatency";
|
|
365
|
+
const _MLC = "MediaLiveChannel";
|
|
366
|
+
const _MLCA = "MediaLiveChannelArn";
|
|
367
|
+
const _MLCON = "MediaLiveChannelOutputName";
|
|
368
|
+
const _MLCRIC = "MediaLiveChannelRouterInputConfiguration";
|
|
369
|
+
const _MLCRISD = "MediaLiveChannelRouterInputStreamDetails";
|
|
365
370
|
const _MLI = "MediaLiveInput";
|
|
366
371
|
const _MLIA = "MediaLiveInputArn";
|
|
367
372
|
const _MLIROC = "MediaLiveInputRouterOutputConfiguration";
|
|
@@ -930,6 +935,9 @@ const _mDa = "maintenanceDeadline";
|
|
|
930
935
|
const _mI = "multicastIp";
|
|
931
936
|
const _mIe = "mediaInfo";
|
|
932
937
|
const _mL = "maxLatency";
|
|
938
|
+
const _mLC = "mediaLiveChannel";
|
|
939
|
+
const _mLCA = "mediaLiveChannelArn";
|
|
940
|
+
const _mLCON = "mediaLiveChannelOutputName";
|
|
933
941
|
const _mLI = "mediaLiveInput";
|
|
934
942
|
const _mLIA = "mediaLiveInputArn";
|
|
935
943
|
const _mLM = "minimumLatencyMilliseconds";
|
|
@@ -2035,6 +2043,16 @@ exports.MediaConnectFlowRouterOutputStreamDetails$ = [3, n0, _MCFROSD,
|
|
|
2035
2043
|
[],
|
|
2036
2044
|
[]
|
|
2037
2045
|
];
|
|
2046
|
+
exports.MediaLiveChannelRouterInputConfiguration$ = [3, n0, _MLCRIC,
|
|
2047
|
+
0,
|
|
2048
|
+
[_STD, _MLCA, _MLPI, _MLCON],
|
|
2049
|
+
[[() => exports.MediaLiveTransitEncryption$, { [_jN]: _sTD }], [0, { [_jN]: _mLCA }], [0, { [_jN]: _mLPI }], [0, { [_jN]: _mLCON }]], 1
|
|
2050
|
+
];
|
|
2051
|
+
exports.MediaLiveChannelRouterInputStreamDetails$ = [3, n0, _MLCRISD,
|
|
2052
|
+
0,
|
|
2053
|
+
[],
|
|
2054
|
+
[]
|
|
2055
|
+
];
|
|
2038
2056
|
exports.MediaLiveInputRouterOutputConfiguration$ = [3, n0, _MLIROC,
|
|
2039
2057
|
0,
|
|
2040
2058
|
[_DTE, _MLIA, _MLPI],
|
|
@@ -2985,8 +3003,8 @@ var StringList = 64 | 0;
|
|
|
2985
3003
|
var __mapOfString = 128 | 0;
|
|
2986
3004
|
exports.FailoverRouterInputProtocolConfiguration$ = [4, n0, _FRIPC,
|
|
2987
3005
|
0,
|
|
2988
|
-
[
|
|
2989
|
-
[[() => exports.
|
|
3006
|
+
[_Ri, _SLr, _SC, _Rt],
|
|
3007
|
+
[[() => exports.RistRouterInputConfiguration$, { [_jN]: _ri }], [() => exports.SrtListenerRouterInputConfiguration$, { [_jN]: _sLr }], [() => exports.SrtCallerRouterInputConfiguration$, { [_jN]: _sC }], [() => exports.RtpRouterInputConfiguration$, { [_jN]: _rt }]]
|
|
2990
3008
|
];
|
|
2991
3009
|
exports.FlowTransitEncryptionKeyConfiguration$ = [4, n0, _FTEKC,
|
|
2992
3010
|
0,
|
|
@@ -3015,13 +3033,13 @@ exports.MergeRouterInputProtocolConfiguration$ = [4, n0, _MRIPC,
|
|
|
3015
3033
|
];
|
|
3016
3034
|
exports.RouterInputConfiguration$ = [4, n0, _RIC,
|
|
3017
3035
|
0,
|
|
3018
|
-
[_Stan, _Fa,
|
|
3019
|
-
[[() => exports.StandardRouterInputConfiguration$, { [_jN]: _stan }], [() => exports.
|
|
3036
|
+
[_Stan, _MLC, _Fa, _MCF, _Mer],
|
|
3037
|
+
[[() => exports.StandardRouterInputConfiguration$, { [_jN]: _stan }], [() => exports.MediaLiveChannelRouterInputConfiguration$, { [_jN]: _mLC }], [() => exports.FailoverRouterInputConfiguration$, { [_jN]: _fa }], [() => exports.MediaConnectFlowRouterInputConfiguration$, { [_jN]: _mCF }], [() => exports.MergeRouterInputConfiguration$, { [_jN]: _mer }]]
|
|
3020
3038
|
];
|
|
3021
3039
|
exports.RouterInputFilter$ = [4, n0, _RIF,
|
|
3022
3040
|
0,
|
|
3023
|
-
[
|
|
3024
|
-
[[64 | 0, { [_jN]:
|
|
3041
|
+
[_NCa, _RNeg, _NIAe, _RSou, _ITn],
|
|
3042
|
+
[[64 | 0, { [_jN]: _nCa }], [64 | 0, { [_jN]: _rNeg }], [64 | 0, { [_jN]: _nIAe }], [64 | 0, { [_jN]: _rSou }], [64 | 0, { [_jN]: _iTnp }]]
|
|
3025
3043
|
];
|
|
3026
3044
|
exports.RouterInputMetadata$ = [4, n0, _RIMo,
|
|
3027
3045
|
0,
|
|
@@ -3030,13 +3048,13 @@ exports.RouterInputMetadata$ = [4, n0, _RIMo,
|
|
|
3030
3048
|
];
|
|
3031
3049
|
exports.RouterInputProtocolConfiguration$ = [4, n0, _RIPC,
|
|
3032
3050
|
0,
|
|
3033
|
-
[
|
|
3034
|
-
[[() => exports.
|
|
3051
|
+
[_Ri, _SLr, _SC, _Rt],
|
|
3052
|
+
[[() => exports.RistRouterInputConfiguration$, { [_jN]: _ri }], [() => exports.SrtListenerRouterInputConfiguration$, { [_jN]: _sLr }], [() => exports.SrtCallerRouterInputConfiguration$, { [_jN]: _sC }], [() => exports.RtpRouterInputConfiguration$, { [_jN]: _rt }]]
|
|
3035
3053
|
];
|
|
3036
3054
|
exports.RouterInputStreamDetails$ = [4, n0, _RISD,
|
|
3037
3055
|
0,
|
|
3038
|
-
[_Stan, _Fa,
|
|
3039
|
-
[[() => exports.StandardRouterInputStreamDetails$, { [_jN]: _stan }], [() => exports.
|
|
3056
|
+
[_Stan, _MLC, _Fa, _MCF, _Mer],
|
|
3057
|
+
[[() => exports.StandardRouterInputStreamDetails$, { [_jN]: _stan }], [() => exports.MediaLiveChannelRouterInputStreamDetails$, { [_jN]: _mLC }], [() => exports.FailoverRouterInputStreamDetails$, { [_jN]: _fa }], [() => exports.MediaConnectFlowRouterInputStreamDetails$, { [_jN]: _mCF }], [() => exports.MergeRouterInputStreamDetails$, { [_jN]: _mer }]]
|
|
3040
3058
|
];
|
|
3041
3059
|
exports.RouterInputTransitEncryptionKeyConfiguration$ = [4, n0, _RITEKC,
|
|
3042
3060
|
0,
|
|
@@ -3060,13 +3078,13 @@ exports.RouterOutputConfiguration$ = [4, n0, _ROC,
|
|
|
3060
3078
|
];
|
|
3061
3079
|
exports.RouterOutputFilter$ = [4, n0, _ROF,
|
|
3062
3080
|
0,
|
|
3063
|
-
[_RNeg,
|
|
3064
|
-
[[64 | 0, { [_jN]: _rNeg }], [64 | 0, { [_jN]:
|
|
3081
|
+
[_RNeg, _NIAe, _RSou, _OTut, _RIAou, _NCa],
|
|
3082
|
+
[[64 | 0, { [_jN]: _rNeg }], [64 | 0, { [_jN]: _nIAe }], [64 | 0, { [_jN]: _rSou }], [64 | 0, { [_jN]: _oTut }], [64 | 0, { [_jN]: _rIAou }], [64 | 0, { [_jN]: _nCa }]]
|
|
3065
3083
|
];
|
|
3066
3084
|
exports.RouterOutputProtocolConfiguration$ = [4, n0, _ROPC,
|
|
3067
3085
|
0,
|
|
3068
|
-
[
|
|
3069
|
-
[[() => exports.
|
|
3086
|
+
[_Ri, _SLr, _SC, _Rt],
|
|
3087
|
+
[[() => exports.RistRouterOutputConfiguration$, { [_jN]: _ri }], [() => exports.SrtListenerRouterOutputConfiguration$, { [_jN]: _sLr }], [() => exports.SrtCallerRouterOutputConfiguration$, { [_jN]: _sC }], [() => exports.RtpRouterOutputConfiguration$, { [_jN]: _rt }]]
|
|
3070
3088
|
];
|
|
3071
3089
|
exports.RouterOutputStreamDetails$ = [4, n0, _ROSD,
|
|
3072
3090
|
0,
|
package/dist-es/MediaConnect.js
CHANGED
|
@@ -201,16 +201,16 @@ const paginators = {
|
|
|
201
201
|
};
|
|
202
202
|
const waiters = {
|
|
203
203
|
waitUntilFlowActive,
|
|
204
|
-
waitUntilFlowDeleted,
|
|
205
204
|
waitUntilFlowStandby,
|
|
205
|
+
waitUntilFlowDeleted,
|
|
206
|
+
waitUntilInputActive,
|
|
206
207
|
waitUntilInputStandby,
|
|
207
208
|
waitUntilInputDeleted,
|
|
208
|
-
waitUntilInputActive,
|
|
209
|
-
waitUntilOutputUnrouted,
|
|
210
|
-
waitUntilOutputDeleted,
|
|
211
209
|
waitUntilOutputActive,
|
|
212
|
-
|
|
210
|
+
waitUntilOutputDeleted,
|
|
213
211
|
waitUntilOutputRouted,
|
|
212
|
+
waitUntilOutputStandby,
|
|
213
|
+
waitUntilOutputUnrouted,
|
|
214
214
|
};
|
|
215
215
|
export class MediaConnect extends MediaConnectClient {
|
|
216
216
|
}
|
package/dist-es/models/enums.js
CHANGED
|
@@ -162,6 +162,14 @@ export const FailoverInputSourcePriorityMode = {
|
|
|
162
162
|
NO_PRIORITY: "NO_PRIORITY",
|
|
163
163
|
PRIMARY_SECONDARY: "PRIMARY_SECONDARY",
|
|
164
164
|
};
|
|
165
|
+
export const MediaLiveChannelPipelineId = {
|
|
166
|
+
PIPELINE_0: "PIPELINE_0",
|
|
167
|
+
PIPELINE_1: "PIPELINE_1",
|
|
168
|
+
};
|
|
169
|
+
export const MediaLiveTransitEncryptionKeyType = {
|
|
170
|
+
AUTOMATIC: "AUTOMATIC",
|
|
171
|
+
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
172
|
+
};
|
|
165
173
|
export const RouterInputProtocol = {
|
|
166
174
|
RIST: "RIST",
|
|
167
175
|
RTP: "RTP",
|
|
@@ -171,6 +179,7 @@ export const RouterInputProtocol = {
|
|
|
171
179
|
export const RouterInputType = {
|
|
172
180
|
FAILOVER: "FAILOVER",
|
|
173
181
|
MEDIACONNECT_FLOW: "MEDIACONNECT_FLOW",
|
|
182
|
+
MEDIALIVE_CHANNEL: "MEDIALIVE_CHANNEL",
|
|
174
183
|
MERGE: "MERGE",
|
|
175
184
|
STANDARD: "STANDARD",
|
|
176
185
|
};
|
|
@@ -227,10 +236,6 @@ export const RouterNetworkInterfaceState = {
|
|
|
227
236
|
RECOVERING: "RECOVERING",
|
|
228
237
|
UPDATING: "UPDATING",
|
|
229
238
|
};
|
|
230
|
-
export const MediaLiveTransitEncryptionKeyType = {
|
|
231
|
-
AUTOMATIC: "AUTOMATIC",
|
|
232
|
-
SECRETS_MANAGER: "SECRETS_MANAGER",
|
|
233
|
-
};
|
|
234
239
|
export const MediaLiveInputPipelineId = {
|
|
235
240
|
PIPELINE_0: "PIPELINE_0",
|
|
236
241
|
PIPELINE_1: "PIPELINE_1",
|
|
@@ -351,6 +351,11 @@ const _MDe = "MessageDetail";
|
|
|
351
351
|
const _MI = "MulticastIp";
|
|
352
352
|
const _MIe = "MediaInfo";
|
|
353
353
|
const _ML = "MaxLatency";
|
|
354
|
+
const _MLC = "MediaLiveChannel";
|
|
355
|
+
const _MLCA = "MediaLiveChannelArn";
|
|
356
|
+
const _MLCON = "MediaLiveChannelOutputName";
|
|
357
|
+
const _MLCRIC = "MediaLiveChannelRouterInputConfiguration";
|
|
358
|
+
const _MLCRISD = "MediaLiveChannelRouterInputStreamDetails";
|
|
354
359
|
const _MLI = "MediaLiveInput";
|
|
355
360
|
const _MLIA = "MediaLiveInputArn";
|
|
356
361
|
const _MLIROC = "MediaLiveInputRouterOutputConfiguration";
|
|
@@ -919,6 +924,9 @@ const _mDa = "maintenanceDeadline";
|
|
|
919
924
|
const _mI = "multicastIp";
|
|
920
925
|
const _mIe = "mediaInfo";
|
|
921
926
|
const _mL = "maxLatency";
|
|
927
|
+
const _mLC = "mediaLiveChannel";
|
|
928
|
+
const _mLCA = "mediaLiveChannelArn";
|
|
929
|
+
const _mLCON = "mediaLiveChannelOutputName";
|
|
922
930
|
const _mLI = "mediaLiveInput";
|
|
923
931
|
const _mLIA = "mediaLiveInputArn";
|
|
924
932
|
const _mLM = "minimumLatencyMilliseconds";
|
|
@@ -2024,6 +2032,16 @@ export var MediaConnectFlowRouterOutputStreamDetails$ = [3, n0, _MCFROSD,
|
|
|
2024
2032
|
[],
|
|
2025
2033
|
[]
|
|
2026
2034
|
];
|
|
2035
|
+
export var MediaLiveChannelRouterInputConfiguration$ = [3, n0, _MLCRIC,
|
|
2036
|
+
0,
|
|
2037
|
+
[_STD, _MLCA, _MLPI, _MLCON],
|
|
2038
|
+
[[() => MediaLiveTransitEncryption$, { [_jN]: _sTD }], [0, { [_jN]: _mLCA }], [0, { [_jN]: _mLPI }], [0, { [_jN]: _mLCON }]], 1
|
|
2039
|
+
];
|
|
2040
|
+
export var MediaLiveChannelRouterInputStreamDetails$ = [3, n0, _MLCRISD,
|
|
2041
|
+
0,
|
|
2042
|
+
[],
|
|
2043
|
+
[]
|
|
2044
|
+
];
|
|
2027
2045
|
export var MediaLiveInputRouterOutputConfiguration$ = [3, n0, _MLIROC,
|
|
2028
2046
|
0,
|
|
2029
2047
|
[_DTE, _MLIA, _MLPI],
|
|
@@ -2974,8 +2992,8 @@ var StringList = 64 | 0;
|
|
|
2974
2992
|
var __mapOfString = 128 | 0;
|
|
2975
2993
|
export var FailoverRouterInputProtocolConfiguration$ = [4, n0, _FRIPC,
|
|
2976
2994
|
0,
|
|
2977
|
-
[
|
|
2978
|
-
[[() =>
|
|
2995
|
+
[_Ri, _SLr, _SC, _Rt],
|
|
2996
|
+
[[() => RistRouterInputConfiguration$, { [_jN]: _ri }], [() => SrtListenerRouterInputConfiguration$, { [_jN]: _sLr }], [() => SrtCallerRouterInputConfiguration$, { [_jN]: _sC }], [() => RtpRouterInputConfiguration$, { [_jN]: _rt }]]
|
|
2979
2997
|
];
|
|
2980
2998
|
export var FlowTransitEncryptionKeyConfiguration$ = [4, n0, _FTEKC,
|
|
2981
2999
|
0,
|
|
@@ -3004,13 +3022,13 @@ export var MergeRouterInputProtocolConfiguration$ = [4, n0, _MRIPC,
|
|
|
3004
3022
|
];
|
|
3005
3023
|
export var RouterInputConfiguration$ = [4, n0, _RIC,
|
|
3006
3024
|
0,
|
|
3007
|
-
[_Stan, _Fa,
|
|
3008
|
-
[[() => StandardRouterInputConfiguration$, { [_jN]: _stan }], [() =>
|
|
3025
|
+
[_Stan, _MLC, _Fa, _MCF, _Mer],
|
|
3026
|
+
[[() => StandardRouterInputConfiguration$, { [_jN]: _stan }], [() => MediaLiveChannelRouterInputConfiguration$, { [_jN]: _mLC }], [() => FailoverRouterInputConfiguration$, { [_jN]: _fa }], [() => MediaConnectFlowRouterInputConfiguration$, { [_jN]: _mCF }], [() => MergeRouterInputConfiguration$, { [_jN]: _mer }]]
|
|
3009
3027
|
];
|
|
3010
3028
|
export var RouterInputFilter$ = [4, n0, _RIF,
|
|
3011
3029
|
0,
|
|
3012
|
-
[
|
|
3013
|
-
[[64 | 0, { [_jN]:
|
|
3030
|
+
[_NCa, _RNeg, _NIAe, _RSou, _ITn],
|
|
3031
|
+
[[64 | 0, { [_jN]: _nCa }], [64 | 0, { [_jN]: _rNeg }], [64 | 0, { [_jN]: _nIAe }], [64 | 0, { [_jN]: _rSou }], [64 | 0, { [_jN]: _iTnp }]]
|
|
3014
3032
|
];
|
|
3015
3033
|
export var RouterInputMetadata$ = [4, n0, _RIMo,
|
|
3016
3034
|
0,
|
|
@@ -3019,13 +3037,13 @@ export var RouterInputMetadata$ = [4, n0, _RIMo,
|
|
|
3019
3037
|
];
|
|
3020
3038
|
export var RouterInputProtocolConfiguration$ = [4, n0, _RIPC,
|
|
3021
3039
|
0,
|
|
3022
|
-
[
|
|
3023
|
-
[[() =>
|
|
3040
|
+
[_Ri, _SLr, _SC, _Rt],
|
|
3041
|
+
[[() => RistRouterInputConfiguration$, { [_jN]: _ri }], [() => SrtListenerRouterInputConfiguration$, { [_jN]: _sLr }], [() => SrtCallerRouterInputConfiguration$, { [_jN]: _sC }], [() => RtpRouterInputConfiguration$, { [_jN]: _rt }]]
|
|
3024
3042
|
];
|
|
3025
3043
|
export var RouterInputStreamDetails$ = [4, n0, _RISD,
|
|
3026
3044
|
0,
|
|
3027
|
-
[_Stan, _Fa,
|
|
3028
|
-
[[() => StandardRouterInputStreamDetails$, { [_jN]: _stan }], [() =>
|
|
3045
|
+
[_Stan, _MLC, _Fa, _MCF, _Mer],
|
|
3046
|
+
[[() => StandardRouterInputStreamDetails$, { [_jN]: _stan }], [() => MediaLiveChannelRouterInputStreamDetails$, { [_jN]: _mLC }], [() => FailoverRouterInputStreamDetails$, { [_jN]: _fa }], [() => MediaConnectFlowRouterInputStreamDetails$, { [_jN]: _mCF }], [() => MergeRouterInputStreamDetails$, { [_jN]: _mer }]]
|
|
3029
3047
|
];
|
|
3030
3048
|
export var RouterInputTransitEncryptionKeyConfiguration$ = [4, n0, _RITEKC,
|
|
3031
3049
|
0,
|
|
@@ -3049,13 +3067,13 @@ export var RouterOutputConfiguration$ = [4, n0, _ROC,
|
|
|
3049
3067
|
];
|
|
3050
3068
|
export var RouterOutputFilter$ = [4, n0, _ROF,
|
|
3051
3069
|
0,
|
|
3052
|
-
[_RNeg,
|
|
3053
|
-
[[64 | 0, { [_jN]: _rNeg }], [64 | 0, { [_jN]:
|
|
3070
|
+
[_RNeg, _NIAe, _RSou, _OTut, _RIAou, _NCa],
|
|
3071
|
+
[[64 | 0, { [_jN]: _rNeg }], [64 | 0, { [_jN]: _nIAe }], [64 | 0, { [_jN]: _rSou }], [64 | 0, { [_jN]: _oTut }], [64 | 0, { [_jN]: _rIAou }], [64 | 0, { [_jN]: _nCa }]]
|
|
3054
3072
|
];
|
|
3055
3073
|
export var RouterOutputProtocolConfiguration$ = [4, n0, _ROPC,
|
|
3056
3074
|
0,
|
|
3057
|
-
[
|
|
3058
|
-
[[() =>
|
|
3075
|
+
[_Ri, _SLr, _SC, _Rt],
|
|
3076
|
+
[[() => RistRouterOutputConfiguration$, { [_jN]: _ri }], [() => SrtListenerRouterOutputConfiguration$, { [_jN]: _sLr }], [() => SrtCallerRouterOutputConfiguration$, { [_jN]: _sC }], [() => RtpRouterOutputConfiguration$, { [_jN]: _rt }]]
|
|
3059
3077
|
];
|
|
3060
3078
|
export var RouterOutputStreamDetails$ = [4, n0, _ROSD,
|
|
3061
3079
|
0,
|
package/dist-es/waiters/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export * from "./waitForFlowActive";
|
|
2
|
-
export * from "./waitForFlowDeleted";
|
|
3
2
|
export * from "./waitForFlowStandby";
|
|
3
|
+
export * from "./waitForFlowDeleted";
|
|
4
|
+
export * from "./waitForInputActive";
|
|
4
5
|
export * from "./waitForInputStandby";
|
|
5
6
|
export * from "./waitForInputDeleted";
|
|
6
|
-
export * from "./waitForInputActive";
|
|
7
|
-
export * from "./waitForOutputUnrouted";
|
|
8
|
-
export * from "./waitForOutputDeleted";
|
|
9
7
|
export * from "./waitForOutputActive";
|
|
10
|
-
export * from "./
|
|
8
|
+
export * from "./waitForOutputDeleted";
|
|
11
9
|
export * from "./waitForOutputRouted";
|
|
10
|
+
export * from "./waitForOutputStandby";
|
|
11
|
+
export * from "./waitForOutputUnrouted";
|
|
@@ -667,37 +667,37 @@ export interface MediaConnect {
|
|
|
667
667
|
* @param args - command input.
|
|
668
668
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
669
669
|
*/
|
|
670
|
-
|
|
670
|
+
waitUntilFlowStandby(args: DescribeFlowCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
671
671
|
/**
|
|
672
672
|
* @see {@link DescribeFlowCommand}
|
|
673
673
|
* @param args - command input.
|
|
674
674
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
675
675
|
*/
|
|
676
|
-
|
|
676
|
+
waitUntilFlowDeleted(args: DescribeFlowCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
677
677
|
/**
|
|
678
678
|
* @see {@link GetRouterInputCommand}
|
|
679
679
|
* @param args - command input.
|
|
680
680
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
681
681
|
*/
|
|
682
|
-
|
|
682
|
+
waitUntilInputActive(args: GetRouterInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
683
683
|
/**
|
|
684
684
|
* @see {@link GetRouterInputCommand}
|
|
685
685
|
* @param args - command input.
|
|
686
686
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
687
687
|
*/
|
|
688
|
-
|
|
688
|
+
waitUntilInputStandby(args: GetRouterInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
689
689
|
/**
|
|
690
690
|
* @see {@link GetRouterInputCommand}
|
|
691
691
|
* @param args - command input.
|
|
692
692
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
693
693
|
*/
|
|
694
|
-
|
|
694
|
+
waitUntilInputDeleted(args: GetRouterInputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
695
695
|
/**
|
|
696
696
|
* @see {@link GetRouterOutputCommand}
|
|
697
697
|
* @param args - command input.
|
|
698
698
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
699
699
|
*/
|
|
700
|
-
|
|
700
|
+
waitUntilOutputActive(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
701
701
|
/**
|
|
702
702
|
* @see {@link GetRouterOutputCommand}
|
|
703
703
|
* @param args - command input.
|
|
@@ -709,7 +709,7 @@ export interface MediaConnect {
|
|
|
709
709
|
* @param args - command input.
|
|
710
710
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
711
711
|
*/
|
|
712
|
-
|
|
712
|
+
waitUntilOutputRouted(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
713
713
|
/**
|
|
714
714
|
* @see {@link GetRouterOutputCommand}
|
|
715
715
|
* @param args - command input.
|
|
@@ -721,7 +721,7 @@ export interface MediaConnect {
|
|
|
721
721
|
* @param args - command input.
|
|
722
722
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
723
723
|
*/
|
|
724
|
-
|
|
724
|
+
waitUntilOutputUnrouted(args: GetRouterOutputCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MediaConnect>, "client">): Promise<WaiterResult>;
|
|
725
725
|
}
|
|
726
726
|
/**
|
|
727
727
|
* <p>Welcome to the Elemental MediaConnect API reference. </p> <p>MediaConnect is a service that lets you ingest live video content into the cloud and distribute it to destinations all over the world, both inside and outside the Amazon Web Services cloud. This API reference provides descriptions, syntax, and usage examples for each of the actions and data types that are supported by MediaConnect. </p> <p>Use the following links to get started with the MediaConnect API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/API_Operations.html">Actions</a>: An alphabetical list of all MediaConnect API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/API_Types.html">Data types</a>: An alphabetical list of all MediaConnect data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/CommonParameters.html">Common parameters</a>: Parameters that all operations can use.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/mediaconnect/latest/api/CommonErrors.html">Common errors</a>: Client and server errors that all operations can return.</p> </li> </ul>
|
|
@@ -50,15 +50,11 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
50
50
|
* // Arn: "STRING_VALUE", // required
|
|
51
51
|
* // Id: "STRING_VALUE", // required
|
|
52
52
|
* // State: "CREATING" || "STANDBY" || "STARTING" || "ACTIVE" || "STOPPING" || "DELETING" || "UPDATING" || "ERROR" || "RECOVERING" || "MIGRATING", // required
|
|
53
|
-
* // InputType: "STANDARD" || "FAILOVER" || "MERGE" || "MEDIACONNECT_FLOW", // required
|
|
53
|
+
* // InputType: "STANDARD" || "FAILOVER" || "MERGE" || "MEDIACONNECT_FLOW" || "MEDIALIVE_CHANNEL", // required
|
|
54
54
|
* // Configuration: { // RouterInputConfiguration Union: only one key present
|
|
55
55
|
* // Standard: { // StandardRouterInputConfiguration
|
|
56
56
|
* // NetworkInterfaceArn: "STRING_VALUE", // required
|
|
57
57
|
* // ProtocolConfiguration: { // RouterInputProtocolConfiguration Union: only one key present
|
|
58
|
-
* // Rtp: { // RtpRouterInputConfiguration
|
|
59
|
-
* // Port: Number("int"), // required
|
|
60
|
-
* // ForwardErrorCorrection: "ENABLED" || "DISABLED",
|
|
61
|
-
* // },
|
|
62
58
|
* // Rist: { // RistRouterInputConfiguration
|
|
63
59
|
* // Port: Number("int"), // required
|
|
64
60
|
* // RecoveryLatencyMilliseconds: Number("long"), // required
|
|
@@ -85,17 +81,32 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
85
81
|
* // },
|
|
86
82
|
* // },
|
|
87
83
|
* // },
|
|
84
|
+
* // Rtp: { // RtpRouterInputConfiguration
|
|
85
|
+
* // Port: Number("int"), // required
|
|
86
|
+
* // ForwardErrorCorrection: "ENABLED" || "DISABLED",
|
|
87
|
+
* // },
|
|
88
88
|
* // },
|
|
89
89
|
* // Protocol: "RTP" || "RIST" || "SRT_CALLER" || "SRT_LISTENER",
|
|
90
90
|
* // },
|
|
91
|
+
* // MediaLiveChannel: { // MediaLiveChannelRouterInputConfiguration
|
|
92
|
+
* // MediaLiveChannelArn: "STRING_VALUE",
|
|
93
|
+
* // MediaLivePipelineId: "PIPELINE_0" || "PIPELINE_1",
|
|
94
|
+
* // MediaLiveChannelOutputName: "STRING_VALUE",
|
|
95
|
+
* // SourceTransitDecryption: { // MediaLiveTransitEncryption
|
|
96
|
+
* // EncryptionKeyType: "SECRETS_MANAGER" || "AUTOMATIC",
|
|
97
|
+
* // EncryptionKeyConfiguration: { // MediaLiveTransitEncryptionKeyConfiguration Union: only one key present
|
|
98
|
+
* // SecretsManager: {
|
|
99
|
+
* // SecretArn: "STRING_VALUE", // required
|
|
100
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
101
|
+
* // },
|
|
102
|
+
* // Automatic: {},
|
|
103
|
+
* // },
|
|
104
|
+
* // },
|
|
105
|
+
* // },
|
|
91
106
|
* // Failover: { // FailoverRouterInputConfiguration
|
|
92
107
|
* // NetworkInterfaceArn: "STRING_VALUE", // required
|
|
93
108
|
* // ProtocolConfigurations: [ // FailoverRouterInputProtocolConfigurationList // required
|
|
94
109
|
* // { // FailoverRouterInputProtocolConfiguration Union: only one key present
|
|
95
|
-
* // Rtp: {
|
|
96
|
-
* // Port: Number("int"), // required
|
|
97
|
-
* // ForwardErrorCorrection: "ENABLED" || "DISABLED",
|
|
98
|
-
* // },
|
|
99
110
|
* // Rist: {
|
|
100
111
|
* // Port: Number("int"), // required
|
|
101
112
|
* // RecoveryLatencyMilliseconds: Number("long"), // required
|
|
@@ -104,10 +115,7 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
104
115
|
* // Port: Number("int"), // required
|
|
105
116
|
* // MinimumLatencyMilliseconds: Number("long"), // required
|
|
106
117
|
* // DecryptionConfiguration: {
|
|
107
|
-
* // EncryptionKey:
|
|
108
|
-
* // SecretArn: "STRING_VALUE", // required
|
|
109
|
-
* // RoleArn: "STRING_VALUE", // required
|
|
110
|
-
* // },
|
|
118
|
+
* // EncryptionKey: "<SecretsManagerEncryptionKeyConfiguration>", // required
|
|
111
119
|
* // },
|
|
112
120
|
* // },
|
|
113
121
|
* // SrtCaller: {
|
|
@@ -116,17 +124,29 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
116
124
|
* // MinimumLatencyMilliseconds: Number("long"), // required
|
|
117
125
|
* // StreamId: "STRING_VALUE",
|
|
118
126
|
* // DecryptionConfiguration: {
|
|
119
|
-
* // EncryptionKey:
|
|
120
|
-
* // SecretArn: "STRING_VALUE", // required
|
|
121
|
-
* // RoleArn: "STRING_VALUE", // required
|
|
122
|
-
* // },
|
|
127
|
+
* // EncryptionKey: "<SecretsManagerEncryptionKeyConfiguration>", // required
|
|
123
128
|
* // },
|
|
124
129
|
* // },
|
|
130
|
+
* // Rtp: {
|
|
131
|
+
* // Port: Number("int"), // required
|
|
132
|
+
* // ForwardErrorCorrection: "ENABLED" || "DISABLED",
|
|
133
|
+
* // },
|
|
125
134
|
* // },
|
|
126
135
|
* // ],
|
|
127
136
|
* // SourcePriorityMode: "NO_PRIORITY" || "PRIMARY_SECONDARY", // required
|
|
128
137
|
* // PrimarySourceIndex: Number("int"),
|
|
129
138
|
* // },
|
|
139
|
+
* // MediaConnectFlow: { // MediaConnectFlowRouterInputConfiguration
|
|
140
|
+
* // FlowArn: "STRING_VALUE",
|
|
141
|
+
* // FlowOutputArn: "STRING_VALUE",
|
|
142
|
+
* // SourceTransitDecryption: { // FlowTransitEncryption
|
|
143
|
+
* // EncryptionKeyType: "SECRETS_MANAGER" || "AUTOMATIC",
|
|
144
|
+
* // EncryptionKeyConfiguration: { // FlowTransitEncryptionKeyConfiguration Union: only one key present
|
|
145
|
+
* // SecretsManager: "<SecretsManagerEncryptionKeyConfiguration>",
|
|
146
|
+
* // Automatic: {},
|
|
147
|
+
* // },
|
|
148
|
+
* // },
|
|
149
|
+
* // },
|
|
130
150
|
* // Merge: { // MergeRouterInputConfiguration
|
|
131
151
|
* // NetworkInterfaceArn: "STRING_VALUE", // required
|
|
132
152
|
* // ProtocolConfigurations: [ // MergeRouterInputProtocolConfigurationList // required
|
|
@@ -143,17 +163,6 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
143
163
|
* // ],
|
|
144
164
|
* // MergeRecoveryWindowMilliseconds: Number("long"), // required
|
|
145
165
|
* // },
|
|
146
|
-
* // MediaConnectFlow: { // MediaConnectFlowRouterInputConfiguration
|
|
147
|
-
* // FlowArn: "STRING_VALUE",
|
|
148
|
-
* // FlowOutputArn: "STRING_VALUE",
|
|
149
|
-
* // SourceTransitDecryption: { // FlowTransitEncryption
|
|
150
|
-
* // EncryptionKeyType: "SECRETS_MANAGER" || "AUTOMATIC",
|
|
151
|
-
* // EncryptionKeyConfiguration: { // FlowTransitEncryptionKeyConfiguration Union: only one key present
|
|
152
|
-
* // SecretsManager: "<SecretsManagerEncryptionKeyConfiguration>",
|
|
153
|
-
* // Automatic: {},
|
|
154
|
-
* // },
|
|
155
|
-
* // },
|
|
156
|
-
* // },
|
|
157
166
|
* // },
|
|
158
167
|
* // RoutedOutputs: Number("int"), // required
|
|
159
168
|
* // MaximumRoutedOutputs: Number("int"),
|
|
@@ -184,6 +193,7 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
184
193
|
* // Standard: { // StandardRouterInputStreamDetails
|
|
185
194
|
* // SourceIpAddress: "STRING_VALUE",
|
|
186
195
|
* // },
|
|
196
|
+
* // MediaLiveChannel: {},
|
|
187
197
|
* // Failover: { // FailoverRouterInputStreamDetails
|
|
188
198
|
* // SourceIndexZeroStreamDetails: { // FailoverRouterInputIndexedStreamDetails
|
|
189
199
|
* // SourceIndex: Number("int"), // required
|
|
@@ -194,6 +204,7 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
194
204
|
* // SourceIpAddress: "STRING_VALUE",
|
|
195
205
|
* // },
|
|
196
206
|
* // },
|
|
207
|
+
* // MediaConnectFlow: {},
|
|
197
208
|
* // Merge: { // MergeRouterInputStreamDetails
|
|
198
209
|
* // SourceIndexZeroStreamDetails: { // MergeRouterInputIndexedStreamDetails
|
|
199
210
|
* // SourceIndex: Number("int"), // required
|
|
@@ -204,7 +215,6 @@ declare const BatchGetRouterInputCommand_base: {
|
|
|
204
215
|
* // SourceIpAddress: "STRING_VALUE",
|
|
205
216
|
* // },
|
|
206
217
|
* // },
|
|
207
|
-
* // MediaConnectFlow: {},
|
|
208
218
|
* // },
|
|
209
219
|
* // IpAddress: "STRING_VALUE",
|
|
210
220
|
* // MaintenanceType: "PREFERRED_DAY_TIME" || "DEFAULT", // required
|