@aws-sdk/client-mediaconvert 3.58.0 → 3.74.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 +27 -0
- package/README.md +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -1
- package/dist-cjs/commands/PutPolicyCommand.js +3 -3
- package/dist-cjs/models/models_0.js +12 -11
- package/dist-cjs/models/models_1.js +21 -24
- package/dist-cjs/models/models_2.js +19 -1
- package/dist-cjs/protocols/Aws_restJson1.js +6 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -1
- package/dist-es/commands/PutPolicyCommand.js +1 -1
- package/dist-es/models/models_0.js +11 -10
- package/dist-es/models/models_1.js +15 -12
- package/dist-es/models/models_2.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +9 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +19 -10
- package/dist-types/models/models_1.d.ts +17 -37
- package/dist-types/models/models_2.d.ts +37 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +14 -9
- package/dist-types/ts3.4/models/models_1.d.ts +15 -25
- package/dist-types/ts3.4/models/models_2.d.ts +25 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.74.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.73.0...v3.74.0) (2022-04-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.72.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.71.0...v3.72.0) (2022-04-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **client-mediaconvert:** AWS Elemental MediaConvert SDK has added support for the pass-through of WebVTT styling to WebVTT outputs, pass-through of KLV metadata to supported formats, and improved filter support for processing 444/RGB content. ([d49135a](https://github.com/aws/aws-sdk-js-v3/commit/d49135a6cb3e625afa608a31de8119ef8cc72c76))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
package/README.md
CHANGED
|
@@ -115,7 +115,7 @@ but they are supported by the send operation.
|
|
|
115
115
|
```js
|
|
116
116
|
// callbacks.
|
|
117
117
|
client.send(command, (err, data) => {
|
|
118
|
-
//
|
|
118
|
+
// process err and data.
|
|
119
119
|
});
|
|
120
120
|
```
|
|
121
121
|
|
|
@@ -149,7 +149,7 @@ client
|
|
|
149
149
|
|
|
150
150
|
// callbacks.
|
|
151
151
|
client.associateCertificate(params, (err, data) => {
|
|
152
|
-
//
|
|
152
|
+
// process err and data.
|
|
153
153
|
});
|
|
154
154
|
```
|
|
155
155
|
|
|
@@ -4,6 +4,7 @@ exports.ListTagsForResourceCommand = void 0;
|
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
6
|
const models_1_1 = require("../models/models_1");
|
|
7
|
+
const models_2_1 = require("../models/models_2");
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
9
10
|
constructor(input) {
|
|
@@ -21,7 +22,7 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
|
21
22
|
clientName,
|
|
22
23
|
commandName,
|
|
23
24
|
inputFilterSensitiveLog: models_1_1.ListTagsForResourceRequest.filterSensitiveLog,
|
|
24
|
-
outputFilterSensitiveLog:
|
|
25
|
+
outputFilterSensitiveLog: models_2_1.ListTagsForResourceResponse.filterSensitiveLog,
|
|
25
26
|
};
|
|
26
27
|
const { requestHandler } = configuration;
|
|
27
28
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.PutPolicyCommand = void 0;
|
|
4
4
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
-
const
|
|
6
|
+
const models_2_1 = require("../models/models_2");
|
|
7
7
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
8
|
class PutPolicyCommand extends smithy_client_1.Command {
|
|
9
9
|
constructor(input) {
|
|
@@ -20,8 +20,8 @@ class PutPolicyCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.PutPolicyRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_2_1.PutPolicyResponse.filterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,7 +5,7 @@ exports.TeletextDestinationSettings = exports.TeletextPageType = exports.SrtDest
|
|
|
5
5
|
exports.InputTimecodeSource = exports.InputPsiControl = exports.InputScanType = exports.InputClipping = exports.ImageInserter = exports.InsertableImage = exports.InputFilterEnable = exports.InputDenoiseFilter = exports.InputDecryptionSettings = exports.DecryptionMode = exports.InputDeblockFilter = exports.Rectangle = exports.CaptionSelector = exports.CaptionSourceSettings = exports.WebvttHlsSourceSettings = exports.TrackSourceSettings = exports.TeletextSourceSettings = exports.CaptionSourceType = exports.FileSourceSettings = exports.FileSourceTimeDeltaUnits = exports.CaptionSourceFramerate = exports.FileSourceConvert608To708 = exports.EmbeddedSourceSettings = exports.EmbeddedTerminateCaptions = exports.EmbeddedConvert608To708 = exports.DvbSubSourceSettings = exports.AncillarySourceSettings = exports.AncillaryTerminateCaptions = exports.AncillaryConvert608To708 = exports.AudioSelector = exports.AudioSelectorType = exports.HlsRenditionGroupSettings = exports.AudioDefaultSelection = exports.AudioSelectorGroup = exports.Id3Insertion = exports.HopDestination = exports.HlsCaptionLanguageMapping = exports.HlsAdMarkers = exports.HlsAdditionalManifest = exports.Endpoint = exports.DashAdditionalManifest = exports.CmafAdditionalManifest = exports.CaptionDescriptionPreset = exports.CaptionDescription = exports.CaptionDestinationSettings = exports.WebvttDestinationSettings = exports.WebvttStylePassthrough = exports.WebvttAccessibilitySubs = exports.TtmlDestinationSettings = exports.TtmlStylePassthrough = void 0;
|
|
6
6
|
exports.CmafInitializationVectorInManifest = exports.CmafEncryptionType = exports.DestinationSettings = exports.S3DestinationSettings = exports.S3EncryptionSettings = exports.S3ServerSideEncryptionType = exports.S3DestinationAccessControl = exports.S3ObjectCannedAcl = exports.CmafCodecSpecification = exports.CmafClientCache = exports.AutomatedEncodingSettings = exports.AutomatedAbrSettings = exports.NielsenNonLinearWatermarkSettings = exports.NielsenUniqueTicPerAudioTrackType = exports.NielsenSourceWatermarkStatusType = exports.NielsenActiveWatermarkProcessType = exports.NielsenConfiguration = exports.MotionImageInserter = exports.MotionImagePlayback = exports.MotionImageInsertionOffset = exports.MotionImageInsertionMode = exports.MotionImageInsertionFramerate = exports.KantarWatermarkSettings = exports.ExtendedDataServices = exports.VchipAction = exports.CopyProtectionAction = exports.EsamSettings = exports.EsamSignalProcessingNotification = exports.EsamManifestConfirmConditionNotification = exports.AvailBlanking = exports.QueueTransition = exports.OutputGroupDetail = exports.OutputDetail = exports.VideoDetail = exports.JobMessages = exports.JobPhase = exports.BillingTagsSource = exports.AccelerationStatus = exports.AccelerationSettings = exports.AccelerationMode = exports.InputTemplate = exports.Input = exports.VideoSelector = exports.InputSampleRange = exports.InputRotate = exports.Hdr10Metadata = exports.EmbeddedTimecodeOverride = exports.ColorSpaceUsage = exports.ColorSpace = exports.AlphaBehavior = void 0;
|
|
7
7
|
exports.HlsManifestDurationFormat = exports.HlsManifestCompression = exports.HlsImageBasedTrickPlaySettings = exports.HlsIntervalCadence = exports.HlsImageBasedTrickPlay = exports.HlsEncryptionSettings = exports.HlsKeyProviderType = exports.HlsOfflineEncrypted = exports.HlsInitializationVectorInManifest = exports.HlsEncryptionType = exports.HlsDirectoryStructure = exports.HlsCodecSpecification = exports.HlsClientCache = exports.HlsCaptionSegmentLengthControl = exports.HlsCaptionLanguageSetting = exports.HlsAudioOnlyHeader = exports.FileGroupSettings = exports.DashIsoGroupSettings = exports.DashIsoWriteSegmentTimelineInRepresentation = exports.DashIsoSegmentLengthControl = exports.DashIsoSegmentControl = exports.DashIsoPtsOffsetHandlingForBFrames = exports.DashIsoMpdProfile = exports.DashIsoImageBasedTrickPlaySettings = exports.DashIsoIntervalCadence = exports.DashIsoImageBasedTrickPlay = exports.DashIsoHbbtvCompliance = exports.DashIsoEncryptionSettings = exports.SpekeKeyProvider = exports.DashIsoPlaybackDeviceCompatibility = exports.DashIsoGroupAudioChannelConfigSchemeIdUri = exports.CmafGroupSettings = exports.CmafWriteSegmentTimelineInRepresentation = exports.CmafWriteHLSManifest = exports.CmafWriteDASHManifest = exports.CmafTargetDurationCompatibilityMode = exports.CmafStreamInfResolution = exports.CmafSegmentLengthControl = exports.CmafSegmentControl = exports.CmafPtsOffsetHandlingForBFrames = exports.CmafMpdProfile = exports.CmafManifestDurationFormat = exports.CmafManifestCompression = exports.CmafImageBasedTrickPlaySettings = exports.CmafIntervalCadence = exports.CmafImageBasedTrickPlay = exports.CmafEncryptionSettings = exports.CmafKeyProviderType = exports.StaticKeyProvider = exports.SpekeKeyProviderCmaf = void 0;
|
|
8
|
-
exports.
|
|
8
|
+
exports.M3u8AudioDuration = exports.M2tsSettings = exports.M2tsSegmentationStyle = exports.M2tsSegmentationMarkers = exports.M2tsScte35Source = exports.M2tsScte35Esam = exports.M2tsRateMode = exports.M2tsPcrControl = exports.M2tsNielsenId3 = exports.M2tsKlvMetadata = exports.M2tsForceTsVideoEbpOrder = exports.M2tsEsRateInPes = exports.M2tsEbpPlacement = exports.M2tsEbpAudioInterval = exports.DvbTdtSettings = exports.DvbSdtSettings = exports.OutputSdt = exports.DvbNitSettings = exports.M2tsDataPtsControl = exports.M2tsBufferModel = exports.M2tsAudioDuration = exports.M2tsAudioBufferModel = exports.F4vSettings = exports.F4vMoovPlacement = exports.ContainerType = exports.CmfcSettings = exports.CmfcTimedMetadata = exports.CmfcScte35Source = exports.CmfcScte35Esam = exports.CmfcKlvMetadata = exports.CmfcIFrameOnlyManifest = exports.CmfcDescriptiveVideoServiceFlag = exports.CmfcAudioTrackType = exports.CmfcAudioDuration = exports.OutputGroupSettings = exports.OutputGroupType = exports.MsSmoothGroupSettings = exports.MsSmoothManifestEncoding = exports.MsSmoothFragmentLengthControl = exports.MsSmoothEncryptionSettings = exports.MsSmoothAudioDeduplication = exports.MsSmoothAdditionalManifest = exports.HlsGroupSettings = exports.HlsTimedMetadataId3Frame = exports.HlsTargetDurationCompatibilityMode = exports.HlsStreamInfResolution = exports.HlsSegmentLengthControl = exports.HlsSegmentControl = exports.HlsProgramDateTime = exports.HlsOutputSelection = void 0;
|
|
9
9
|
var AudioChannelTag;
|
|
10
10
|
(function (AudioChannelTag) {
|
|
11
11
|
AudioChannelTag["C"] = "C";
|
|
@@ -875,6 +875,7 @@ var WebvttStylePassthrough;
|
|
|
875
875
|
(function (WebvttStylePassthrough) {
|
|
876
876
|
WebvttStylePassthrough["DISABLED"] = "DISABLED";
|
|
877
877
|
WebvttStylePassthrough["ENABLED"] = "ENABLED";
|
|
878
|
+
WebvttStylePassthrough["STRICT"] = "STRICT";
|
|
878
879
|
})(WebvttStylePassthrough = exports.WebvttStylePassthrough || (exports.WebvttStylePassthrough = {}));
|
|
879
880
|
var WebvttDestinationSettings;
|
|
880
881
|
(function (WebvttDestinationSettings) {
|
|
@@ -1824,6 +1825,11 @@ var CmfcIFrameOnlyManifest;
|
|
|
1824
1825
|
CmfcIFrameOnlyManifest["EXCLUDE"] = "EXCLUDE";
|
|
1825
1826
|
CmfcIFrameOnlyManifest["INCLUDE"] = "INCLUDE";
|
|
1826
1827
|
})(CmfcIFrameOnlyManifest = exports.CmfcIFrameOnlyManifest || (exports.CmfcIFrameOnlyManifest = {}));
|
|
1828
|
+
var CmfcKlvMetadata;
|
|
1829
|
+
(function (CmfcKlvMetadata) {
|
|
1830
|
+
CmfcKlvMetadata["NONE"] = "NONE";
|
|
1831
|
+
CmfcKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
1832
|
+
})(CmfcKlvMetadata = exports.CmfcKlvMetadata || (exports.CmfcKlvMetadata = {}));
|
|
1827
1833
|
var CmfcScte35Esam;
|
|
1828
1834
|
(function (CmfcScte35Esam) {
|
|
1829
1835
|
CmfcScte35Esam["INSERT"] = "INSERT";
|
|
@@ -1935,6 +1941,11 @@ var M2tsForceTsVideoEbpOrder;
|
|
|
1935
1941
|
M2tsForceTsVideoEbpOrder["DEFAULT"] = "DEFAULT";
|
|
1936
1942
|
M2tsForceTsVideoEbpOrder["FORCE"] = "FORCE";
|
|
1937
1943
|
})(M2tsForceTsVideoEbpOrder = exports.M2tsForceTsVideoEbpOrder || (exports.M2tsForceTsVideoEbpOrder = {}));
|
|
1944
|
+
var M2tsKlvMetadata;
|
|
1945
|
+
(function (M2tsKlvMetadata) {
|
|
1946
|
+
M2tsKlvMetadata["NONE"] = "NONE";
|
|
1947
|
+
M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
1948
|
+
})(M2tsKlvMetadata = exports.M2tsKlvMetadata || (exports.M2tsKlvMetadata = {}));
|
|
1938
1949
|
var M2tsNielsenId3;
|
|
1939
1950
|
(function (M2tsNielsenId3) {
|
|
1940
1951
|
M2tsNielsenId3["INSERT"] = "INSERT";
|
|
@@ -1986,13 +1997,3 @@ var M3u8AudioDuration;
|
|
|
1986
1997
|
M3u8AudioDuration["DEFAULT_CODEC_DURATION"] = "DEFAULT_CODEC_DURATION";
|
|
1987
1998
|
M3u8AudioDuration["MATCH_VIDEO_DURATION"] = "MATCH_VIDEO_DURATION";
|
|
1988
1999
|
})(M3u8AudioDuration = exports.M3u8AudioDuration || (exports.M3u8AudioDuration = {}));
|
|
1989
|
-
var M3u8DataPtsControl;
|
|
1990
|
-
(function (M3u8DataPtsControl) {
|
|
1991
|
-
M3u8DataPtsControl["ALIGN_TO_VIDEO"] = "ALIGN_TO_VIDEO";
|
|
1992
|
-
M3u8DataPtsControl["AUTO"] = "AUTO";
|
|
1993
|
-
})(M3u8DataPtsControl = exports.M3u8DataPtsControl || (exports.M3u8DataPtsControl = {}));
|
|
1994
|
-
var M3u8NielsenId3;
|
|
1995
|
-
(function (M3u8NielsenId3) {
|
|
1996
|
-
M3u8NielsenId3["INSERT"] = "INSERT";
|
|
1997
|
-
M3u8NielsenId3["NONE"] = "NONE";
|
|
1998
|
-
})(M3u8NielsenId3 = exports.M3u8NielsenId3 || (exports.M3u8NielsenId3 = {}));
|
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
3
|
+
exports.AvcIntraFramerateControl = exports.AvcIntraUhdSettings = exports.AvcIntraUhdQualityTuningLevel = exports.AvcIntraClass = exports.Av1Settings = exports.Av1SpatialAdaptiveQuantization = exports.Av1RateControlMode = exports.Av1QvbrSettings = exports.Av1FramerateConversionAlgorithm = exports.Av1FramerateControl = exports.Av1BitDepth = exports.Av1AdaptiveQuantization = exports.AntiAlias = exports.AfdSignaling = exports.OutputSettings = exports.HlsSettings = exports.HlsIFrameOnlyManifest = exports.HlsDescriptiveVideoServiceFlag = exports.HlsAudioTrackType = exports.HlsAudioOnlyContainer = exports.ContainerSettings = exports.MxfSettings = exports.MxfXavcProfileSettings = exports.MxfXavcDurationMode = exports.MxfProfile = exports.MxfAfdSignaling = exports.MpdSettings = exports.MpdTimedMetadata = exports.MpdScte35Source = exports.MpdScte35Esam = exports.MpdKlvMetadata = exports.MpdCaptionContainerType = exports.MpdAudioDuration = exports.MpdAccessibilityCaptionHints = exports.Mp4Settings = exports.Mp4MoovPlacement = exports.Mp4FreeSpaceBox = exports.Mp4CslgAtom = exports.MovSettings = exports.MovReference = exports.MovPaddingControl = exports.MovMpeg2FourCCControl = exports.MovCslgAtom = exports.MovClapAtom = exports.M3u8Settings = exports.TimedMetadata = exports.M3u8Scte35Source = exports.M3u8PcrControl = exports.M3u8NielsenId3 = exports.M3u8DataPtsControl = void 0;
|
|
4
|
+
exports.H265SampleAdaptiveOffsetFilterMode = exports.H265RateControlMode = exports.H265QvbrSettings = exports.H265QualityTuningLevel = exports.H265ParControl = exports.H265InterlaceMode = exports.H265GopSizeUnits = exports.H265GopBReference = exports.H265FramerateConversionAlgorithm = exports.H265FramerateControl = exports.H265FlickerAdaptiveQuantization = exports.H265DynamicSubGop = exports.H265CodecProfile = exports.H265CodecLevel = exports.H265AlternateTransferFunctionSei = exports.H265AdaptiveQuantization = exports.H264Settings = exports.H264UnregisteredSeiTimecode = exports.H264TemporalAdaptiveQuantization = exports.H264Telecine = exports.H264Syntax = exports.H264SpatialAdaptiveQuantization = exports.H264SlowPal = exports.H264SceneChangeDetect = exports.H264ScanTypeConversionMode = exports.H264RepeatPps = exports.H264RateControlMode = exports.H264QvbrSettings = exports.H264QualityTuningLevel = exports.H264ParControl = exports.H264InterlaceMode = exports.H264GopSizeUnits = exports.H264GopBReference = exports.H264FramerateConversionAlgorithm = exports.H264FramerateControl = exports.H264FlickerAdaptiveQuantization = exports.H264FieldEncoding = exports.H264EntropyEncoding = exports.H264DynamicSubGop = exports.H264CodecProfile = exports.H264CodecLevel = exports.H264AdaptiveQuantization = exports.FrameCaptureSettings = exports.VideoCodec = exports.AvcIntraSettings = exports.AvcIntraTelecine = exports.AvcIntraSlowPal = exports.AvcIntraScanTypeConversionMode = exports.AvcIntraInterlaceMode = exports.AvcIntraFramerateConversionAlgorithm = void 0;
|
|
5
|
+
exports.Vp8FramerateControl = exports.Vc3Settings = exports.Vc3Class = exports.Vc3Telecine = exports.Vc3SlowPal = exports.Vc3ScanTypeConversionMode = exports.Vc3InterlaceMode = exports.Vc3FramerateConversionAlgorithm = exports.Vc3FramerateControl = exports.ProresSettings = exports.ProresTelecine = exports.ProresSlowPal = exports.ProresScanTypeConversionMode = exports.ProresParControl = exports.ProresInterlaceMode = exports.ProresFramerateConversionAlgorithm = exports.ProresFramerateControl = exports.ProresCodecProfile = exports.ProresChromaSampling = exports.Mpeg2Settings = exports.Mpeg2TemporalAdaptiveQuantization = exports.Mpeg2Telecine = exports.Mpeg2Syntax = exports.Mpeg2SpatialAdaptiveQuantization = exports.Mpeg2SlowPal = exports.Mpeg2SceneChangeDetect = exports.Mpeg2ScanTypeConversionMode = exports.Mpeg2RateControlMode = exports.Mpeg2QualityTuningLevel = exports.Mpeg2ParControl = exports.Mpeg2IntraDcPrecision = exports.Mpeg2InterlaceMode = exports.Mpeg2GopSizeUnits = exports.Mpeg2FramerateConversionAlgorithm = exports.Mpeg2FramerateControl = exports.Mpeg2DynamicSubGop = exports.Mpeg2CodecProfile = exports.Mpeg2CodecLevel = exports.Mpeg2AdaptiveQuantization = exports.H265Settings = exports.H265WriteMp4PackagingType = exports.H265UnregisteredSeiTimecode = exports.H265Tiles = exports.H265TemporalIds = exports.H265TemporalAdaptiveQuantization = exports.H265Telecine = exports.H265SpatialAdaptiveQuantization = exports.H265SlowPal = exports.H265SceneChangeDetect = exports.H265ScanTypeConversionMode = void 0;
|
|
6
|
+
exports.Deinterlacer = exports.DeinterlacerMode = exports.DeinterlacerControl = exports.DeinterlaceAlgorithm = exports.ColorCorrector = exports.SampleRangeConversion = exports.ColorSpaceConversion = exports.VideoTimecodeInsertion = exports.ScalingBehavior = exports.RespondToAfd = exports.DropFrameTimecode = exports.ColorMetadata = exports.VideoCodecSettings = exports.XavcSettings = exports.XavcHdProfileSettings = exports.XavcHdProfileTelecine = exports.XavcHdProfileQualityTuningLevel = exports.XavcInterlaceMode = exports.XavcHdProfileBitrateClass = exports.XavcHdIntraCbgProfileSettings = exports.XavcHdIntraCbgProfileClass = exports.Xavc4kProfileSettings = exports.Xavc4kProfileQualityTuningLevel = exports.XavcGopBReference = exports.XavcFlickerAdaptiveQuantization = exports.Xavc4kProfileCodecProfile = exports.Xavc4kProfileBitrateClass = exports.Xavc4kIntraVbrProfileSettings = exports.Xavc4kIntraVbrProfileClass = exports.Xavc4kIntraCbgProfileSettings = exports.Xavc4kIntraCbgProfileClass = exports.XavcTemporalAdaptiveQuantization = exports.XavcSpatialAdaptiveQuantization = exports.XavcSlowPal = exports.XavcProfile = exports.XavcFramerateConversionAlgorithm = exports.XavcFramerateControl = exports.XavcEntropyEncoding = exports.XavcAdaptiveQuantization = exports.Vp9Settings = exports.Vp9RateControlMode = exports.Vp9QualityTuningLevel = exports.Vp9ParControl = exports.Vp9FramerateConversionAlgorithm = exports.Vp9FramerateControl = exports.Vp8Settings = exports.Vp8RateControlMode = exports.Vp8QualityTuningLevel = exports.Vp8ParControl = exports.Vp8FramerateConversionAlgorithm = void 0;
|
|
7
|
+
exports.TooManyRequestsException = exports.NotFoundException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = exports.AssociateCertificateResponse = exports.AssociateCertificateRequest = exports.Queue = exports.QueueStatus = exports.ReservationPlan = exports.ReservationPlanStatus = exports.RenewalType = exports.Commitment = exports.PricingPlan = exports.Preset = exports.PresetSettings = exports.JobTemplate = exports.Type = exports.JobTemplateSettings = exports.Job = exports.Timing = exports.StatusUpdateInterval = exports.JobStatus = exports.SimulateReservedQueue = exports.JobSettings = exports.TimedMetadataInsertion = exports.TimecodeConfig = exports.TimecodeSource = exports.OutputGroup = exports.Output = exports.VideoDescription = exports.VideoPreprocessor = exports.TimecodeBurnin = exports.TimecodeBurninPosition = exports.PartnerWatermarking = exports.NexGuardFileMarkerSettings = exports.WatermarkingStrength = exports.NoiseReducer = exports.NoiseReducerTemporalFilterSettings = exports.NoiseFilterPostTemporalSharpeningStrength = exports.NoiseFilterPostTemporalSharpening = exports.NoiseReducerSpatialFilterSettings = exports.NoiseReducerFilterSettings = exports.NoiseReducerFilter = exports.Hdr10Plus = exports.DolbyVision = exports.DolbyVisionProfile = exports.DolbyVisionLevel6Mode = exports.DolbyVisionLevel6Metadata = void 0;
|
|
8
|
+
exports.ResourceTags = exports.ListTagsForResourceRequest = exports.ListQueuesResponse = exports.ListQueuesRequest = exports.QueueListBy = exports.ListPresetsResponse = exports.ListPresetsRequest = exports.PresetListBy = exports.ListJobTemplatesResponse = exports.ListJobTemplatesRequest = exports.ListJobsResponse = exports.ListJobsRequest = exports.Order = exports.JobTemplateListBy = exports.GetQueueResponse = exports.GetQueueRequest = exports.GetPresetResponse = exports.GetPresetRequest = exports.GetPolicyResponse = exports.Policy = exports.InputPolicy = exports.GetPolicyRequest = exports.GetJobTemplateResponse = exports.GetJobTemplateRequest = exports.GetJobResponse = exports.GetJobRequest = exports.DisassociateCertificateResponse = exports.DisassociateCertificateRequest = exports.DescribeEndpointsResponse = exports.DescribeEndpointsRequest = exports.DescribeEndpointsMode = exports.DeleteQueueResponse = exports.DeleteQueueRequest = exports.DeletePresetResponse = exports.DeletePresetRequest = exports.DeletePolicyResponse = exports.DeletePolicyRequest = exports.DeleteJobTemplateResponse = exports.DeleteJobTemplateRequest = exports.CreateQueueResponse = exports.CreateQueueRequest = exports.ReservationPlanSettings = exports.CreatePresetResponse = exports.CreatePresetRequest = exports.CreateJobTemplateResponse = exports.CreateJobTemplateRequest = exports.CreateJobResponse = exports.CreateJobRequest = exports.CancelJobResponse = exports.CancelJobRequest = void 0;
|
|
9
9
|
const MediaConvertServiceException_1 = require("./MediaConvertServiceException");
|
|
10
|
+
var M3u8DataPtsControl;
|
|
11
|
+
(function (M3u8DataPtsControl) {
|
|
12
|
+
M3u8DataPtsControl["ALIGN_TO_VIDEO"] = "ALIGN_TO_VIDEO";
|
|
13
|
+
M3u8DataPtsControl["AUTO"] = "AUTO";
|
|
14
|
+
})(M3u8DataPtsControl = exports.M3u8DataPtsControl || (exports.M3u8DataPtsControl = {}));
|
|
15
|
+
var M3u8NielsenId3;
|
|
16
|
+
(function (M3u8NielsenId3) {
|
|
17
|
+
M3u8NielsenId3["INSERT"] = "INSERT";
|
|
18
|
+
M3u8NielsenId3["NONE"] = "NONE";
|
|
19
|
+
})(M3u8NielsenId3 = exports.M3u8NielsenId3 || (exports.M3u8NielsenId3 = {}));
|
|
10
20
|
var M3u8PcrControl;
|
|
11
21
|
(function (M3u8PcrControl) {
|
|
12
22
|
M3u8PcrControl["CONFIGURED_PCR_PERIOD"] = "CONFIGURED_PCR_PERIOD";
|
|
@@ -95,6 +105,11 @@ var MpdCaptionContainerType;
|
|
|
95
105
|
MpdCaptionContainerType["FRAGMENTED_MP4"] = "FRAGMENTED_MP4";
|
|
96
106
|
MpdCaptionContainerType["RAW"] = "RAW";
|
|
97
107
|
})(MpdCaptionContainerType = exports.MpdCaptionContainerType || (exports.MpdCaptionContainerType = {}));
|
|
108
|
+
var MpdKlvMetadata;
|
|
109
|
+
(function (MpdKlvMetadata) {
|
|
110
|
+
MpdKlvMetadata["NONE"] = "NONE";
|
|
111
|
+
MpdKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
112
|
+
})(MpdKlvMetadata = exports.MpdKlvMetadata || (exports.MpdKlvMetadata = {}));
|
|
98
113
|
var MpdScte35Esam;
|
|
99
114
|
(function (MpdScte35Esam) {
|
|
100
115
|
MpdScte35Esam["INSERT"] = "INSERT";
|
|
@@ -1826,21 +1841,3 @@ var ResourceTags;
|
|
|
1826
1841
|
...obj,
|
|
1827
1842
|
});
|
|
1828
1843
|
})(ResourceTags = exports.ResourceTags || (exports.ResourceTags = {}));
|
|
1829
|
-
var ListTagsForResourceResponse;
|
|
1830
|
-
(function (ListTagsForResourceResponse) {
|
|
1831
|
-
ListTagsForResourceResponse.filterSensitiveLog = (obj) => ({
|
|
1832
|
-
...obj,
|
|
1833
|
-
});
|
|
1834
|
-
})(ListTagsForResourceResponse = exports.ListTagsForResourceResponse || (exports.ListTagsForResourceResponse = {}));
|
|
1835
|
-
var PutPolicyRequest;
|
|
1836
|
-
(function (PutPolicyRequest) {
|
|
1837
|
-
PutPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
1838
|
-
...obj,
|
|
1839
|
-
});
|
|
1840
|
-
})(PutPolicyRequest = exports.PutPolicyRequest || (exports.PutPolicyRequest = {}));
|
|
1841
|
-
var PutPolicyResponse;
|
|
1842
|
-
(function (PutPolicyResponse) {
|
|
1843
|
-
PutPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
1844
|
-
...obj,
|
|
1845
|
-
});
|
|
1846
|
-
})(PutPolicyResponse = exports.PutPolicyResponse || (exports.PutPolicyResponse = {}));
|
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateQueueResponse = exports.UpdateQueueRequest = exports.UpdatePresetResponse = exports.UpdatePresetRequest = exports.UpdateJobTemplateResponse = exports.UpdateJobTemplateRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = void 0;
|
|
3
|
+
exports.UpdateQueueResponse = exports.UpdateQueueRequest = exports.UpdatePresetResponse = exports.UpdatePresetRequest = exports.UpdateJobTemplateResponse = exports.UpdateJobTemplateRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.PutPolicyResponse = exports.PutPolicyRequest = exports.ListTagsForResourceResponse = void 0;
|
|
4
|
+
var ListTagsForResourceResponse;
|
|
5
|
+
(function (ListTagsForResourceResponse) {
|
|
6
|
+
ListTagsForResourceResponse.filterSensitiveLog = (obj) => ({
|
|
7
|
+
...obj,
|
|
8
|
+
});
|
|
9
|
+
})(ListTagsForResourceResponse = exports.ListTagsForResourceResponse || (exports.ListTagsForResourceResponse = {}));
|
|
10
|
+
var PutPolicyRequest;
|
|
11
|
+
(function (PutPolicyRequest) {
|
|
12
|
+
PutPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
13
|
+
...obj,
|
|
14
|
+
});
|
|
15
|
+
})(PutPolicyRequest = exports.PutPolicyRequest || (exports.PutPolicyRequest = {}));
|
|
16
|
+
var PutPolicyResponse;
|
|
17
|
+
(function (PutPolicyResponse) {
|
|
18
|
+
PutPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
19
|
+
...obj,
|
|
20
|
+
});
|
|
21
|
+
})(PutPolicyResponse = exports.PutPolicyResponse || (exports.PutPolicyResponse = {}));
|
|
4
22
|
var TagResourceRequest;
|
|
5
23
|
(function (TagResourceRequest) {
|
|
6
24
|
TagResourceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -3166,6 +3166,7 @@ const serializeAws_restJson1CmfcSettings = (input, context) => {
|
|
|
3166
3166
|
input.DescriptiveVideoServiceFlag !== null && { descriptiveVideoServiceFlag: input.DescriptiveVideoServiceFlag }),
|
|
3167
3167
|
...(input.IFrameOnlyManifest !== undefined &&
|
|
3168
3168
|
input.IFrameOnlyManifest !== null && { iFrameOnlyManifest: input.IFrameOnlyManifest }),
|
|
3169
|
+
...(input.KlvMetadata !== undefined && input.KlvMetadata !== null && { klvMetadata: input.KlvMetadata }),
|
|
3169
3170
|
...(input.Scte35Esam !== undefined && input.Scte35Esam !== null && { scte35Esam: input.Scte35Esam }),
|
|
3170
3171
|
...(input.Scte35Source !== undefined && input.Scte35Source !== null && { scte35Source: input.Scte35Source }),
|
|
3171
3172
|
...(input.TimedMetadata !== undefined && input.TimedMetadata !== null && { timedMetadata: input.TimedMetadata }),
|
|
@@ -4225,6 +4226,7 @@ const serializeAws_restJson1M2tsSettings = (input, context) => {
|
|
|
4225
4226
|
input.ForceTsVideoEbpOrder !== null && { forceTsVideoEbpOrder: input.ForceTsVideoEbpOrder }),
|
|
4226
4227
|
...(input.FragmentTime !== undefined &&
|
|
4227
4228
|
input.FragmentTime !== null && { fragmentTime: (0, smithy_client_1.serializeFloat)(input.FragmentTime) }),
|
|
4229
|
+
...(input.KlvMetadata !== undefined && input.KlvMetadata !== null && { klvMetadata: input.KlvMetadata }),
|
|
4228
4230
|
...(input.MaxPcrInterval !== undefined &&
|
|
4229
4231
|
input.MaxPcrInterval !== null && { maxPcrInterval: input.MaxPcrInterval }),
|
|
4230
4232
|
...(input.MinEbpInterval !== undefined &&
|
|
@@ -4363,6 +4365,7 @@ const serializeAws_restJson1MpdSettings = (input, context) => {
|
|
|
4363
4365
|
...(input.AudioDuration !== undefined && input.AudioDuration !== null && { audioDuration: input.AudioDuration }),
|
|
4364
4366
|
...(input.CaptionContainerType !== undefined &&
|
|
4365
4367
|
input.CaptionContainerType !== null && { captionContainerType: input.CaptionContainerType }),
|
|
4368
|
+
...(input.KlvMetadata !== undefined && input.KlvMetadata !== null && { klvMetadata: input.KlvMetadata }),
|
|
4366
4369
|
...(input.Scte35Esam !== undefined && input.Scte35Esam !== null && { scte35Esam: input.Scte35Esam }),
|
|
4367
4370
|
...(input.Scte35Source !== undefined && input.Scte35Source !== null && { scte35Source: input.Scte35Source }),
|
|
4368
4371
|
...(input.TimedMetadata !== undefined && input.TimedMetadata !== null && { timedMetadata: input.TimedMetadata }),
|
|
@@ -6031,6 +6034,7 @@ const deserializeAws_restJson1CmfcSettings = (output, context) => {
|
|
|
6031
6034
|
AudioTrackType: (0, smithy_client_1.expectString)(output.audioTrackType),
|
|
6032
6035
|
DescriptiveVideoServiceFlag: (0, smithy_client_1.expectString)(output.descriptiveVideoServiceFlag),
|
|
6033
6036
|
IFrameOnlyManifest: (0, smithy_client_1.expectString)(output.iFrameOnlyManifest),
|
|
6037
|
+
KlvMetadata: (0, smithy_client_1.expectString)(output.klvMetadata),
|
|
6034
6038
|
Scte35Esam: (0, smithy_client_1.expectString)(output.scte35Esam),
|
|
6035
6039
|
Scte35Source: (0, smithy_client_1.expectString)(output.scte35Source),
|
|
6036
6040
|
TimedMetadata: (0, smithy_client_1.expectString)(output.timedMetadata),
|
|
@@ -6926,6 +6930,7 @@ const deserializeAws_restJson1M2tsSettings = (output, context) => {
|
|
|
6926
6930
|
EsRateInPes: (0, smithy_client_1.expectString)(output.esRateInPes),
|
|
6927
6931
|
ForceTsVideoEbpOrder: (0, smithy_client_1.expectString)(output.forceTsVideoEbpOrder),
|
|
6928
6932
|
FragmentTime: (0, smithy_client_1.limitedParseDouble)(output.fragmentTime),
|
|
6933
|
+
KlvMetadata: (0, smithy_client_1.expectString)(output.klvMetadata),
|
|
6929
6934
|
MaxPcrInterval: (0, smithy_client_1.expectInt32)(output.maxPcrInterval),
|
|
6930
6935
|
MinEbpInterval: (0, smithy_client_1.expectInt32)(output.minEbpInterval),
|
|
6931
6936
|
NielsenId3: (0, smithy_client_1.expectString)(output.nielsenId3),
|
|
@@ -7042,6 +7047,7 @@ const deserializeAws_restJson1MpdSettings = (output, context) => {
|
|
|
7042
7047
|
AccessibilityCaptionHints: (0, smithy_client_1.expectString)(output.accessibilityCaptionHints),
|
|
7043
7048
|
AudioDuration: (0, smithy_client_1.expectString)(output.audioDuration),
|
|
7044
7049
|
CaptionContainerType: (0, smithy_client_1.expectString)(output.captionContainerType),
|
|
7050
|
+
KlvMetadata: (0, smithy_client_1.expectString)(output.klvMetadata),
|
|
7045
7051
|
Scte35Esam: (0, smithy_client_1.expectString)(output.scte35Esam),
|
|
7046
7052
|
Scte35Source: (0, smithy_client_1.expectString)(output.scte35Source),
|
|
7047
7053
|
TimedMetadata: (0, smithy_client_1.expectString)(output.timedMetadata),
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListTagsForResourceRequest
|
|
4
|
+
import { ListTagsForResourceRequest } from "../models/models_1";
|
|
5
|
+
import { ListTagsForResourceResponse } from "../models/models_2";
|
|
5
6
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
7
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
8
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { PutPolicyRequest, PutPolicyResponse } from "../models/
|
|
4
|
+
import { PutPolicyRequest, PutPolicyResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_restJson1PutPolicyCommand, serializeAws_restJson1PutPolicyCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PutPolicyCommand = (function (_super) {
|
|
7
7
|
__extends(PutPolicyCommand, _super);
|
|
@@ -818,6 +818,7 @@ export var WebvttStylePassthrough;
|
|
|
818
818
|
(function (WebvttStylePassthrough) {
|
|
819
819
|
WebvttStylePassthrough["DISABLED"] = "DISABLED";
|
|
820
820
|
WebvttStylePassthrough["ENABLED"] = "ENABLED";
|
|
821
|
+
WebvttStylePassthrough["STRICT"] = "STRICT";
|
|
821
822
|
})(WebvttStylePassthrough || (WebvttStylePassthrough = {}));
|
|
822
823
|
export var WebvttDestinationSettings;
|
|
823
824
|
(function (WebvttDestinationSettings) {
|
|
@@ -1621,6 +1622,11 @@ export var CmfcIFrameOnlyManifest;
|
|
|
1621
1622
|
CmfcIFrameOnlyManifest["EXCLUDE"] = "EXCLUDE";
|
|
1622
1623
|
CmfcIFrameOnlyManifest["INCLUDE"] = "INCLUDE";
|
|
1623
1624
|
})(CmfcIFrameOnlyManifest || (CmfcIFrameOnlyManifest = {}));
|
|
1625
|
+
export var CmfcKlvMetadata;
|
|
1626
|
+
(function (CmfcKlvMetadata) {
|
|
1627
|
+
CmfcKlvMetadata["NONE"] = "NONE";
|
|
1628
|
+
CmfcKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
1629
|
+
})(CmfcKlvMetadata || (CmfcKlvMetadata = {}));
|
|
1624
1630
|
export var CmfcScte35Esam;
|
|
1625
1631
|
(function (CmfcScte35Esam) {
|
|
1626
1632
|
CmfcScte35Esam["INSERT"] = "INSERT";
|
|
@@ -1722,6 +1728,11 @@ export var M2tsForceTsVideoEbpOrder;
|
|
|
1722
1728
|
M2tsForceTsVideoEbpOrder["DEFAULT"] = "DEFAULT";
|
|
1723
1729
|
M2tsForceTsVideoEbpOrder["FORCE"] = "FORCE";
|
|
1724
1730
|
})(M2tsForceTsVideoEbpOrder || (M2tsForceTsVideoEbpOrder = {}));
|
|
1731
|
+
export var M2tsKlvMetadata;
|
|
1732
|
+
(function (M2tsKlvMetadata) {
|
|
1733
|
+
M2tsKlvMetadata["NONE"] = "NONE";
|
|
1734
|
+
M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
1735
|
+
})(M2tsKlvMetadata || (M2tsKlvMetadata = {}));
|
|
1725
1736
|
export var M2tsNielsenId3;
|
|
1726
1737
|
(function (M2tsNielsenId3) {
|
|
1727
1738
|
M2tsNielsenId3["INSERT"] = "INSERT";
|
|
@@ -1769,13 +1780,3 @@ export var M3u8AudioDuration;
|
|
|
1769
1780
|
M3u8AudioDuration["DEFAULT_CODEC_DURATION"] = "DEFAULT_CODEC_DURATION";
|
|
1770
1781
|
M3u8AudioDuration["MATCH_VIDEO_DURATION"] = "MATCH_VIDEO_DURATION";
|
|
1771
1782
|
})(M3u8AudioDuration || (M3u8AudioDuration = {}));
|
|
1772
|
-
export var M3u8DataPtsControl;
|
|
1773
|
-
(function (M3u8DataPtsControl) {
|
|
1774
|
-
M3u8DataPtsControl["ALIGN_TO_VIDEO"] = "ALIGN_TO_VIDEO";
|
|
1775
|
-
M3u8DataPtsControl["AUTO"] = "AUTO";
|
|
1776
|
-
})(M3u8DataPtsControl || (M3u8DataPtsControl = {}));
|
|
1777
|
-
export var M3u8NielsenId3;
|
|
1778
|
-
(function (M3u8NielsenId3) {
|
|
1779
|
-
M3u8NielsenId3["INSERT"] = "INSERT";
|
|
1780
|
-
M3u8NielsenId3["NONE"] = "NONE";
|
|
1781
|
-
})(M3u8NielsenId3 || (M3u8NielsenId3 = {}));
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
+
export var M3u8DataPtsControl;
|
|
4
|
+
(function (M3u8DataPtsControl) {
|
|
5
|
+
M3u8DataPtsControl["ALIGN_TO_VIDEO"] = "ALIGN_TO_VIDEO";
|
|
6
|
+
M3u8DataPtsControl["AUTO"] = "AUTO";
|
|
7
|
+
})(M3u8DataPtsControl || (M3u8DataPtsControl = {}));
|
|
8
|
+
export var M3u8NielsenId3;
|
|
9
|
+
(function (M3u8NielsenId3) {
|
|
10
|
+
M3u8NielsenId3["INSERT"] = "INSERT";
|
|
11
|
+
M3u8NielsenId3["NONE"] = "NONE";
|
|
12
|
+
})(M3u8NielsenId3 || (M3u8NielsenId3 = {}));
|
|
3
13
|
export var M3u8PcrControl;
|
|
4
14
|
(function (M3u8PcrControl) {
|
|
5
15
|
M3u8PcrControl["CONFIGURED_PCR_PERIOD"] = "CONFIGURED_PCR_PERIOD";
|
|
@@ -82,6 +92,11 @@ export var MpdCaptionContainerType;
|
|
|
82
92
|
MpdCaptionContainerType["FRAGMENTED_MP4"] = "FRAGMENTED_MP4";
|
|
83
93
|
MpdCaptionContainerType["RAW"] = "RAW";
|
|
84
94
|
})(MpdCaptionContainerType || (MpdCaptionContainerType = {}));
|
|
95
|
+
export var MpdKlvMetadata;
|
|
96
|
+
(function (MpdKlvMetadata) {
|
|
97
|
+
MpdKlvMetadata["NONE"] = "NONE";
|
|
98
|
+
MpdKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
99
|
+
})(MpdKlvMetadata || (MpdKlvMetadata = {}));
|
|
85
100
|
export var MpdScte35Esam;
|
|
86
101
|
(function (MpdScte35Esam) {
|
|
87
102
|
MpdScte35Esam["INSERT"] = "INSERT";
|
|
@@ -1607,15 +1622,3 @@ export var ResourceTags;
|
|
|
1607
1622
|
(function (ResourceTags) {
|
|
1608
1623
|
ResourceTags.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1609
1624
|
})(ResourceTags || (ResourceTags = {}));
|
|
1610
|
-
export var ListTagsForResourceResponse;
|
|
1611
|
-
(function (ListTagsForResourceResponse) {
|
|
1612
|
-
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1613
|
-
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
1614
|
-
export var PutPolicyRequest;
|
|
1615
|
-
(function (PutPolicyRequest) {
|
|
1616
|
-
PutPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1617
|
-
})(PutPolicyRequest || (PutPolicyRequest = {}));
|
|
1618
|
-
export var PutPolicyResponse;
|
|
1619
|
-
(function (PutPolicyResponse) {
|
|
1620
|
-
PutPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1621
|
-
})(PutPolicyResponse || (PutPolicyResponse = {}));
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var ListTagsForResourceResponse;
|
|
3
|
+
(function (ListTagsForResourceResponse) {
|
|
4
|
+
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
+
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
6
|
+
export var PutPolicyRequest;
|
|
7
|
+
(function (PutPolicyRequest) {
|
|
8
|
+
PutPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
|
+
})(PutPolicyRequest || (PutPolicyRequest = {}));
|
|
10
|
+
export var PutPolicyResponse;
|
|
11
|
+
(function (PutPolicyResponse) {
|
|
12
|
+
PutPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
|
+
})(PutPolicyResponse || (PutPolicyResponse = {}));
|
|
2
14
|
export var TagResourceRequest;
|
|
3
15
|
(function (TagResourceRequest) {
|
|
4
16
|
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -3631,11 +3631,11 @@ var serializeAws_restJson1CmafImageBasedTrickPlaySettings = function (input, con
|
|
|
3631
3631
|
input.ThumbnailWidth !== null && { thumbnailWidth: input.ThumbnailWidth })), (input.TileHeight !== undefined && input.TileHeight !== null && { tileHeight: input.TileHeight })), (input.TileWidth !== undefined && input.TileWidth !== null && { tileWidth: input.TileWidth }));
|
|
3632
3632
|
};
|
|
3633
3633
|
var serializeAws_restJson1CmfcSettings = function (input, context) {
|
|
3634
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioDuration !== undefined && input.AudioDuration !== null && { audioDuration: input.AudioDuration })), (input.AudioGroupId !== undefined && input.AudioGroupId !== null && { audioGroupId: input.AudioGroupId })), (input.AudioRenditionSets !== undefined &&
|
|
3634
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioDuration !== undefined && input.AudioDuration !== null && { audioDuration: input.AudioDuration })), (input.AudioGroupId !== undefined && input.AudioGroupId !== null && { audioGroupId: input.AudioGroupId })), (input.AudioRenditionSets !== undefined &&
|
|
3635
3635
|
input.AudioRenditionSets !== null && { audioRenditionSets: input.AudioRenditionSets })), (input.AudioTrackType !== undefined &&
|
|
3636
3636
|
input.AudioTrackType !== null && { audioTrackType: input.AudioTrackType })), (input.DescriptiveVideoServiceFlag !== undefined &&
|
|
3637
3637
|
input.DescriptiveVideoServiceFlag !== null && { descriptiveVideoServiceFlag: input.DescriptiveVideoServiceFlag })), (input.IFrameOnlyManifest !== undefined &&
|
|
3638
|
-
input.IFrameOnlyManifest !== null && { iFrameOnlyManifest: input.IFrameOnlyManifest })), (input.Scte35Esam !== undefined && input.Scte35Esam !== null && { scte35Esam: input.Scte35Esam })), (input.Scte35Source !== undefined && input.Scte35Source !== null && { scte35Source: input.Scte35Source })), (input.TimedMetadata !== undefined && input.TimedMetadata !== null && { timedMetadata: input.TimedMetadata }));
|
|
3638
|
+
input.IFrameOnlyManifest !== null && { iFrameOnlyManifest: input.IFrameOnlyManifest })), (input.KlvMetadata !== undefined && input.KlvMetadata !== null && { klvMetadata: input.KlvMetadata })), (input.Scte35Esam !== undefined && input.Scte35Esam !== null && { scte35Esam: input.Scte35Esam })), (input.Scte35Source !== undefined && input.Scte35Source !== null && { scte35Source: input.Scte35Source })), (input.TimedMetadata !== undefined && input.TimedMetadata !== null && { timedMetadata: input.TimedMetadata }));
|
|
3639
3639
|
};
|
|
3640
3640
|
var serializeAws_restJson1ColorCorrector = function (input, context) {
|
|
3641
3641
|
return __assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Brightness !== undefined && input.Brightness !== null && { brightness: input.Brightness })), (input.ColorSpaceConversion !== undefined &&
|
|
@@ -4184,7 +4184,7 @@ var serializeAws_restJson1M2tsScte35Esam = function (input, context) {
|
|
|
4184
4184
|
return __assign({}, (input.Scte35EsamPid !== undefined && input.Scte35EsamPid !== null && { scte35EsamPid: input.Scte35EsamPid }));
|
|
4185
4185
|
};
|
|
4186
4186
|
var serializeAws_restJson1M2tsSettings = function (input, context) {
|
|
4187
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioBufferModel !== undefined &&
|
|
4187
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioBufferModel !== undefined &&
|
|
4188
4188
|
input.AudioBufferModel !== null && { audioBufferModel: input.AudioBufferModel })), (input.AudioDuration !== undefined && input.AudioDuration !== null && { audioDuration: input.AudioDuration })), (input.AudioFramesPerPes !== undefined &&
|
|
4189
4189
|
input.AudioFramesPerPes !== null && { audioFramesPerPes: input.AudioFramesPerPes })), (input.AudioPids !== undefined &&
|
|
4190
4190
|
input.AudioPids !== null && {
|
|
@@ -4206,7 +4206,7 @@ var serializeAws_restJson1M2tsSettings = function (input, context) {
|
|
|
4206
4206
|
input.DvbTeletextPid !== null && { dvbTeletextPid: input.DvbTeletextPid })), (input.EbpAudioInterval !== undefined &&
|
|
4207
4207
|
input.EbpAudioInterval !== null && { ebpAudioInterval: input.EbpAudioInterval })), (input.EbpPlacement !== undefined && input.EbpPlacement !== null && { ebpPlacement: input.EbpPlacement })), (input.EsRateInPes !== undefined && input.EsRateInPes !== null && { esRateInPes: input.EsRateInPes })), (input.ForceTsVideoEbpOrder !== undefined &&
|
|
4208
4208
|
input.ForceTsVideoEbpOrder !== null && { forceTsVideoEbpOrder: input.ForceTsVideoEbpOrder })), (input.FragmentTime !== undefined &&
|
|
4209
|
-
input.FragmentTime !== null && { fragmentTime: __serializeFloat(input.FragmentTime) })), (input.MaxPcrInterval !== undefined &&
|
|
4209
|
+
input.FragmentTime !== null && { fragmentTime: __serializeFloat(input.FragmentTime) })), (input.KlvMetadata !== undefined && input.KlvMetadata !== null && { klvMetadata: input.KlvMetadata })), (input.MaxPcrInterval !== undefined &&
|
|
4210
4210
|
input.MaxPcrInterval !== null && { maxPcrInterval: input.MaxPcrInterval })), (input.MinEbpInterval !== undefined &&
|
|
4211
4211
|
input.MinEbpInterval !== null && { minEbpInterval: input.MinEbpInterval })), (input.NielsenId3 !== undefined && input.NielsenId3 !== null && { nielsenId3: input.NielsenId3 })), (input.NullPacketBitrate !== undefined &&
|
|
4212
4212
|
input.NullPacketBitrate !== null && { nullPacketBitrate: __serializeFloat(input.NullPacketBitrate) })), (input.PatInterval !== undefined && input.PatInterval !== null && { patInterval: input.PatInterval })), (input.PcrControl !== undefined && input.PcrControl !== null && { pcrControl: input.PcrControl })), (input.PcrPid !== undefined && input.PcrPid !== null && { pcrPid: input.PcrPid })), (input.PmtInterval !== undefined && input.PmtInterval !== null && { pmtInterval: input.PmtInterval })), (input.PmtPid !== undefined && input.PmtPid !== null && { pmtPid: input.PmtPid })), (input.PrivateMetadataPid !== undefined &&
|
|
@@ -4261,9 +4261,9 @@ var serializeAws_restJson1Mp4Settings = function (input, context) {
|
|
|
4261
4261
|
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioDuration !== undefined && input.AudioDuration !== null && { audioDuration: input.AudioDuration })), (input.CslgAtom !== undefined && input.CslgAtom !== null && { cslgAtom: input.CslgAtom })), (input.CttsVersion !== undefined && input.CttsVersion !== null && { cttsVersion: input.CttsVersion })), (input.FreeSpaceBox !== undefined && input.FreeSpaceBox !== null && { freeSpaceBox: input.FreeSpaceBox })), (input.MoovPlacement !== undefined && input.MoovPlacement !== null && { moovPlacement: input.MoovPlacement })), (input.Mp4MajorBrand !== undefined && input.Mp4MajorBrand !== null && { mp4MajorBrand: input.Mp4MajorBrand }));
|
|
4262
4262
|
};
|
|
4263
4263
|
var serializeAws_restJson1MpdSettings = function (input, context) {
|
|
4264
|
-
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.AccessibilityCaptionHints !== undefined &&
|
|
4264
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AccessibilityCaptionHints !== undefined &&
|
|
4265
4265
|
input.AccessibilityCaptionHints !== null && { accessibilityCaptionHints: input.AccessibilityCaptionHints })), (input.AudioDuration !== undefined && input.AudioDuration !== null && { audioDuration: input.AudioDuration })), (input.CaptionContainerType !== undefined &&
|
|
4266
|
-
input.CaptionContainerType !== null && { captionContainerType: input.CaptionContainerType })), (input.Scte35Esam !== undefined && input.Scte35Esam !== null && { scte35Esam: input.Scte35Esam })), (input.Scte35Source !== undefined && input.Scte35Source !== null && { scte35Source: input.Scte35Source })), (input.TimedMetadata !== undefined && input.TimedMetadata !== null && { timedMetadata: input.TimedMetadata }));
|
|
4266
|
+
input.CaptionContainerType !== null && { captionContainerType: input.CaptionContainerType })), (input.KlvMetadata !== undefined && input.KlvMetadata !== null && { klvMetadata: input.KlvMetadata })), (input.Scte35Esam !== undefined && input.Scte35Esam !== null && { scte35Esam: input.Scte35Esam })), (input.Scte35Source !== undefined && input.Scte35Source !== null && { scte35Source: input.Scte35Source })), (input.TimedMetadata !== undefined && input.TimedMetadata !== null && { timedMetadata: input.TimedMetadata }));
|
|
4267
4267
|
};
|
|
4268
4268
|
var serializeAws_restJson1Mpeg2Settings = function (input, context) {
|
|
4269
4269
|
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AdaptiveQuantization !== undefined &&
|
|
@@ -5571,6 +5571,7 @@ var deserializeAws_restJson1CmfcSettings = function (output, context) {
|
|
|
5571
5571
|
AudioTrackType: __expectString(output.audioTrackType),
|
|
5572
5572
|
DescriptiveVideoServiceFlag: __expectString(output.descriptiveVideoServiceFlag),
|
|
5573
5573
|
IFrameOnlyManifest: __expectString(output.iFrameOnlyManifest),
|
|
5574
|
+
KlvMetadata: __expectString(output.klvMetadata),
|
|
5574
5575
|
Scte35Esam: __expectString(output.scte35Esam),
|
|
5575
5576
|
Scte35Source: __expectString(output.scte35Source),
|
|
5576
5577
|
TimedMetadata: __expectString(output.timedMetadata),
|
|
@@ -6466,6 +6467,7 @@ var deserializeAws_restJson1M2tsSettings = function (output, context) {
|
|
|
6466
6467
|
EsRateInPes: __expectString(output.esRateInPes),
|
|
6467
6468
|
ForceTsVideoEbpOrder: __expectString(output.forceTsVideoEbpOrder),
|
|
6468
6469
|
FragmentTime: __limitedParseDouble(output.fragmentTime),
|
|
6470
|
+
KlvMetadata: __expectString(output.klvMetadata),
|
|
6469
6471
|
MaxPcrInterval: __expectInt32(output.maxPcrInterval),
|
|
6470
6472
|
MinEbpInterval: __expectInt32(output.minEbpInterval),
|
|
6471
6473
|
NielsenId3: __expectString(output.nielsenId3),
|
|
@@ -6582,6 +6584,7 @@ var deserializeAws_restJson1MpdSettings = function (output, context) {
|
|
|
6582
6584
|
AccessibilityCaptionHints: __expectString(output.accessibilityCaptionHints),
|
|
6583
6585
|
AudioDuration: __expectString(output.audioDuration),
|
|
6584
6586
|
CaptionContainerType: __expectString(output.captionContainerType),
|
|
6587
|
+
KlvMetadata: __expectString(output.klvMetadata),
|
|
6585
6588
|
Scte35Esam: __expectString(output.scte35Esam),
|
|
6586
6589
|
Scte35Source: __expectString(output.scte35Source),
|
|
6587
6590
|
TimedMetadata: __expectString(output.timedMetadata),
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { ListTagsForResourceRequest
|
|
4
|
+
import { ListTagsForResourceRequest } from "../models/models_1";
|
|
5
|
+
import { ListTagsForResourceResponse } from "../models/models_2";
|
|
5
6
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { PutPolicyRequest, PutPolicyResponse } from "../models/
|
|
4
|
+
import { PutPolicyRequest, PutPolicyResponse } from "../models/models_2";
|
|
5
5
|
export interface PutPolicyCommandInput extends PutPolicyRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBearer {
|
|
@@ -1594,7 +1594,8 @@ export declare enum WebvttAccessibilitySubs {
|
|
|
1594
1594
|
}
|
|
1595
1595
|
export declare enum WebvttStylePassthrough {
|
|
1596
1596
|
DISABLED = "DISABLED",
|
|
1597
|
-
ENABLED = "ENABLED"
|
|
1597
|
+
ENABLED = "ENABLED",
|
|
1598
|
+
STRICT = "STRICT"
|
|
1598
1599
|
}
|
|
1599
1600
|
/**
|
|
1600
1601
|
* Settings related to WebVTT captions. WebVTT is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/ttml-and-webvtt-output-captions.html. When you work directly in your JSON job specification, include this object and any required children when you set destinationType to WebVTT.
|
|
@@ -1605,7 +1606,7 @@ export interface WebvttDestinationSettings {
|
|
|
1605
1606
|
*/
|
|
1606
1607
|
Accessibility?: WebvttAccessibilitySubs | string;
|
|
1607
1608
|
/**
|
|
1608
|
-
*
|
|
1609
|
+
* To use the available style, color, and position information from your input captions: Set Style passthrough (stylePassthrough) to Enabled (ENABLED). MediaConvert uses default settings when style and position information is missing from your input captions. To recreate the input captions exactly: Set Style passthrough to Strict (STRICT). MediaConvert automatically applies timing adjustments, including adjustments for frame rate conversion, ad avails, and input clipping. Your input captions format must be WebVTT. To ignore the style and position information from your input captions and use simplified output captions: Set Style passthrough to Disabled (DISABLED), or leave blank.
|
|
1609
1610
|
*/
|
|
1610
1611
|
StylePassthrough?: WebvttStylePassthrough | string;
|
|
1611
1612
|
}
|
|
@@ -4305,6 +4306,10 @@ export declare enum CmfcIFrameOnlyManifest {
|
|
|
4305
4306
|
EXCLUDE = "EXCLUDE",
|
|
4306
4307
|
INCLUDE = "INCLUDE"
|
|
4307
4308
|
}
|
|
4309
|
+
export declare enum CmfcKlvMetadata {
|
|
4310
|
+
NONE = "NONE",
|
|
4311
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
4312
|
+
}
|
|
4308
4313
|
export declare enum CmfcScte35Esam {
|
|
4309
4314
|
INSERT = "INSERT",
|
|
4310
4315
|
NONE = "NONE"
|
|
@@ -4345,6 +4350,10 @@ export interface CmfcSettings {
|
|
|
4345
4350
|
* Choose Include (INCLUDE) to have MediaConvert generate an HLS child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude (EXCLUDE).
|
|
4346
4351
|
*/
|
|
4347
4352
|
IFrameOnlyManifest?: CmfcIFrameOnlyManifest | string;
|
|
4353
|
+
/**
|
|
4354
|
+
* Applies to CMAF outputs. Use this setting to specify whether the service inserts the KLV metadata from the input in this output.
|
|
4355
|
+
*/
|
|
4356
|
+
KlvMetadata?: CmfcKlvMetadata | string;
|
|
4348
4357
|
/**
|
|
4349
4358
|
* Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML (sccXml).
|
|
4350
4359
|
*/
|
|
@@ -4499,6 +4508,10 @@ export declare enum M2tsForceTsVideoEbpOrder {
|
|
|
4499
4508
|
DEFAULT = "DEFAULT",
|
|
4500
4509
|
FORCE = "FORCE"
|
|
4501
4510
|
}
|
|
4511
|
+
export declare enum M2tsKlvMetadata {
|
|
4512
|
+
NONE = "NONE",
|
|
4513
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
4514
|
+
}
|
|
4502
4515
|
export declare enum M2tsNielsenId3 {
|
|
4503
4516
|
INSERT = "INSERT",
|
|
4504
4517
|
NONE = "NONE"
|
|
@@ -4614,6 +4627,10 @@ export interface M2tsSettings {
|
|
|
4614
4627
|
* The length, in seconds, of each fragment. Only used with EBP markers.
|
|
4615
4628
|
*/
|
|
4616
4629
|
FragmentTime?: number;
|
|
4630
|
+
/**
|
|
4631
|
+
* Applies to MPEG-TS outputs. Use this setting to specify whether the service inserts the KLV metadata from the input in this output.
|
|
4632
|
+
*/
|
|
4633
|
+
KlvMetadata?: M2tsKlvMetadata | string;
|
|
4617
4634
|
/**
|
|
4618
4635
|
* Specify the maximum time, in milliseconds, between Program Clock References (PCRs) inserted into the transport stream.
|
|
4619
4636
|
*/
|
|
@@ -4709,11 +4726,3 @@ export declare enum M3u8AudioDuration {
|
|
|
4709
4726
|
DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
|
|
4710
4727
|
MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION"
|
|
4711
4728
|
}
|
|
4712
|
-
export declare enum M3u8DataPtsControl {
|
|
4713
|
-
ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
|
|
4714
|
-
AUTO = "AUTO"
|
|
4715
|
-
}
|
|
4716
|
-
export declare enum M3u8NielsenId3 {
|
|
4717
|
-
INSERT = "INSERT",
|
|
4718
|
-
NONE = "NONE"
|
|
4719
|
-
}
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8AudioDuration,
|
|
3
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8AudioDuration, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
|
|
4
|
+
export declare enum M3u8DataPtsControl {
|
|
5
|
+
ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
|
|
6
|
+
AUTO = "AUTO"
|
|
7
|
+
}
|
|
8
|
+
export declare enum M3u8NielsenId3 {
|
|
9
|
+
INSERT = "INSERT",
|
|
10
|
+
NONE = "NONE"
|
|
11
|
+
}
|
|
4
12
|
export declare enum M3u8PcrControl {
|
|
5
13
|
CONFIGURED_PCR_PERIOD = "CONFIGURED_PCR_PERIOD",
|
|
6
14
|
PCR_EVERY_PES_PACKET = "PCR_EVERY_PES_PACKET"
|
|
@@ -210,6 +218,10 @@ export declare enum MpdCaptionContainerType {
|
|
|
210
218
|
FRAGMENTED_MP4 = "FRAGMENTED_MP4",
|
|
211
219
|
RAW = "RAW"
|
|
212
220
|
}
|
|
221
|
+
export declare enum MpdKlvMetadata {
|
|
222
|
+
NONE = "NONE",
|
|
223
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
224
|
+
}
|
|
213
225
|
export declare enum MpdScte35Esam {
|
|
214
226
|
INSERT = "INSERT",
|
|
215
227
|
NONE = "NONE"
|
|
@@ -238,6 +250,10 @@ export interface MpdSettings {
|
|
|
238
250
|
* Use this setting only in DASH output groups that include sidecar TTML or IMSC captions. You specify sidecar captions in a separate output from your audio and video. Choose Raw (RAW) for captions in a single XML file in a raw container. Choose Fragmented MPEG-4 (FRAGMENTED_MP4) for captions in XML format contained within fragmented MP4 files. This set of fragmented MP4 files is separate from your video and audio fragmented MP4 files.
|
|
239
251
|
*/
|
|
240
252
|
CaptionContainerType?: MpdCaptionContainerType | string;
|
|
253
|
+
/**
|
|
254
|
+
* Applies to DASH ISO outputs. Use this setting to specify whether the service inserts the KLV metadata from the input in this output.
|
|
255
|
+
*/
|
|
256
|
+
KlvMetadata?: MpdKlvMetadata | string;
|
|
241
257
|
/**
|
|
242
258
|
* Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML (sccXml).
|
|
243
259
|
*/
|
|
@@ -4299,39 +4315,3 @@ export declare namespace ResourceTags {
|
|
|
4299
4315
|
*/
|
|
4300
4316
|
const filterSensitiveLog: (obj: ResourceTags) => any;
|
|
4301
4317
|
}
|
|
4302
|
-
export interface ListTagsForResourceResponse {
|
|
4303
|
-
/**
|
|
4304
|
-
* The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.
|
|
4305
|
-
*/
|
|
4306
|
-
ResourceTags?: ResourceTags;
|
|
4307
|
-
}
|
|
4308
|
-
export declare namespace ListTagsForResourceResponse {
|
|
4309
|
-
/**
|
|
4310
|
-
* @internal
|
|
4311
|
-
*/
|
|
4312
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
4313
|
-
}
|
|
4314
|
-
export interface PutPolicyRequest {
|
|
4315
|
-
/**
|
|
4316
|
-
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
4317
|
-
*/
|
|
4318
|
-
Policy: Policy | undefined;
|
|
4319
|
-
}
|
|
4320
|
-
export declare namespace PutPolicyRequest {
|
|
4321
|
-
/**
|
|
4322
|
-
* @internal
|
|
4323
|
-
*/
|
|
4324
|
-
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
4325
|
-
}
|
|
4326
|
-
export interface PutPolicyResponse {
|
|
4327
|
-
/**
|
|
4328
|
-
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
4329
|
-
*/
|
|
4330
|
-
Policy?: Policy;
|
|
4331
|
-
}
|
|
4332
|
-
export declare namespace PutPolicyResponse {
|
|
4333
|
-
/**
|
|
4334
|
-
* @internal
|
|
4335
|
-
*/
|
|
4336
|
-
const filterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
4337
|
-
}
|
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
2
|
-
import { JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
2
|
+
import { JobTemplate, JobTemplateSettings, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, ResourceTags, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
export interface ListTagsForResourceResponse {
|
|
4
|
+
/**
|
|
5
|
+
* The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.
|
|
6
|
+
*/
|
|
7
|
+
ResourceTags?: ResourceTags;
|
|
8
|
+
}
|
|
9
|
+
export declare namespace ListTagsForResourceResponse {
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
14
|
+
}
|
|
15
|
+
export interface PutPolicyRequest {
|
|
16
|
+
/**
|
|
17
|
+
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
18
|
+
*/
|
|
19
|
+
Policy: Policy | undefined;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace PutPolicyRequest {
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
26
|
+
}
|
|
27
|
+
export interface PutPolicyResponse {
|
|
28
|
+
/**
|
|
29
|
+
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
30
|
+
*/
|
|
31
|
+
Policy?: Policy;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace PutPolicyResponse {
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
const filterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
38
|
+
}
|
|
3
39
|
export interface TagResourceRequest {
|
|
4
40
|
/**
|
|
5
41
|
* The Amazon Resource Name (ARN) of the resource that you want to tag. To get the ARN, send a GET request with the resource name.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { ListTagsForResourceRequest
|
|
4
|
+
import { ListTagsForResourceRequest } from "../models/models_1";
|
|
5
|
+
import { ListTagsForResourceResponse } from "../models/models_2";
|
|
5
6
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
|
|
4
|
-
import { PutPolicyRequest, PutPolicyResponse } from "../models/
|
|
4
|
+
import { PutPolicyRequest, PutPolicyResponse } from "../models/models_2";
|
|
5
5
|
export interface PutPolicyCommandInput extends PutPolicyRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBearer {
|
|
@@ -1152,7 +1152,8 @@ export declare enum WebvttAccessibilitySubs {
|
|
|
1152
1152
|
}
|
|
1153
1153
|
export declare enum WebvttStylePassthrough {
|
|
1154
1154
|
DISABLED = "DISABLED",
|
|
1155
|
-
ENABLED = "ENABLED"
|
|
1155
|
+
ENABLED = "ENABLED",
|
|
1156
|
+
STRICT = "STRICT"
|
|
1156
1157
|
}
|
|
1157
1158
|
|
|
1158
1159
|
export interface WebvttDestinationSettings {
|
|
@@ -2832,6 +2833,10 @@ export declare enum CmfcIFrameOnlyManifest {
|
|
|
2832
2833
|
EXCLUDE = "EXCLUDE",
|
|
2833
2834
|
INCLUDE = "INCLUDE"
|
|
2834
2835
|
}
|
|
2836
|
+
export declare enum CmfcKlvMetadata {
|
|
2837
|
+
NONE = "NONE",
|
|
2838
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
2839
|
+
}
|
|
2835
2840
|
export declare enum CmfcScte35Esam {
|
|
2836
2841
|
INSERT = "INSERT",
|
|
2837
2842
|
NONE = "NONE"
|
|
@@ -2859,6 +2864,8 @@ export interface CmfcSettings {
|
|
|
2859
2864
|
|
|
2860
2865
|
IFrameOnlyManifest?: CmfcIFrameOnlyManifest | string;
|
|
2861
2866
|
|
|
2867
|
+
KlvMetadata?: CmfcKlvMetadata | string;
|
|
2868
|
+
|
|
2862
2869
|
Scte35Esam?: CmfcScte35Esam | string;
|
|
2863
2870
|
|
|
2864
2871
|
Scte35Source?: CmfcScte35Source | string;
|
|
@@ -2970,6 +2977,10 @@ export declare enum M2tsForceTsVideoEbpOrder {
|
|
|
2970
2977
|
DEFAULT = "DEFAULT",
|
|
2971
2978
|
FORCE = "FORCE"
|
|
2972
2979
|
}
|
|
2980
|
+
export declare enum M2tsKlvMetadata {
|
|
2981
|
+
NONE = "NONE",
|
|
2982
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
2983
|
+
}
|
|
2973
2984
|
export declare enum M2tsNielsenId3 {
|
|
2974
2985
|
INSERT = "INSERT",
|
|
2975
2986
|
NONE = "NONE"
|
|
@@ -3044,6 +3055,8 @@ export interface M2tsSettings {
|
|
|
3044
3055
|
|
|
3045
3056
|
FragmentTime?: number;
|
|
3046
3057
|
|
|
3058
|
+
KlvMetadata?: M2tsKlvMetadata | string;
|
|
3059
|
+
|
|
3047
3060
|
MaxPcrInterval?: number;
|
|
3048
3061
|
|
|
3049
3062
|
MinEbpInterval?: number;
|
|
@@ -3094,11 +3107,3 @@ export declare enum M3u8AudioDuration {
|
|
|
3094
3107
|
DEFAULT_CODEC_DURATION = "DEFAULT_CODEC_DURATION",
|
|
3095
3108
|
MATCH_VIDEO_DURATION = "MATCH_VIDEO_DURATION"
|
|
3096
3109
|
}
|
|
3097
|
-
export declare enum M3u8DataPtsControl {
|
|
3098
|
-
ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
|
|
3099
|
-
AUTO = "AUTO"
|
|
3100
|
-
}
|
|
3101
|
-
export declare enum M3u8NielsenId3 {
|
|
3102
|
-
INSERT = "INSERT",
|
|
3103
|
-
NONE = "NONE"
|
|
3104
|
-
}
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
-
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8AudioDuration,
|
|
3
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsSettings, M3u8AudioDuration, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
|
|
4
|
+
export declare enum M3u8DataPtsControl {
|
|
5
|
+
ALIGN_TO_VIDEO = "ALIGN_TO_VIDEO",
|
|
6
|
+
AUTO = "AUTO"
|
|
7
|
+
}
|
|
8
|
+
export declare enum M3u8NielsenId3 {
|
|
9
|
+
INSERT = "INSERT",
|
|
10
|
+
NONE = "NONE"
|
|
11
|
+
}
|
|
4
12
|
export declare enum M3u8PcrControl {
|
|
5
13
|
CONFIGURED_PCR_PERIOD = "CONFIGURED_PCR_PERIOD",
|
|
6
14
|
PCR_EVERY_PES_PACKET = "PCR_EVERY_PES_PACKET"
|
|
@@ -138,6 +146,10 @@ export declare enum MpdCaptionContainerType {
|
|
|
138
146
|
FRAGMENTED_MP4 = "FRAGMENTED_MP4",
|
|
139
147
|
RAW = "RAW"
|
|
140
148
|
}
|
|
149
|
+
export declare enum MpdKlvMetadata {
|
|
150
|
+
NONE = "NONE",
|
|
151
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
152
|
+
}
|
|
141
153
|
export declare enum MpdScte35Esam {
|
|
142
154
|
INSERT = "INSERT",
|
|
143
155
|
NONE = "NONE"
|
|
@@ -159,6 +171,8 @@ export interface MpdSettings {
|
|
|
159
171
|
|
|
160
172
|
CaptionContainerType?: MpdCaptionContainerType | string;
|
|
161
173
|
|
|
174
|
+
KlvMetadata?: MpdKlvMetadata | string;
|
|
175
|
+
|
|
162
176
|
Scte35Esam?: MpdScte35Esam | string;
|
|
163
177
|
|
|
164
178
|
Scte35Source?: MpdScte35Source | string;
|
|
@@ -2809,27 +2823,3 @@ export declare namespace ResourceTags {
|
|
|
2809
2823
|
|
|
2810
2824
|
const filterSensitiveLog: (obj: ResourceTags) => any;
|
|
2811
2825
|
}
|
|
2812
|
-
export interface ListTagsForResourceResponse {
|
|
2813
|
-
|
|
2814
|
-
ResourceTags?: ResourceTags;
|
|
2815
|
-
}
|
|
2816
|
-
export declare namespace ListTagsForResourceResponse {
|
|
2817
|
-
|
|
2818
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2819
|
-
}
|
|
2820
|
-
export interface PutPolicyRequest {
|
|
2821
|
-
|
|
2822
|
-
Policy: Policy | undefined;
|
|
2823
|
-
}
|
|
2824
|
-
export declare namespace PutPolicyRequest {
|
|
2825
|
-
|
|
2826
|
-
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
2827
|
-
}
|
|
2828
|
-
export interface PutPolicyResponse {
|
|
2829
|
-
|
|
2830
|
-
Policy?: Policy;
|
|
2831
|
-
}
|
|
2832
|
-
export declare namespace PutPolicyResponse {
|
|
2833
|
-
|
|
2834
|
-
const filterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
2835
|
-
}
|
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
2
|
-
import { JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
2
|
+
import { JobTemplate, JobTemplateSettings, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, ResourceTags, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
export interface ListTagsForResourceResponse {
|
|
4
|
+
|
|
5
|
+
ResourceTags?: ResourceTags;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace ListTagsForResourceResponse {
|
|
8
|
+
|
|
9
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
10
|
+
}
|
|
11
|
+
export interface PutPolicyRequest {
|
|
12
|
+
|
|
13
|
+
Policy: Policy | undefined;
|
|
14
|
+
}
|
|
15
|
+
export declare namespace PutPolicyRequest {
|
|
16
|
+
|
|
17
|
+
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
18
|
+
}
|
|
19
|
+
export interface PutPolicyResponse {
|
|
20
|
+
|
|
21
|
+
Policy?: Policy;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace PutPolicyResponse {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
26
|
+
}
|
|
3
27
|
export interface TagResourceRequest {
|
|
4
28
|
|
|
5
29
|
Arn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.74.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.74.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.74.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.58.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.74.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
38
|
+
"@aws-sdk/smithy-client": "3.72.0",
|
|
39
39
|
"@aws-sdk/types": "3.55.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.55.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.72.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.72.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.58.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|