@aws-sdk/client-mediaconvert 3.80.0 → 3.85.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 +30 -0
- package/README.md +2 -0
- package/dist-cjs/commands/ListQueuesCommand.js +2 -1
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -2
- package/dist-cjs/models/models_0.js +14 -14
- package/dist-cjs/models/models_1.js +23 -24
- package/dist-cjs/models/models_2.js +19 -1
- package/dist-cjs/protocols/Aws_restJson1.js +21 -0
- package/dist-es/commands/ListQueuesCommand.js +2 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -2
- package/dist-es/models/models_0.js +9 -9
- 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 +22 -6
- package/dist-types/commands/ListQueuesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +27 -171
- package/dist-types/models/models_1.d.ts +183 -52
- package/dist-types/models/models_2.d.ts +50 -1
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +17 -89
- package/dist-types/ts3.4/models/models_1.d.ts +98 -33
- package/dist-types/ts3.4/models/models_2.d.ts +32 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **codegen:** add codegen indicator comment to all generated files ([#3592](https://github.com/aws/aws-sdk-js-v3/issues/3592)) ([567a530](https://github.com/aws/aws-sdk-js-v3/commit/567a5304232fcc1f9db3fd3df545054de8336b4b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.81.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.80.0...v3.81.0) (2022-04-29)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **client-mediaconvert:** AWS Elemental MediaConvert SDK nows supports creation of Dolby Vision profile 8.1, the ability to generate black frames of video, and introduces audio-only DASH and CMAF support. ([ec8aea0](https://github.com/aws/aws-sdk-js-v3/commit/ec8aea08bedcead82d905ace58cc73d40026e6e8))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.80.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.79.0...v3.80.0) (2022-04-28)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@ exports.ListQueuesCommand = 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 ListQueuesCommand extends smithy_client_1.Command {
|
|
9
10
|
constructor(input) {
|
|
@@ -21,7 +22,7 @@ class ListQueuesCommand extends smithy_client_1.Command {
|
|
|
21
22
|
clientName,
|
|
22
23
|
commandName,
|
|
23
24
|
inputFilterSensitiveLog: models_1_1.ListQueuesRequest.filterSensitiveLog,
|
|
24
|
-
outputFilterSensitiveLog:
|
|
25
|
+
outputFilterSensitiveLog: models_2_1.ListQueuesResponse.filterSensitiveLog,
|
|
25
26
|
};
|
|
26
27
|
const { requestHandler } = configuration;
|
|
27
28
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
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
|
-
const models_1_1 = require("../models/models_1");
|
|
7
6
|
const models_2_1 = require("../models/models_2");
|
|
8
7
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
8
|
class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
@@ -21,7 +20,7 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
|
21
20
|
logger,
|
|
22
21
|
clientName,
|
|
23
22
|
commandName,
|
|
24
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: models_2_1.ListTagsForResourceRequest.filterSensitiveLog,
|
|
25
24
|
outputFilterSensitiveLog: models_2_1.ListTagsForResourceResponse.filterSensitiveLog,
|
|
26
25
|
};
|
|
27
26
|
const { requestHandler } = configuration;
|
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Eac3SurroundExMode = exports.Eac3StereoDownmix = exports.Eac3PhaseControl = exports.Eac3PassthroughControl = exports.Eac3MetadataControl = exports.Eac3LfeFilter = exports.Eac3LfeControl = exports.Eac3DynamicRangeCompressionRf = exports.Eac3DynamicRangeCompressionLine = exports.Eac3DcFilter = exports.Eac3CodingMode = exports.Eac3BitstreamMode = exports.Eac3AttenuationControl = exports.Eac3AtmosSettings = exports.Eac3AtmosSurroundExMode = exports.Eac3AtmosStereoDownmix = exports.Eac3AtmosMeteringMode = exports.Eac3AtmosDynamicRangeControl = exports.Eac3AtmosDynamicRangeCompressionRf = exports.Eac3AtmosDynamicRangeCompressionLine = exports.Eac3AtmosDownmixControl = exports.Eac3AtmosDialogueIntelligence = exports.Eac3AtmosCodingMode = exports.Eac3AtmosBitstreamMode = exports.AudioCodec = exports.AiffSettings = exports.Ac3Settings = exports.Ac3MetadataControl = exports.Ac3LfeFilter = exports.Ac3DynamicRangeCompressionRf = exports.Ac3DynamicRangeCompressionProfile = exports.Ac3DynamicRangeCompressionLine = exports.Ac3CodingMode = exports.Ac3BitstreamMode = exports.AacSettings = exports.AacVbrQuality = exports.AacSpecification = exports.AacRawFormat = exports.AacRateControlMode = exports.AacCodingMode = exports.AacCodecProfile = exports.AacAudioDescriptionBroadcasterMix = exports.AudioTypeControl = exports.AudioNormalizationSettings = exports.AudioNormalizationPeakCalculation = exports.AudioNormalizationLoudnessLogging = exports.AudioNormalizationAlgorithmControl = exports.AudioNormalizationAlgorithm = exports.AudioChannelTaggingSettings = exports.AudioChannelTag = void 0;
|
|
4
4
|
exports.TeletextDestinationSettings = exports.TeletextPageType = exports.SrtDestinationSettings = exports.SrtStylePassthrough = exports.SccDestinationSettings = exports.SccDestinationFramerate = exports.ImscDestinationSettings = exports.ImscStylePassthrough = exports.ImscAccessibilitySubs = exports.EmbeddedDestinationSettings = exports.DvbSubDestinationSettings = exports.DvbSubtitleTeletextSpacing = exports.DvbSubtitlingType = exports.DvbSubtitleStylePassthrough = exports.DvbSubtitleShadowColor = exports.DvbSubtitleOutlineColor = exports.DvbSubtitleFontColor = exports.DvbSubSubtitleFallbackFont = exports.DvbddsHandling = exports.DvbSubtitleBackgroundColor = exports.DvbSubtitleApplyFontColor = exports.DvbSubtitleAlignment = exports.CaptionDestinationType = exports.BurninDestinationSettings = exports.BurninSubtitleTeletextSpacing = exports.BurnInSubtitleStylePassthrough = exports.BurninSubtitleShadowColor = exports.BurninSubtitleOutlineColor = exports.FontScript = exports.BurninSubtitleFontColor = exports.BurninSubtitleFallbackFont = exports.BurninSubtitleBackgroundColor = exports.BurninSubtitleApplyFontColor = exports.BurninSubtitleAlignment = exports.AudioDescription = exports.RemixSettings = exports.ChannelMapping = exports.OutputChannelMapping = exports.AudioLanguageCodeControl = exports.LanguageCode = exports.AudioCodecSettings = exports.WavSettings = exports.WavFormat = exports.VorbisSettings = exports.OpusSettings = exports.Mp3Settings = exports.Mp3RateControlMode = exports.Mp2Settings = exports.Eac3Settings = exports.Eac3SurroundMode = void 0;
|
|
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
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
6
|
+
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.PadVideo = exports.Hdr10Metadata = exports.EmbeddedTimecodeOverride = exports.ColorSpaceUsage = exports.ColorSpace = exports.AlphaBehavior = exports.InputVideoGenerator = void 0;
|
|
7
|
+
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 = exports.CmafInitializationVectorInManifest = exports.CmafEncryptionType = void 0;
|
|
8
|
+
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 = exports.HlsManifestDurationFormat = exports.HlsManifestCompression = void 0;
|
|
9
9
|
var AudioChannelTag;
|
|
10
10
|
(function (AudioChannelTag) {
|
|
11
11
|
AudioChannelTag["C"] = "C";
|
|
@@ -1153,6 +1153,12 @@ var InputTimecodeSource;
|
|
|
1153
1153
|
InputTimecodeSource["SPECIFIEDSTART"] = "SPECIFIEDSTART";
|
|
1154
1154
|
InputTimecodeSource["ZEROBASED"] = "ZEROBASED";
|
|
1155
1155
|
})(InputTimecodeSource = exports.InputTimecodeSource || (exports.InputTimecodeSource = {}));
|
|
1156
|
+
var InputVideoGenerator;
|
|
1157
|
+
(function (InputVideoGenerator) {
|
|
1158
|
+
InputVideoGenerator.filterSensitiveLog = (obj) => ({
|
|
1159
|
+
...obj,
|
|
1160
|
+
});
|
|
1161
|
+
})(InputVideoGenerator = exports.InputVideoGenerator || (exports.InputVideoGenerator = {}));
|
|
1156
1162
|
var AlphaBehavior;
|
|
1157
1163
|
(function (AlphaBehavior) {
|
|
1158
1164
|
AlphaBehavior["DISCARD"] = "DISCARD";
|
|
@@ -1182,6 +1188,11 @@ var Hdr10Metadata;
|
|
|
1182
1188
|
...obj,
|
|
1183
1189
|
});
|
|
1184
1190
|
})(Hdr10Metadata = exports.Hdr10Metadata || (exports.Hdr10Metadata = {}));
|
|
1191
|
+
var PadVideo;
|
|
1192
|
+
(function (PadVideo) {
|
|
1193
|
+
PadVideo["BLACK"] = "BLACK";
|
|
1194
|
+
PadVideo["DISABLED"] = "DISABLED";
|
|
1195
|
+
})(PadVideo = exports.PadVideo || (exports.PadVideo = {}));
|
|
1185
1196
|
var InputRotate;
|
|
1186
1197
|
(function (InputRotate) {
|
|
1187
1198
|
InputRotate["AUTO"] = "AUTO";
|
|
@@ -1986,14 +1997,3 @@ var M2tsSegmentationStyle;
|
|
|
1986
1997
|
M2tsSegmentationStyle["MAINTAIN_CADENCE"] = "MAINTAIN_CADENCE";
|
|
1987
1998
|
M2tsSegmentationStyle["RESET_CADENCE"] = "RESET_CADENCE";
|
|
1988
1999
|
})(M2tsSegmentationStyle = exports.M2tsSegmentationStyle || (exports.M2tsSegmentationStyle = {}));
|
|
1989
|
-
var M2tsSettings;
|
|
1990
|
-
(function (M2tsSettings) {
|
|
1991
|
-
M2tsSettings.filterSensitiveLog = (obj) => ({
|
|
1992
|
-
...obj,
|
|
1993
|
-
});
|
|
1994
|
-
})(M2tsSettings = exports.M2tsSettings || (exports.M2tsSettings = {}));
|
|
1995
|
-
var M3u8AudioDuration;
|
|
1996
|
-
(function (M3u8AudioDuration) {
|
|
1997
|
-
M3u8AudioDuration["DEFAULT_CODEC_DURATION"] = "DEFAULT_CODEC_DURATION";
|
|
1998
|
-
M3u8AudioDuration["MATCH_VIDEO_DURATION"] = "MATCH_VIDEO_DURATION";
|
|
1999
|
-
})(M3u8AudioDuration = exports.M3u8AudioDuration || (exports.M3u8AudioDuration = {}));
|
|
@@ -1,12 +1,23 @@
|
|
|
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.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 = exports.M3u8AudioDuration = exports.M2tsSettings = void 0;
|
|
4
|
+
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 = exports.AvcIntraFramerateControl = exports.AvcIntraUhdSettings = void 0;
|
|
5
|
+
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 = exports.H265SampleAdaptiveOffsetFilterMode = exports.H265RateControlMode = void 0;
|
|
6
|
+
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 = exports.Vp8FramerateControl = exports.Vc3Settings = void 0;
|
|
7
|
+
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.DolbyVisionMapping = exports.DolbyVisionLevel6Mode = exports.DolbyVisionLevel6Metadata = exports.Deinterlacer = exports.DeinterlacerMode = void 0;
|
|
8
|
+
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 = exports.TooManyRequestsException = exports.NotFoundException = exports.InternalServerErrorException = void 0;
|
|
9
9
|
const MediaConvertServiceException_1 = require("./MediaConvertServiceException");
|
|
10
|
+
var M2tsSettings;
|
|
11
|
+
(function (M2tsSettings) {
|
|
12
|
+
M2tsSettings.filterSensitiveLog = (obj) => ({
|
|
13
|
+
...obj,
|
|
14
|
+
});
|
|
15
|
+
})(M2tsSettings = exports.M2tsSettings || (exports.M2tsSettings = {}));
|
|
16
|
+
var M3u8AudioDuration;
|
|
17
|
+
(function (M3u8AudioDuration) {
|
|
18
|
+
M3u8AudioDuration["DEFAULT_CODEC_DURATION"] = "DEFAULT_CODEC_DURATION";
|
|
19
|
+
M3u8AudioDuration["MATCH_VIDEO_DURATION"] = "MATCH_VIDEO_DURATION";
|
|
20
|
+
})(M3u8AudioDuration = exports.M3u8AudioDuration || (exports.M3u8AudioDuration = {}));
|
|
10
21
|
var M3u8DataPtsControl;
|
|
11
22
|
(function (M3u8DataPtsControl) {
|
|
12
23
|
M3u8DataPtsControl["ALIGN_TO_VIDEO"] = "ALIGN_TO_VIDEO";
|
|
@@ -1192,9 +1203,15 @@ var DolbyVisionLevel6Mode;
|
|
|
1192
1203
|
DolbyVisionLevel6Mode["RECALCULATE"] = "RECALCULATE";
|
|
1193
1204
|
DolbyVisionLevel6Mode["SPECIFY"] = "SPECIFY";
|
|
1194
1205
|
})(DolbyVisionLevel6Mode = exports.DolbyVisionLevel6Mode || (exports.DolbyVisionLevel6Mode = {}));
|
|
1206
|
+
var DolbyVisionMapping;
|
|
1207
|
+
(function (DolbyVisionMapping) {
|
|
1208
|
+
DolbyVisionMapping["HDR10_1000"] = "HDR10_1000";
|
|
1209
|
+
DolbyVisionMapping["HDR10_NOMAP"] = "HDR10_NOMAP";
|
|
1210
|
+
})(DolbyVisionMapping = exports.DolbyVisionMapping || (exports.DolbyVisionMapping = {}));
|
|
1195
1211
|
var DolbyVisionProfile;
|
|
1196
1212
|
(function (DolbyVisionProfile) {
|
|
1197
1213
|
DolbyVisionProfile["PROFILE_5"] = "PROFILE_5";
|
|
1214
|
+
DolbyVisionProfile["PROFILE_8_1"] = "PROFILE_8_1";
|
|
1198
1215
|
})(DolbyVisionProfile = exports.DolbyVisionProfile || (exports.DolbyVisionProfile = {}));
|
|
1199
1216
|
var DolbyVision;
|
|
1200
1217
|
(function (DolbyVision) {
|
|
@@ -1823,21 +1840,3 @@ var ListQueuesRequest;
|
|
|
1823
1840
|
...obj,
|
|
1824
1841
|
});
|
|
1825
1842
|
})(ListQueuesRequest = exports.ListQueuesRequest || (exports.ListQueuesRequest = {}));
|
|
1826
|
-
var ListQueuesResponse;
|
|
1827
|
-
(function (ListQueuesResponse) {
|
|
1828
|
-
ListQueuesResponse.filterSensitiveLog = (obj) => ({
|
|
1829
|
-
...obj,
|
|
1830
|
-
});
|
|
1831
|
-
})(ListQueuesResponse = exports.ListQueuesResponse || (exports.ListQueuesResponse = {}));
|
|
1832
|
-
var ListTagsForResourceRequest;
|
|
1833
|
-
(function (ListTagsForResourceRequest) {
|
|
1834
|
-
ListTagsForResourceRequest.filterSensitiveLog = (obj) => ({
|
|
1835
|
-
...obj,
|
|
1836
|
-
});
|
|
1837
|
-
})(ListTagsForResourceRequest = exports.ListTagsForResourceRequest || (exports.ListTagsForResourceRequest = {}));
|
|
1838
|
-
var ResourceTags;
|
|
1839
|
-
(function (ResourceTags) {
|
|
1840
|
-
ResourceTags.filterSensitiveLog = (obj) => ({
|
|
1841
|
-
...obj,
|
|
1842
|
-
});
|
|
1843
|
-
})(ResourceTags = exports.ResourceTags || (exports.ResourceTags = {}));
|
|
@@ -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 = exports.PutPolicyResponse = exports.PutPolicyRequest = exports.ListTagsForResourceResponse = 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 = exports.ResourceTags = exports.ListTagsForResourceRequest = exports.ListQueuesResponse = void 0;
|
|
4
|
+
var ListQueuesResponse;
|
|
5
|
+
(function (ListQueuesResponse) {
|
|
6
|
+
ListQueuesResponse.filterSensitiveLog = (obj) => ({
|
|
7
|
+
...obj,
|
|
8
|
+
});
|
|
9
|
+
})(ListQueuesResponse = exports.ListQueuesResponse || (exports.ListQueuesResponse = {}));
|
|
10
|
+
var ListTagsForResourceRequest;
|
|
11
|
+
(function (ListTagsForResourceRequest) {
|
|
12
|
+
ListTagsForResourceRequest.filterSensitiveLog = (obj) => ({
|
|
13
|
+
...obj,
|
|
14
|
+
});
|
|
15
|
+
})(ListTagsForResourceRequest = exports.ListTagsForResourceRequest || (exports.ListTagsForResourceRequest = {}));
|
|
16
|
+
var ResourceTags;
|
|
17
|
+
(function (ResourceTags) {
|
|
18
|
+
ResourceTags.filterSensitiveLog = (obj) => ({
|
|
19
|
+
...obj,
|
|
20
|
+
});
|
|
21
|
+
})(ResourceTags = exports.ResourceTags || (exports.ResourceTags = {}));
|
|
4
22
|
var ListTagsForResourceResponse;
|
|
5
23
|
(function (ListTagsForResourceResponse) {
|
|
6
24
|
ListTagsForResourceResponse.filterSensitiveLog = (obj) => ({
|
|
@@ -3312,6 +3312,7 @@ const serializeAws_restJson1DolbyVision = (input, context) => {
|
|
|
3312
3312
|
l6Metadata: serializeAws_restJson1DolbyVisionLevel6Metadata(input.L6Metadata, context),
|
|
3313
3313
|
}),
|
|
3314
3314
|
...(input.L6Mode !== undefined && input.L6Mode !== null && { l6Mode: input.L6Mode }),
|
|
3315
|
+
...(input.Mapping !== undefined && input.Mapping !== null && { mapping: input.Mapping }),
|
|
3315
3316
|
...(input.Profile !== undefined && input.Profile !== null && { profile: input.Profile }),
|
|
3316
3317
|
};
|
|
3317
3318
|
};
|
|
@@ -3983,6 +3984,10 @@ const serializeAws_restJson1Input = (input, context) => {
|
|
|
3983
3984
|
...(input.TimecodeSource !== undefined &&
|
|
3984
3985
|
input.TimecodeSource !== null && { timecodeSource: input.TimecodeSource }),
|
|
3985
3986
|
...(input.TimecodeStart !== undefined && input.TimecodeStart !== null && { timecodeStart: input.TimecodeStart }),
|
|
3987
|
+
...(input.VideoGenerator !== undefined &&
|
|
3988
|
+
input.VideoGenerator !== null && {
|
|
3989
|
+
videoGenerator: serializeAws_restJson1InputVideoGenerator(input.VideoGenerator, context),
|
|
3990
|
+
}),
|
|
3986
3991
|
...(input.VideoSelector !== undefined &&
|
|
3987
3992
|
input.VideoSelector !== null && {
|
|
3988
3993
|
videoSelector: serializeAws_restJson1VideoSelector(input.VideoSelector, context),
|
|
@@ -4051,6 +4056,11 @@ const serializeAws_restJson1InputTemplate = (input, context) => {
|
|
|
4051
4056
|
}),
|
|
4052
4057
|
};
|
|
4053
4058
|
};
|
|
4059
|
+
const serializeAws_restJson1InputVideoGenerator = (input, context) => {
|
|
4060
|
+
return {
|
|
4061
|
+
...(input.Duration !== undefined && input.Duration !== null && { duration: input.Duration }),
|
|
4062
|
+
};
|
|
4063
|
+
};
|
|
4054
4064
|
const serializeAws_restJson1InsertableImage = (input, context) => {
|
|
4055
4065
|
return {
|
|
4056
4066
|
...(input.Duration !== undefined && input.Duration !== null && { duration: input.Duration }),
|
|
@@ -4996,6 +5006,7 @@ const serializeAws_restJson1VideoSelector = (input, context) => {
|
|
|
4996
5006
|
input.Hdr10Metadata !== null && {
|
|
4997
5007
|
hdr10Metadata: serializeAws_restJson1Hdr10Metadata(input.Hdr10Metadata, context),
|
|
4998
5008
|
}),
|
|
5009
|
+
...(input.PadVideo !== undefined && input.PadVideo !== null && { padVideo: input.PadVideo }),
|
|
4999
5010
|
...(input.Pid !== undefined && input.Pid !== null && { pid: input.Pid }),
|
|
5000
5011
|
...(input.ProgramNumber !== undefined && input.ProgramNumber !== null && { programNumber: input.ProgramNumber }),
|
|
5001
5012
|
...(input.Rotate !== undefined && input.Rotate !== null && { rotate: input.Rotate }),
|
|
@@ -6158,6 +6169,7 @@ const deserializeAws_restJson1DolbyVision = (output, context) => {
|
|
|
6158
6169
|
? deserializeAws_restJson1DolbyVisionLevel6Metadata(output.l6Metadata, context)
|
|
6159
6170
|
: undefined,
|
|
6160
6171
|
L6Mode: (0, smithy_client_1.expectString)(output.l6Mode),
|
|
6172
|
+
Mapping: (0, smithy_client_1.expectString)(output.mapping),
|
|
6161
6173
|
Profile: (0, smithy_client_1.expectString)(output.profile),
|
|
6162
6174
|
};
|
|
6163
6175
|
};
|
|
@@ -6647,6 +6659,9 @@ const deserializeAws_restJson1Input = (output, context) => {
|
|
|
6647
6659
|
: undefined,
|
|
6648
6660
|
TimecodeSource: (0, smithy_client_1.expectString)(output.timecodeSource),
|
|
6649
6661
|
TimecodeStart: (0, smithy_client_1.expectString)(output.timecodeStart),
|
|
6662
|
+
VideoGenerator: output.videoGenerator !== undefined && output.videoGenerator !== null
|
|
6663
|
+
? deserializeAws_restJson1InputVideoGenerator(output.videoGenerator, context)
|
|
6664
|
+
: undefined,
|
|
6650
6665
|
VideoSelector: output.videoSelector !== undefined && output.videoSelector !== null
|
|
6651
6666
|
? deserializeAws_restJson1VideoSelector(output.videoSelector, context)
|
|
6652
6667
|
: undefined,
|
|
@@ -6704,6 +6719,11 @@ const deserializeAws_restJson1InputTemplate = (output, context) => {
|
|
|
6704
6719
|
: undefined,
|
|
6705
6720
|
};
|
|
6706
6721
|
};
|
|
6722
|
+
const deserializeAws_restJson1InputVideoGenerator = (output, context) => {
|
|
6723
|
+
return {
|
|
6724
|
+
Duration: (0, smithy_client_1.expectInt32)(output.duration),
|
|
6725
|
+
};
|
|
6726
|
+
};
|
|
6707
6727
|
const deserializeAws_restJson1InsertableImage = (output, context) => {
|
|
6708
6728
|
return {
|
|
6709
6729
|
Duration: (0, smithy_client_1.expectInt32)(output.duration),
|
|
@@ -7673,6 +7693,7 @@ const deserializeAws_restJson1VideoSelector = (output, context) => {
|
|
|
7673
7693
|
Hdr10Metadata: output.hdr10Metadata !== undefined && output.hdr10Metadata !== null
|
|
7674
7694
|
? deserializeAws_restJson1Hdr10Metadata(output.hdr10Metadata, context)
|
|
7675
7695
|
: undefined,
|
|
7696
|
+
PadVideo: (0, smithy_client_1.expectString)(output.padVideo),
|
|
7676
7697
|
Pid: (0, smithy_client_1.expectInt32)(output.pid),
|
|
7677
7698
|
ProgramNumber: (0, smithy_client_1.expectInt32)(output.programNumber),
|
|
7678
7699
|
Rotate: (0, smithy_client_1.expectString)(output.rotate),
|
|
@@ -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 { ListQueuesRequest
|
|
4
|
+
import { ListQueuesRequest } from "../models/models_1";
|
|
5
|
+
import { ListQueuesResponse } from "../models/models_2";
|
|
5
6
|
import { deserializeAws_restJson1ListQueuesCommand, serializeAws_restJson1ListQueuesCommand, } from "../protocols/Aws_restJson1";
|
|
6
7
|
var ListQueuesCommand = (function (_super) {
|
|
7
8
|
__extends(ListQueuesCommand, _super);
|
|
@@ -1,8 +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 { ListTagsForResourceRequest } from "../models/
|
|
5
|
-
import { ListTagsForResourceResponse } from "../models/models_2";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2";
|
|
6
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
7
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
8
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -1038,6 +1038,10 @@ export var InputTimecodeSource;
|
|
|
1038
1038
|
InputTimecodeSource["SPECIFIEDSTART"] = "SPECIFIEDSTART";
|
|
1039
1039
|
InputTimecodeSource["ZEROBASED"] = "ZEROBASED";
|
|
1040
1040
|
})(InputTimecodeSource || (InputTimecodeSource = {}));
|
|
1041
|
+
export var InputVideoGenerator;
|
|
1042
|
+
(function (InputVideoGenerator) {
|
|
1043
|
+
InputVideoGenerator.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1044
|
+
})(InputVideoGenerator || (InputVideoGenerator = {}));
|
|
1041
1045
|
export var AlphaBehavior;
|
|
1042
1046
|
(function (AlphaBehavior) {
|
|
1043
1047
|
AlphaBehavior["DISCARD"] = "DISCARD";
|
|
@@ -1065,6 +1069,11 @@ export var Hdr10Metadata;
|
|
|
1065
1069
|
(function (Hdr10Metadata) {
|
|
1066
1070
|
Hdr10Metadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1067
1071
|
})(Hdr10Metadata || (Hdr10Metadata = {}));
|
|
1072
|
+
export var PadVideo;
|
|
1073
|
+
(function (PadVideo) {
|
|
1074
|
+
PadVideo["BLACK"] = "BLACK";
|
|
1075
|
+
PadVideo["DISABLED"] = "DISABLED";
|
|
1076
|
+
})(PadVideo || (PadVideo = {}));
|
|
1068
1077
|
export var InputRotate;
|
|
1069
1078
|
(function (InputRotate) {
|
|
1070
1079
|
InputRotate["AUTO"] = "AUTO";
|
|
@@ -1771,12 +1780,3 @@ export var M2tsSegmentationStyle;
|
|
|
1771
1780
|
M2tsSegmentationStyle["MAINTAIN_CADENCE"] = "MAINTAIN_CADENCE";
|
|
1772
1781
|
M2tsSegmentationStyle["RESET_CADENCE"] = "RESET_CADENCE";
|
|
1773
1782
|
})(M2tsSegmentationStyle || (M2tsSegmentationStyle = {}));
|
|
1774
|
-
export var M2tsSettings;
|
|
1775
|
-
(function (M2tsSettings) {
|
|
1776
|
-
M2tsSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1777
|
-
})(M2tsSettings || (M2tsSettings = {}));
|
|
1778
|
-
export var M3u8AudioDuration;
|
|
1779
|
-
(function (M3u8AudioDuration) {
|
|
1780
|
-
M3u8AudioDuration["DEFAULT_CODEC_DURATION"] = "DEFAULT_CODEC_DURATION";
|
|
1781
|
-
M3u8AudioDuration["MATCH_VIDEO_DURATION"] = "MATCH_VIDEO_DURATION";
|
|
1782
|
-
})(M3u8AudioDuration || (M3u8AudioDuration = {}));
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
+
export var M2tsSettings;
|
|
4
|
+
(function (M2tsSettings) {
|
|
5
|
+
M2tsSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
+
})(M2tsSettings || (M2tsSettings = {}));
|
|
7
|
+
export var M3u8AudioDuration;
|
|
8
|
+
(function (M3u8AudioDuration) {
|
|
9
|
+
M3u8AudioDuration["DEFAULT_CODEC_DURATION"] = "DEFAULT_CODEC_DURATION";
|
|
10
|
+
M3u8AudioDuration["MATCH_VIDEO_DURATION"] = "MATCH_VIDEO_DURATION";
|
|
11
|
+
})(M3u8AudioDuration || (M3u8AudioDuration = {}));
|
|
3
12
|
export var M3u8DataPtsControl;
|
|
4
13
|
(function (M3u8DataPtsControl) {
|
|
5
14
|
M3u8DataPtsControl["ALIGN_TO_VIDEO"] = "ALIGN_TO_VIDEO";
|
|
@@ -1119,9 +1128,15 @@ export var DolbyVisionLevel6Mode;
|
|
|
1119
1128
|
DolbyVisionLevel6Mode["RECALCULATE"] = "RECALCULATE";
|
|
1120
1129
|
DolbyVisionLevel6Mode["SPECIFY"] = "SPECIFY";
|
|
1121
1130
|
})(DolbyVisionLevel6Mode || (DolbyVisionLevel6Mode = {}));
|
|
1131
|
+
export var DolbyVisionMapping;
|
|
1132
|
+
(function (DolbyVisionMapping) {
|
|
1133
|
+
DolbyVisionMapping["HDR10_1000"] = "HDR10_1000";
|
|
1134
|
+
DolbyVisionMapping["HDR10_NOMAP"] = "HDR10_NOMAP";
|
|
1135
|
+
})(DolbyVisionMapping || (DolbyVisionMapping = {}));
|
|
1122
1136
|
export var DolbyVisionProfile;
|
|
1123
1137
|
(function (DolbyVisionProfile) {
|
|
1124
1138
|
DolbyVisionProfile["PROFILE_5"] = "PROFILE_5";
|
|
1139
|
+
DolbyVisionProfile["PROFILE_8_1"] = "PROFILE_8_1";
|
|
1125
1140
|
})(DolbyVisionProfile || (DolbyVisionProfile = {}));
|
|
1126
1141
|
export var DolbyVision;
|
|
1127
1142
|
(function (DolbyVision) {
|
|
@@ -1610,15 +1625,3 @@ export var ListQueuesRequest;
|
|
|
1610
1625
|
(function (ListQueuesRequest) {
|
|
1611
1626
|
ListQueuesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1612
1627
|
})(ListQueuesRequest || (ListQueuesRequest = {}));
|
|
1613
|
-
export var ListQueuesResponse;
|
|
1614
|
-
(function (ListQueuesResponse) {
|
|
1615
|
-
ListQueuesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1616
|
-
})(ListQueuesResponse || (ListQueuesResponse = {}));
|
|
1617
|
-
export var ListTagsForResourceRequest;
|
|
1618
|
-
(function (ListTagsForResourceRequest) {
|
|
1619
|
-
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1620
|
-
})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
|
|
1621
|
-
export var ResourceTags;
|
|
1622
|
-
(function (ResourceTags) {
|
|
1623
|
-
ResourceTags.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1624
|
-
})(ResourceTags || (ResourceTags = {}));
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var ListQueuesResponse;
|
|
3
|
+
(function (ListQueuesResponse) {
|
|
4
|
+
ListQueuesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
+
})(ListQueuesResponse || (ListQueuesResponse = {}));
|
|
6
|
+
export var ListTagsForResourceRequest;
|
|
7
|
+
(function (ListTagsForResourceRequest) {
|
|
8
|
+
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
|
+
})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
|
|
10
|
+
export var ResourceTags;
|
|
11
|
+
(function (ResourceTags) {
|
|
12
|
+
ResourceTags.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
|
+
})(ResourceTags || (ResourceTags = {}));
|
|
2
14
|
export var ListTagsForResourceResponse;
|
|
3
15
|
(function (ListTagsForResourceResponse) {
|
|
4
16
|
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -3715,10 +3715,10 @@ var serializeAws_restJson1DestinationSettings = function (input, context) {
|
|
|
3715
3715
|
}));
|
|
3716
3716
|
};
|
|
3717
3717
|
var serializeAws_restJson1DolbyVision = function (input, context) {
|
|
3718
|
-
return __assign(__assign(__assign({}, (input.L6Metadata !== undefined &&
|
|
3718
|
+
return __assign(__assign(__assign(__assign({}, (input.L6Metadata !== undefined &&
|
|
3719
3719
|
input.L6Metadata !== null && {
|
|
3720
3720
|
l6Metadata: serializeAws_restJson1DolbyVisionLevel6Metadata(input.L6Metadata, context),
|
|
3721
|
-
})), (input.L6Mode !== undefined && input.L6Mode !== null && { l6Mode: input.L6Mode })), (input.Profile !== undefined && input.Profile !== null && { profile: input.Profile }));
|
|
3721
|
+
})), (input.L6Mode !== undefined && input.L6Mode !== null && { l6Mode: input.L6Mode })), (input.Mapping !== undefined && input.Mapping !== null && { mapping: input.Mapping })), (input.Profile !== undefined && input.Profile !== null && { profile: input.Profile }));
|
|
3722
3722
|
};
|
|
3723
3723
|
var serializeAws_restJson1DolbyVisionLevel6Metadata = function (input, context) {
|
|
3724
3724
|
return __assign(__assign({}, (input.MaxCll !== undefined && input.MaxCll !== null && { maxCll: input.MaxCll })), (input.MaxFall !== undefined && input.MaxFall !== null && { maxFall: input.MaxFall }));
|
|
@@ -4037,7 +4037,7 @@ var serializeAws_restJson1ImscDestinationSettings = function (input, context) {
|
|
|
4037
4037
|
input.StylePassthrough !== null && { stylePassthrough: input.StylePassthrough }));
|
|
4038
4038
|
};
|
|
4039
4039
|
var serializeAws_restJson1Input = function (input, context) {
|
|
4040
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioSelectorGroups !== undefined &&
|
|
4040
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioSelectorGroups !== undefined &&
|
|
4041
4041
|
input.AudioSelectorGroups !== null && {
|
|
4042
4042
|
audioSelectorGroups: serializeAws_restJson1__mapOfAudioSelectorGroup(input.AudioSelectorGroups, context),
|
|
4043
4043
|
})), (input.AudioSelectors !== undefined &&
|
|
@@ -4063,7 +4063,10 @@ var serializeAws_restJson1Input = function (input, context) {
|
|
|
4063
4063
|
input.SupplementalImps !== null && {
|
|
4064
4064
|
supplementalImps: serializeAws_restJson1__listOf__stringPatternS3ASSETMAPXml(input.SupplementalImps, context),
|
|
4065
4065
|
})), (input.TimecodeSource !== undefined &&
|
|
4066
|
-
input.TimecodeSource !== null && { timecodeSource: input.TimecodeSource })), (input.TimecodeStart !== undefined && input.TimecodeStart !== null && { timecodeStart: input.TimecodeStart })), (input.
|
|
4066
|
+
input.TimecodeSource !== null && { timecodeSource: input.TimecodeSource })), (input.TimecodeStart !== undefined && input.TimecodeStart !== null && { timecodeStart: input.TimecodeStart })), (input.VideoGenerator !== undefined &&
|
|
4067
|
+
input.VideoGenerator !== null && {
|
|
4068
|
+
videoGenerator: serializeAws_restJson1InputVideoGenerator(input.VideoGenerator, context),
|
|
4069
|
+
})), (input.VideoSelector !== undefined &&
|
|
4067
4070
|
input.VideoSelector !== null && {
|
|
4068
4071
|
videoSelector: serializeAws_restJson1VideoSelector(input.VideoSelector, context),
|
|
4069
4072
|
}));
|
|
@@ -4103,6 +4106,9 @@ var serializeAws_restJson1InputTemplate = function (input, context) {
|
|
|
4103
4106
|
videoSelector: serializeAws_restJson1VideoSelector(input.VideoSelector, context),
|
|
4104
4107
|
}));
|
|
4105
4108
|
};
|
|
4109
|
+
var serializeAws_restJson1InputVideoGenerator = function (input, context) {
|
|
4110
|
+
return __assign({}, (input.Duration !== undefined && input.Duration !== null && { duration: input.Duration }));
|
|
4111
|
+
};
|
|
4106
4112
|
var serializeAws_restJson1InsertableImage = function (input, context) {
|
|
4107
4113
|
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Duration !== undefined && input.Duration !== null && { duration: input.Duration })), (input.FadeIn !== undefined && input.FadeIn !== null && { fadeIn: input.FadeIn })), (input.FadeOut !== undefined && input.FadeOut !== null && { fadeOut: input.FadeOut })), (input.Height !== undefined && input.Height !== null && { height: input.Height })), (input.ImageInserterInput !== undefined &&
|
|
4108
4114
|
input.ImageInserterInput !== null && { imageInserterInput: input.ImageInserterInput })), (input.ImageX !== undefined && input.ImageX !== null && { imageX: input.ImageX })), (input.ImageY !== undefined && input.ImageY !== null && { imageY: input.ImageY })), (input.Layer !== undefined && input.Layer !== null && { layer: input.Layer })), (input.Opacity !== undefined && input.Opacity !== null && { opacity: input.Opacity })), (input.StartTime !== undefined && input.StartTime !== null && { startTime: input.StartTime })), (input.Width !== undefined && input.Width !== null && { width: input.Width }));
|
|
@@ -4622,12 +4628,12 @@ var serializeAws_restJson1VideoPreprocessor = function (input, context) {
|
|
|
4622
4628
|
}));
|
|
4623
4629
|
};
|
|
4624
4630
|
var serializeAws_restJson1VideoSelector = function (input, context) {
|
|
4625
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AlphaBehavior !== undefined && input.AlphaBehavior !== null && { alphaBehavior: input.AlphaBehavior })), (input.ColorSpace !== undefined && input.ColorSpace !== null && { colorSpace: input.ColorSpace })), (input.ColorSpaceUsage !== undefined &&
|
|
4631
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AlphaBehavior !== undefined && input.AlphaBehavior !== null && { alphaBehavior: input.AlphaBehavior })), (input.ColorSpace !== undefined && input.ColorSpace !== null && { colorSpace: input.ColorSpace })), (input.ColorSpaceUsage !== undefined &&
|
|
4626
4632
|
input.ColorSpaceUsage !== null && { colorSpaceUsage: input.ColorSpaceUsage })), (input.EmbeddedTimecodeOverride !== undefined &&
|
|
4627
4633
|
input.EmbeddedTimecodeOverride !== null && { embeddedTimecodeOverride: input.EmbeddedTimecodeOverride })), (input.Hdr10Metadata !== undefined &&
|
|
4628
4634
|
input.Hdr10Metadata !== null && {
|
|
4629
4635
|
hdr10Metadata: serializeAws_restJson1Hdr10Metadata(input.Hdr10Metadata, context),
|
|
4630
|
-
})), (input.Pid !== undefined && input.Pid !== null && { pid: input.Pid })), (input.ProgramNumber !== undefined && input.ProgramNumber !== null && { programNumber: input.ProgramNumber })), (input.Rotate !== undefined && input.Rotate !== null && { rotate: input.Rotate })), (input.SampleRange !== undefined && input.SampleRange !== null && { sampleRange: input.SampleRange }));
|
|
4636
|
+
})), (input.PadVideo !== undefined && input.PadVideo !== null && { padVideo: input.PadVideo })), (input.Pid !== undefined && input.Pid !== null && { pid: input.Pid })), (input.ProgramNumber !== undefined && input.ProgramNumber !== null && { programNumber: input.ProgramNumber })), (input.Rotate !== undefined && input.Rotate !== null && { rotate: input.Rotate })), (input.SampleRange !== undefined && input.SampleRange !== null && { sampleRange: input.SampleRange }));
|
|
4631
4637
|
};
|
|
4632
4638
|
var serializeAws_restJson1VorbisSettings = function (input, context) {
|
|
4633
4639
|
return __assign(__assign(__assign({}, (input.Channels !== undefined && input.Channels !== null && { channels: input.Channels })), (input.SampleRate !== undefined && input.SampleRate !== null && { sampleRate: input.SampleRate })), (input.VbrQuality !== undefined && input.VbrQuality !== null && { vbrQuality: input.VbrQuality }));
|
|
@@ -5695,6 +5701,7 @@ var deserializeAws_restJson1DolbyVision = function (output, context) {
|
|
|
5695
5701
|
? deserializeAws_restJson1DolbyVisionLevel6Metadata(output.l6Metadata, context)
|
|
5696
5702
|
: undefined,
|
|
5697
5703
|
L6Mode: __expectString(output.l6Mode),
|
|
5704
|
+
Mapping: __expectString(output.mapping),
|
|
5698
5705
|
Profile: __expectString(output.profile),
|
|
5699
5706
|
};
|
|
5700
5707
|
};
|
|
@@ -6184,6 +6191,9 @@ var deserializeAws_restJson1Input = function (output, context) {
|
|
|
6184
6191
|
: undefined,
|
|
6185
6192
|
TimecodeSource: __expectString(output.timecodeSource),
|
|
6186
6193
|
TimecodeStart: __expectString(output.timecodeStart),
|
|
6194
|
+
VideoGenerator: output.videoGenerator !== undefined && output.videoGenerator !== null
|
|
6195
|
+
? deserializeAws_restJson1InputVideoGenerator(output.videoGenerator, context)
|
|
6196
|
+
: undefined,
|
|
6187
6197
|
VideoSelector: output.videoSelector !== undefined && output.videoSelector !== null
|
|
6188
6198
|
? deserializeAws_restJson1VideoSelector(output.videoSelector, context)
|
|
6189
6199
|
: undefined,
|
|
@@ -6241,6 +6251,11 @@ var deserializeAws_restJson1InputTemplate = function (output, context) {
|
|
|
6241
6251
|
: undefined,
|
|
6242
6252
|
};
|
|
6243
6253
|
};
|
|
6254
|
+
var deserializeAws_restJson1InputVideoGenerator = function (output, context) {
|
|
6255
|
+
return {
|
|
6256
|
+
Duration: __expectInt32(output.duration),
|
|
6257
|
+
};
|
|
6258
|
+
};
|
|
6244
6259
|
var deserializeAws_restJson1InsertableImage = function (output, context) {
|
|
6245
6260
|
return {
|
|
6246
6261
|
Duration: __expectInt32(output.duration),
|
|
@@ -7210,6 +7225,7 @@ var deserializeAws_restJson1VideoSelector = function (output, context) {
|
|
|
7210
7225
|
Hdr10Metadata: output.hdr10Metadata !== undefined && output.hdr10Metadata !== null
|
|
7211
7226
|
? deserializeAws_restJson1Hdr10Metadata(output.hdr10Metadata, context)
|
|
7212
7227
|
: undefined,
|
|
7228
|
+
PadVideo: __expectString(output.padVideo),
|
|
7213
7229
|
Pid: __expectInt32(output.pid),
|
|
7214
7230
|
ProgramNumber: __expectInt32(output.programNumber),
|
|
7215
7231
|
Rotate: __expectString(output.rotate),
|
|
@@ -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 { ListQueuesRequest
|
|
4
|
+
import { ListQueuesRequest } from "../models/models_1";
|
|
5
|
+
import { ListQueuesResponse } from "../models/models_2";
|
|
5
6
|
export interface ListQueuesCommandInput extends ListQueuesRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataBearer {
|
|
@@ -1,8 +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 { ListTagsForResourceRequest } from "../models/
|
|
5
|
-
import { ListTagsForResourceResponse } from "../models/models_2";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2";
|
|
6
5
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|