@aws-sdk/client-mediaconvert 3.100.0 → 3.110.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/dist-cjs/MediaConvertClient.js +2 -0
- package/dist-cjs/commands/ListJobsCommand.js +2 -1
- package/dist-cjs/models/models_0.js +11 -9
- package/dist-cjs/models/models_1.js +11 -12
- package/dist-cjs/models/models_2.js +7 -1
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/MediaConvertClient.js +2 -0
- package/dist-es/commands/ListJobsCommand.js +2 -1
- package/dist-es/models/models_0.js +7 -5
- package/dist-es/models/models_1.js +5 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -1
- package/dist-types/commands/ListJobsCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +18 -24
- package/dist-types/models/models_1.d.ts +11 -35
- package/dist-types/models/models_2.d.ts +19 -7
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +14 -22
- package/dist-types/ts3.4/models/models_1.d.ts +11 -29
- package/dist-types/ts3.4/models/models_2.d.ts +13 -7
- package/package.json +29 -28
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.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-mediaconvert:** AWS Elemental MediaConvert SDK has added support for rules that constrain Automatic-ABR rendition selection when generating ABR package ladders. ([9c9825e](https://github.com/aws/aws-sdk-js-v3/commit/9c9825e38fd7acb00d82fb4d80921879d1b9205f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-mediaconvert
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class MediaConvertClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -4,6 +4,7 @@ exports.ListJobsCommand = 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 ListJobsCommand extends smithy_client_1.Command {
|
|
9
10
|
constructor(input) {
|
|
@@ -21,7 +22,7 @@ class ListJobsCommand extends smithy_client_1.Command {
|
|
|
21
22
|
clientName,
|
|
22
23
|
commandName,
|
|
23
24
|
inputFilterSensitiveLog: models_1_1.ListJobsRequest.filterSensitiveLog,
|
|
24
|
-
outputFilterSensitiveLog:
|
|
25
|
+
outputFilterSensitiveLog: models_2_1.ListJobsResponse.filterSensitiveLog,
|
|
25
26
|
};
|
|
26
27
|
const { requestHandler } = configuration;
|
|
27
28
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
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 = exports.AllowedRenditionSize = exports.RequiredFlag = void 0;
|
|
4
4
|
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.AutomatedAbrRule = exports.RuleType = exports.MinTopRenditionSize = exports.MinBottomRenditionSize = exports.ForceIncludeRenditionSize = 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 = exports.Eac3SurroundExMode = exports.Eac3StereoDownmix = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
5
|
+
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.AudioDurationCorrection = 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 = exports.TeletextDestinationSettings = exports.TeletextPageType = exports.SrtDestinationSettings = exports.SrtStylePassthrough = exports.SccDestinationSettings = exports.SccDestinationFramerate = exports.ImscDestinationSettings = void 0;
|
|
6
|
+
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 = exports.InputTimecodeSource = exports.InputPsiControl = exports.InputScanType = exports.InputClipping = exports.ImageInserter = exports.InsertableImage = exports.InputFilterEnable = exports.InputDenoiseFilter = void 0;
|
|
7
|
+
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 = exports.DestinationSettings = exports.S3DestinationSettings = exports.S3EncryptionSettings = exports.S3ServerSideEncryptionType = exports.S3DestinationAccessControl = exports.S3ObjectCannedAcl = exports.CmafCodecSpecification = exports.CmafClientCache = void 0;
|
|
8
|
+
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 = exports.HlsImageBasedTrickPlaySettings = exports.HlsIntervalCadence = exports.HlsImageBasedTrickPlay = exports.HlsEncryptionSettings = exports.HlsKeyProviderType = exports.HlsOfflineEncrypted = exports.HlsInitializationVectorInManifest = exports.HlsEncryptionType = void 0;
|
|
9
9
|
var RequiredFlag;
|
|
10
10
|
(function (RequiredFlag) {
|
|
11
11
|
RequiredFlag["DISABLED"] = "DISABLED";
|
|
@@ -996,6 +996,13 @@ var AudioSelectorGroup;
|
|
|
996
996
|
...obj,
|
|
997
997
|
});
|
|
998
998
|
})(AudioSelectorGroup = exports.AudioSelectorGroup || (exports.AudioSelectorGroup = {}));
|
|
999
|
+
var AudioDurationCorrection;
|
|
1000
|
+
(function (AudioDurationCorrection) {
|
|
1001
|
+
AudioDurationCorrection["AUTO"] = "AUTO";
|
|
1002
|
+
AudioDurationCorrection["DISABLED"] = "DISABLED";
|
|
1003
|
+
AudioDurationCorrection["FRAME"] = "FRAME";
|
|
1004
|
+
AudioDurationCorrection["TRACK"] = "TRACK";
|
|
1005
|
+
})(AudioDurationCorrection = exports.AudioDurationCorrection || (exports.AudioDurationCorrection = {}));
|
|
999
1006
|
var AudioDefaultSelection;
|
|
1000
1007
|
(function (AudioDefaultSelection) {
|
|
1001
1008
|
AudioDefaultSelection["DEFAULT"] = "DEFAULT";
|
|
@@ -1994,8 +2001,3 @@ var M2tsForceTsVideoEbpOrder;
|
|
|
1994
2001
|
M2tsForceTsVideoEbpOrder["DEFAULT"] = "DEFAULT";
|
|
1995
2002
|
M2tsForceTsVideoEbpOrder["FORCE"] = "FORCE";
|
|
1996
2003
|
})(M2tsForceTsVideoEbpOrder = exports.M2tsForceTsVideoEbpOrder || (exports.M2tsForceTsVideoEbpOrder = {}));
|
|
1997
|
-
var M2tsKlvMetadata;
|
|
1998
|
-
(function (M2tsKlvMetadata) {
|
|
1999
|
-
M2tsKlvMetadata["NONE"] = "NONE";
|
|
2000
|
-
M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
2001
|
-
})(M2tsKlvMetadata = exports.M2tsKlvMetadata || (exports.M2tsKlvMetadata = {}));
|
|
@@ -1,12 +1,17 @@
|
|
|
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.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 = exports.M2tsSegmentationStyle = exports.M2tsSegmentationMarkers = exports.M2tsScte35Source = exports.M2tsScte35Esam = exports.M2tsRateMode = exports.M2tsPcrControl = exports.M2tsNielsenId3 = exports.M2tsKlvMetadata = void 0;
|
|
4
|
+
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 = exports.AvcIntraUhdQualityTuningLevel = exports.AvcIntraClass = exports.Av1Settings = exports.Av1SpatialAdaptiveQuantization = exports.Av1RateControlMode = exports.Av1QvbrSettings = exports.Av1FramerateConversionAlgorithm = exports.Av1FramerateControl = void 0;
|
|
5
|
+
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 = exports.H265QvbrSettings = exports.H265QualityTuningLevel = exports.H265ParControl = exports.H265InterlaceMode = exports.H265GopSizeUnits = exports.H265GopBReference = exports.H265FramerateConversionAlgorithm = exports.H265FramerateControl = void 0;
|
|
6
|
+
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 = exports.Vc3Class = exports.Vc3Telecine = exports.Vc3SlowPal = exports.Vc3ScanTypeConversionMode = exports.Vc3InterlaceMode = exports.Vc3FramerateConversionAlgorithm = exports.Vc3FramerateControl = exports.ProresSettings = void 0;
|
|
7
|
+
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 = exports.DeinterlacerControl = exports.DeinterlaceAlgorithm = exports.ColorCorrector = exports.SampleRangeConversion = exports.ColorSpaceConversion = exports.VideoTimecodeInsertion = exports.ScalingBehavior = exports.RespondToAfd = void 0;
|
|
8
|
+
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 = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = exports.AssociateCertificateResponse = exports.AssociateCertificateRequest = exports.Queue = exports.QueueStatus = exports.ReservationPlan = void 0;
|
|
9
9
|
const MediaConvertServiceException_1 = require("./MediaConvertServiceException");
|
|
10
|
+
var M2tsKlvMetadata;
|
|
11
|
+
(function (M2tsKlvMetadata) {
|
|
12
|
+
M2tsKlvMetadata["NONE"] = "NONE";
|
|
13
|
+
M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
14
|
+
})(M2tsKlvMetadata = exports.M2tsKlvMetadata || (exports.M2tsKlvMetadata = {}));
|
|
10
15
|
var M2tsNielsenId3;
|
|
11
16
|
(function (M2tsNielsenId3) {
|
|
12
17
|
M2tsNielsenId3["INSERT"] = "INSERT";
|
|
@@ -1833,9 +1838,3 @@ var ListJobsRequest;
|
|
|
1833
1838
|
...obj,
|
|
1834
1839
|
});
|
|
1835
1840
|
})(ListJobsRequest = exports.ListJobsRequest || (exports.ListJobsRequest = {}));
|
|
1836
|
-
var ListJobsResponse;
|
|
1837
|
-
(function (ListJobsResponse) {
|
|
1838
|
-
ListJobsResponse.filterSensitiveLog = (obj) => ({
|
|
1839
|
-
...obj,
|
|
1840
|
-
});
|
|
1841
|
-
})(ListJobsResponse = exports.ListJobsResponse || (exports.ListJobsResponse = {}));
|
|
@@ -1,6 +1,12 @@
|
|
|
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 = exports.ResourceTags = exports.ListTagsForResourceRequest = exports.ListQueuesResponse = exports.ListQueuesRequest = exports.QueueListBy = exports.ListPresetsResponse = exports.ListPresetsRequest = exports.PresetListBy = exports.ListJobTemplatesResponse = exports.ListJobTemplatesRequest = 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 = exports.ListQueuesRequest = exports.QueueListBy = exports.ListPresetsResponse = exports.ListPresetsRequest = exports.PresetListBy = exports.ListJobTemplatesResponse = exports.ListJobTemplatesRequest = exports.ListJobsResponse = void 0;
|
|
4
|
+
var ListJobsResponse;
|
|
5
|
+
(function (ListJobsResponse) {
|
|
6
|
+
ListJobsResponse.filterSensitiveLog = (obj) => ({
|
|
7
|
+
...obj,
|
|
8
|
+
});
|
|
9
|
+
})(ListJobsResponse = exports.ListJobsResponse || (exports.ListJobsResponse = {}));
|
|
4
10
|
var ListJobTemplatesRequest;
|
|
5
11
|
(function (ListJobTemplatesRequest) {
|
|
6
12
|
ListJobTemplatesRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -2797,6 +2797,8 @@ const serializeAws_restJson1AudioNormalizationSettings = (input, context) => {
|
|
|
2797
2797
|
};
|
|
2798
2798
|
const serializeAws_restJson1AudioSelector = (input, context) => {
|
|
2799
2799
|
return {
|
|
2800
|
+
...(input.AudioDurationCorrection !== undefined &&
|
|
2801
|
+
input.AudioDurationCorrection !== null && { audioDurationCorrection: input.AudioDurationCorrection }),
|
|
2800
2802
|
...(input.CustomLanguageCode !== undefined &&
|
|
2801
2803
|
input.CustomLanguageCode !== null && { customLanguageCode: input.CustomLanguageCode }),
|
|
2802
2804
|
...(input.DefaultSelection !== undefined &&
|
|
@@ -5868,6 +5870,7 @@ const deserializeAws_restJson1AudioNormalizationSettings = (output, context) =>
|
|
|
5868
5870
|
};
|
|
5869
5871
|
const deserializeAws_restJson1AudioSelector = (output, context) => {
|
|
5870
5872
|
return {
|
|
5873
|
+
AudioDurationCorrection: (0, smithy_client_1.expectString)(output.audioDurationCorrection),
|
|
5871
5874
|
CustomLanguageCode: (0, smithy_client_1.expectString)(output.customLanguageCode),
|
|
5872
5875
|
DefaultSelection: (0, smithy_client_1.expectString)(output.defaultSelection),
|
|
5873
5876
|
ExternalAudioFileInput: (0, smithy_client_1.expectString)(output.externalAudioFileInput),
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var MediaConvertClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -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 { ListJobsRequest
|
|
4
|
+
import { ListJobsRequest } from "../models/models_1";
|
|
5
|
+
import { ListJobsResponse } from "../models/models_2";
|
|
5
6
|
import { deserializeAws_restJson1ListJobsCommand, serializeAws_restJson1ListJobsCommand, } from "../protocols/Aws_restJson1";
|
|
6
7
|
var ListJobsCommand = (function (_super) {
|
|
7
8
|
__extends(ListJobsCommand, _super);
|
|
@@ -905,6 +905,13 @@ export var AudioSelectorGroup;
|
|
|
905
905
|
(function (AudioSelectorGroup) {
|
|
906
906
|
AudioSelectorGroup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
907
907
|
})(AudioSelectorGroup || (AudioSelectorGroup = {}));
|
|
908
|
+
export var AudioDurationCorrection;
|
|
909
|
+
(function (AudioDurationCorrection) {
|
|
910
|
+
AudioDurationCorrection["AUTO"] = "AUTO";
|
|
911
|
+
AudioDurationCorrection["DISABLED"] = "DISABLED";
|
|
912
|
+
AudioDurationCorrection["FRAME"] = "FRAME";
|
|
913
|
+
AudioDurationCorrection["TRACK"] = "TRACK";
|
|
914
|
+
})(AudioDurationCorrection || (AudioDurationCorrection = {}));
|
|
908
915
|
export var AudioDefaultSelection;
|
|
909
916
|
(function (AudioDefaultSelection) {
|
|
910
917
|
AudioDefaultSelection["DEFAULT"] = "DEFAULT";
|
|
@@ -1769,8 +1776,3 @@ export var M2tsForceTsVideoEbpOrder;
|
|
|
1769
1776
|
M2tsForceTsVideoEbpOrder["DEFAULT"] = "DEFAULT";
|
|
1770
1777
|
M2tsForceTsVideoEbpOrder["FORCE"] = "FORCE";
|
|
1771
1778
|
})(M2tsForceTsVideoEbpOrder || (M2tsForceTsVideoEbpOrder = {}));
|
|
1772
|
-
export var M2tsKlvMetadata;
|
|
1773
|
-
(function (M2tsKlvMetadata) {
|
|
1774
|
-
M2tsKlvMetadata["NONE"] = "NONE";
|
|
1775
|
-
M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
1776
|
-
})(M2tsKlvMetadata || (M2tsKlvMetadata = {}));
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException";
|
|
3
|
+
export var M2tsKlvMetadata;
|
|
4
|
+
(function (M2tsKlvMetadata) {
|
|
5
|
+
M2tsKlvMetadata["NONE"] = "NONE";
|
|
6
|
+
M2tsKlvMetadata["PASSTHROUGH"] = "PASSTHROUGH";
|
|
7
|
+
})(M2tsKlvMetadata || (M2tsKlvMetadata = {}));
|
|
3
8
|
export var M2tsNielsenId3;
|
|
4
9
|
(function (M2tsNielsenId3) {
|
|
5
10
|
M2tsNielsenId3["INSERT"] = "INSERT";
|
|
@@ -1628,7 +1633,3 @@ export var ListJobsRequest;
|
|
|
1628
1633
|
(function (ListJobsRequest) {
|
|
1629
1634
|
ListJobsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1630
1635
|
})(ListJobsRequest || (ListJobsRequest = {}));
|
|
1631
|
-
export var ListJobsResponse;
|
|
1632
|
-
(function (ListJobsResponse) {
|
|
1633
|
-
ListJobsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1634
|
-
})(ListJobsResponse || (ListJobsResponse = {}));
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var ListJobsResponse;
|
|
3
|
+
(function (ListJobsResponse) {
|
|
4
|
+
ListJobsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
+
})(ListJobsResponse || (ListJobsResponse = {}));
|
|
2
6
|
export var ListJobTemplatesRequest;
|
|
3
7
|
(function (ListJobTemplatesRequest) {
|
|
4
8
|
ListJobTemplatesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -3424,7 +3424,8 @@ var serializeAws_restJson1AudioNormalizationSettings = function (input, context)
|
|
|
3424
3424
|
input.TargetLkfs !== null && { targetLkfs: __serializeFloat(input.TargetLkfs) }));
|
|
3425
3425
|
};
|
|
3426
3426
|
var serializeAws_restJson1AudioSelector = function (input, context) {
|
|
3427
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.
|
|
3427
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioDurationCorrection !== undefined &&
|
|
3428
|
+
input.AudioDurationCorrection !== null && { audioDurationCorrection: input.AudioDurationCorrection })), (input.CustomLanguageCode !== undefined &&
|
|
3428
3429
|
input.CustomLanguageCode !== null && { customLanguageCode: input.CustomLanguageCode })), (input.DefaultSelection !== undefined &&
|
|
3429
3430
|
input.DefaultSelection !== null && { defaultSelection: input.DefaultSelection })), (input.ExternalAudioFileInput !== undefined &&
|
|
3430
3431
|
input.ExternalAudioFileInput !== null && { externalAudioFileInput: input.ExternalAudioFileInput })), (input.HlsRenditionGroupSettings !== undefined &&
|
|
@@ -5380,6 +5381,7 @@ var deserializeAws_restJson1AudioNormalizationSettings = function (output, conte
|
|
|
5380
5381
|
};
|
|
5381
5382
|
var deserializeAws_restJson1AudioSelector = function (output, context) {
|
|
5382
5383
|
return {
|
|
5384
|
+
AudioDurationCorrection: __expectString(output.audioDurationCorrection),
|
|
5383
5385
|
CustomLanguageCode: __expectString(output.customLanguageCode),
|
|
5384
5386
|
DefaultSelection: __expectString(output.defaultSelection),
|
|
5385
5387
|
ExternalAudioFileInput: __expectString(output.externalAudioFileInput),
|
|
@@ -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 { ListJobsRequest
|
|
4
|
+
import { ListJobsRequest } from "../models/models_1";
|
|
5
|
+
import { ListJobsResponse } from "../models/models_2";
|
|
5
6
|
export interface ListJobsCommandInput extends ListJobsRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {
|
|
@@ -2006,6 +2006,12 @@ export declare namespace AudioSelectorGroup {
|
|
|
2006
2006
|
*/
|
|
2007
2007
|
const filterSensitiveLog: (obj: AudioSelectorGroup) => any;
|
|
2008
2008
|
}
|
|
2009
|
+
export declare enum AudioDurationCorrection {
|
|
2010
|
+
AUTO = "AUTO",
|
|
2011
|
+
DISABLED = "DISABLED",
|
|
2012
|
+
FRAME = "FRAME",
|
|
2013
|
+
TRACK = "TRACK"
|
|
2014
|
+
}
|
|
2009
2015
|
export declare enum AudioDefaultSelection {
|
|
2010
2016
|
DEFAULT = "DEFAULT",
|
|
2011
2017
|
NOT_DEFAULT = "NOT_DEFAULT"
|
|
@@ -2043,6 +2049,10 @@ export declare enum AudioSelectorType {
|
|
|
2043
2049
|
* Use Audio selectors (AudioSelectors) to specify a track or set of tracks from the input that you will use in your outputs. You can use multiple Audio selectors per input.
|
|
2044
2050
|
*/
|
|
2045
2051
|
export interface AudioSelector {
|
|
2052
|
+
/**
|
|
2053
|
+
* Apply audio timing corrections to help synchronize audio and video in your output. To apply timing corrections, your input must meet the following requirements: * Container: MP4, or MOV, with an accurate time-to-sample (STTS) table. * Audio track: AAC. Choose from the following audio timing correction settings: * Disabled (Default): Apply no correction. * Auto: Recommended for most inputs. MediaConvert analyzes the audio timing in your input and determines which correction setting to use, if needed. * Track: Adjust the duration of each audio frame by a constant amount to align the audio track length with STTS duration. Track-level correction does not affect pitch, and is recommended for tonal audio content such as music. * Frame: Adjust the duration of each audio frame by a variable amount to align audio frames with STTS timestamps. No corrections are made to already-aligned frames. Frame-level correction may affect the pitch of corrected frames, and is recommended for atonal audio content such as speech or percussion.
|
|
2054
|
+
*/
|
|
2055
|
+
AudioDurationCorrection?: AudioDurationCorrection | string;
|
|
2046
2056
|
/**
|
|
2047
2057
|
* Selects a specific language code from within an audio source, using the ISO 639-2 or ISO 639-3 three-letter language code
|
|
2048
2058
|
*/
|
|
@@ -2543,7 +2553,7 @@ export declare enum InputTimecodeSource {
|
|
|
2543
2553
|
ZEROBASED = "ZEROBASED"
|
|
2544
2554
|
}
|
|
2545
2555
|
/**
|
|
2546
|
-
* Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs.
|
|
2556
|
+
* When you include Video generator, MediaConvert creates a video input with black frames. Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs. You can specify Video generator, or you can specify an Input file, but you cannot specify both. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-generator.html
|
|
2547
2557
|
*/
|
|
2548
2558
|
export interface InputVideoGenerator {
|
|
2549
2559
|
/**
|
|
@@ -2709,21 +2719,15 @@ export interface Input {
|
|
|
2709
2719
|
/**
|
|
2710
2720
|
* Use audio selector groups to combine multiple sidecar audio inputs so that you can assign them to a single output audio tab (AudioDescription). Note that, if you're working with embedded audio, it's simpler to assign multiple input tracks into a single audio selector rather than use an audio selector group.
|
|
2711
2721
|
*/
|
|
2712
|
-
AudioSelectorGroups?:
|
|
2713
|
-
[key: string]: AudioSelectorGroup;
|
|
2714
|
-
};
|
|
2722
|
+
AudioSelectorGroups?: Record<string, AudioSelectorGroup>;
|
|
2715
2723
|
/**
|
|
2716
2724
|
* Use Audio selectors (AudioSelectors) to specify a track or set of tracks from the input that you will use in your outputs. You can use multiple Audio selectors per input.
|
|
2717
2725
|
*/
|
|
2718
|
-
AudioSelectors?:
|
|
2719
|
-
[key: string]: AudioSelector;
|
|
2720
|
-
};
|
|
2726
|
+
AudioSelectors?: Record<string, AudioSelector>;
|
|
2721
2727
|
/**
|
|
2722
2728
|
* Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 20 captions selectors per input.
|
|
2723
2729
|
*/
|
|
2724
|
-
CaptionSelectors?:
|
|
2725
|
-
[key: string]: CaptionSelector;
|
|
2726
|
-
};
|
|
2730
|
+
CaptionSelectors?: Record<string, CaptionSelector>;
|
|
2727
2731
|
/**
|
|
2728
2732
|
* Use Cropping selection (crop) to specify the video area that the service will include in the output video frame. If you specify a value here, it will override any value that you specify in the output setting Cropping selection (crop).
|
|
2729
2733
|
*/
|
|
@@ -2793,7 +2797,7 @@ export interface Input {
|
|
|
2793
2797
|
*/
|
|
2794
2798
|
TimecodeStart?: string;
|
|
2795
2799
|
/**
|
|
2796
|
-
* Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs.
|
|
2800
|
+
* When you include Video generator, MediaConvert creates a video input with black frames. Use this setting if you do not have a video input or if you want to add black video frames before, or after, other inputs. You can specify Video generator, or you can specify an Input file, but you cannot specify both. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-generator.html
|
|
2797
2801
|
*/
|
|
2798
2802
|
VideoGenerator?: InputVideoGenerator;
|
|
2799
2803
|
/**
|
|
@@ -2814,21 +2818,15 @@ export interface InputTemplate {
|
|
|
2814
2818
|
/**
|
|
2815
2819
|
* Use audio selector groups to combine multiple sidecar audio inputs so that you can assign them to a single output audio tab (AudioDescription). Note that, if you're working with embedded audio, it's simpler to assign multiple input tracks into a single audio selector rather than use an audio selector group.
|
|
2816
2820
|
*/
|
|
2817
|
-
AudioSelectorGroups?:
|
|
2818
|
-
[key: string]: AudioSelectorGroup;
|
|
2819
|
-
};
|
|
2821
|
+
AudioSelectorGroups?: Record<string, AudioSelectorGroup>;
|
|
2820
2822
|
/**
|
|
2821
2823
|
* Use Audio selectors (AudioSelectors) to specify a track or set of tracks from the input that you will use in your outputs. You can use multiple Audio selectors per input.
|
|
2822
2824
|
*/
|
|
2823
|
-
AudioSelectors?:
|
|
2824
|
-
[key: string]: AudioSelector;
|
|
2825
|
-
};
|
|
2825
|
+
AudioSelectors?: Record<string, AudioSelector>;
|
|
2826
2826
|
/**
|
|
2827
2827
|
* Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 20 captions selectors per input.
|
|
2828
2828
|
*/
|
|
2829
|
-
CaptionSelectors?:
|
|
2830
|
-
[key: string]: CaptionSelector;
|
|
2831
|
-
};
|
|
2829
|
+
CaptionSelectors?: Record<string, CaptionSelector>;
|
|
2832
2830
|
/**
|
|
2833
2831
|
* Use Cropping selection (crop) to specify the video area that the service will include in the output video frame. If you specify a value here, it will override any value that you specify in the output setting Cropping selection (crop).
|
|
2834
2832
|
*/
|
|
@@ -4660,7 +4658,3 @@ export declare enum M2tsForceTsVideoEbpOrder {
|
|
|
4660
4658
|
DEFAULT = "DEFAULT",
|
|
4661
4659
|
FORCE = "FORCE"
|
|
4662
4660
|
}
|
|
4663
|
-
export declare enum M2tsKlvMetadata {
|
|
4664
|
-
NONE = "NONE",
|
|
4665
|
-
PASSTHROUGH = "PASSTHROUGH"
|
|
4666
|
-
}
|
|
@@ -1,6 +1,10 @@
|
|
|
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, DvbNitSettings, DvbSdtSettings, DvbTdtSettings, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, M2tsEbpAudioInterval, M2tsEbpPlacement, M2tsEsRateInPes, M2tsForceTsVideoEbpOrder,
|
|
3
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, DvbNitSettings, DvbSdtSettings, DvbTdtSettings, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, M2tsEbpAudioInterval, M2tsEbpPlacement, M2tsEsRateInPes, M2tsForceTsVideoEbpOrder, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
|
|
4
|
+
export declare enum M2tsKlvMetadata {
|
|
5
|
+
NONE = "NONE",
|
|
6
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
7
|
+
}
|
|
4
8
|
export declare enum M2tsNielsenId3 {
|
|
5
9
|
INSERT = "INSERT",
|
|
6
10
|
NONE = "NONE"
|
|
@@ -3357,9 +3361,7 @@ export interface Job {
|
|
|
3357
3361
|
/**
|
|
3358
3362
|
* User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs.
|
|
3359
3363
|
*/
|
|
3360
|
-
UserMetadata?:
|
|
3361
|
-
[key: string]: string;
|
|
3362
|
-
};
|
|
3364
|
+
UserMetadata?: Record<string, string>;
|
|
3363
3365
|
}
|
|
3364
3366
|
export declare namespace Job {
|
|
3365
3367
|
/**
|
|
@@ -3832,15 +3834,11 @@ export interface CreateJobRequest {
|
|
|
3832
3834
|
/**
|
|
3833
3835
|
* Optional. The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key. Use standard AWS tags on your job for automatic integration with AWS services and for custom integrations and workflows.
|
|
3834
3836
|
*/
|
|
3835
|
-
Tags?:
|
|
3836
|
-
[key: string]: string;
|
|
3837
|
-
};
|
|
3837
|
+
Tags?: Record<string, string>;
|
|
3838
3838
|
/**
|
|
3839
3839
|
* Optional. User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs. Use only for existing integrations or workflows that rely on job metadata tags. Otherwise, we recommend that you use standard AWS tags.
|
|
3840
3840
|
*/
|
|
3841
|
-
UserMetadata?:
|
|
3842
|
-
[key: string]: string;
|
|
3843
|
-
};
|
|
3841
|
+
UserMetadata?: Record<string, string>;
|
|
3844
3842
|
}
|
|
3845
3843
|
export declare namespace CreateJobRequest {
|
|
3846
3844
|
/**
|
|
@@ -3900,9 +3898,7 @@ export interface CreateJobTemplateRequest {
|
|
|
3900
3898
|
/**
|
|
3901
3899
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
3902
3900
|
*/
|
|
3903
|
-
Tags?:
|
|
3904
|
-
[key: string]: string;
|
|
3905
|
-
};
|
|
3901
|
+
Tags?: Record<string, string>;
|
|
3906
3902
|
}
|
|
3907
3903
|
export declare namespace CreateJobTemplateRequest {
|
|
3908
3904
|
/**
|
|
@@ -3942,9 +3938,7 @@ export interface CreatePresetRequest {
|
|
|
3942
3938
|
/**
|
|
3943
3939
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
3944
3940
|
*/
|
|
3945
|
-
Tags?:
|
|
3946
|
-
[key: string]: string;
|
|
3947
|
-
};
|
|
3941
|
+
Tags?: Record<string, string>;
|
|
3948
3942
|
}
|
|
3949
3943
|
export declare namespace CreatePresetRequest {
|
|
3950
3944
|
/**
|
|
@@ -4011,9 +4005,7 @@ export interface CreateQueueRequest {
|
|
|
4011
4005
|
/**
|
|
4012
4006
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
4013
4007
|
*/
|
|
4014
|
-
Tags?:
|
|
4015
|
-
[key: string]: string;
|
|
4016
|
-
};
|
|
4008
|
+
Tags?: Record<string, string>;
|
|
4017
4009
|
}
|
|
4018
4010
|
export declare namespace CreateQueueRequest {
|
|
4019
4011
|
/**
|
|
@@ -4352,19 +4344,3 @@ export declare namespace ListJobsRequest {
|
|
|
4352
4344
|
*/
|
|
4353
4345
|
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
4354
4346
|
}
|
|
4355
|
-
export interface ListJobsResponse {
|
|
4356
|
-
/**
|
|
4357
|
-
* List of jobs
|
|
4358
|
-
*/
|
|
4359
|
-
Jobs?: Job[];
|
|
4360
|
-
/**
|
|
4361
|
-
* Use this string to request the next batch of jobs.
|
|
4362
|
-
*/
|
|
4363
|
-
NextToken?: string;
|
|
4364
|
-
}
|
|
4365
|
-
export declare namespace ListJobsResponse {
|
|
4366
|
-
/**
|
|
4367
|
-
* @internal
|
|
4368
|
-
*/
|
|
4369
|
-
const filterSensitiveLog: (obj: ListJobsResponse) => any;
|
|
4370
|
-
}
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
2
|
-
import { JobTemplate, JobTemplateListBy, JobTemplateSettings, Order, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
2
|
+
import { Job, JobTemplate, JobTemplateListBy, JobTemplateSettings, Order, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
export interface ListJobsResponse {
|
|
4
|
+
/**
|
|
5
|
+
* List of jobs
|
|
6
|
+
*/
|
|
7
|
+
Jobs?: Job[];
|
|
8
|
+
/**
|
|
9
|
+
* Use this string to request the next batch of jobs.
|
|
10
|
+
*/
|
|
11
|
+
NextToken?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare namespace ListJobsResponse {
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
const filterSensitiveLog: (obj: ListJobsResponse) => any;
|
|
18
|
+
}
|
|
3
19
|
export interface ListJobTemplatesRequest {
|
|
4
20
|
/**
|
|
5
21
|
* Optionally, specify a job template category to limit responses to only job templates from that category.
|
|
@@ -160,9 +176,7 @@ export interface ResourceTags {
|
|
|
160
176
|
/**
|
|
161
177
|
* The tags for the resource.
|
|
162
178
|
*/
|
|
163
|
-
Tags?:
|
|
164
|
-
[key: string]: string;
|
|
165
|
-
};
|
|
179
|
+
Tags?: Record<string, string>;
|
|
166
180
|
}
|
|
167
181
|
export declare namespace ResourceTags {
|
|
168
182
|
/**
|
|
@@ -214,9 +228,7 @@ export interface TagResourceRequest {
|
|
|
214
228
|
/**
|
|
215
229
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
216
230
|
*/
|
|
217
|
-
Tags:
|
|
218
|
-
[key: string]: string;
|
|
219
|
-
} | undefined;
|
|
231
|
+
Tags: Record<string, string> | undefined;
|
|
220
232
|
}
|
|
221
233
|
export declare namespace TagResourceRequest {
|
|
222
234
|
/**
|
|
@@ -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 { ListJobsRequest
|
|
4
|
+
import { ListJobsRequest } from "../models/models_1";
|
|
5
|
+
import { ListJobsResponse } from "../models/models_2";
|
|
5
6
|
export interface ListJobsCommandInput extends ListJobsRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {
|
|
@@ -1392,6 +1392,12 @@ export declare namespace AudioSelectorGroup {
|
|
|
1392
1392
|
|
|
1393
1393
|
const filterSensitiveLog: (obj: AudioSelectorGroup) => any;
|
|
1394
1394
|
}
|
|
1395
|
+
export declare enum AudioDurationCorrection {
|
|
1396
|
+
AUTO = "AUTO",
|
|
1397
|
+
DISABLED = "DISABLED",
|
|
1398
|
+
FRAME = "FRAME",
|
|
1399
|
+
TRACK = "TRACK"
|
|
1400
|
+
}
|
|
1395
1401
|
export declare enum AudioDefaultSelection {
|
|
1396
1402
|
DEFAULT = "DEFAULT",
|
|
1397
1403
|
NOT_DEFAULT = "NOT_DEFAULT"
|
|
@@ -1418,6 +1424,8 @@ export declare enum AudioSelectorType {
|
|
|
1418
1424
|
|
|
1419
1425
|
export interface AudioSelector {
|
|
1420
1426
|
|
|
1427
|
+
AudioDurationCorrection?: AudioDurationCorrection | string;
|
|
1428
|
+
|
|
1421
1429
|
CustomLanguageCode?: string;
|
|
1422
1430
|
|
|
1423
1431
|
DefaultSelection?: AudioDefaultSelection | string;
|
|
@@ -1831,17 +1839,11 @@ export declare namespace VideoSelector {
|
|
|
1831
1839
|
|
|
1832
1840
|
export interface Input {
|
|
1833
1841
|
|
|
1834
|
-
AudioSelectorGroups?:
|
|
1835
|
-
[key: string]: AudioSelectorGroup;
|
|
1836
|
-
};
|
|
1842
|
+
AudioSelectorGroups?: Record<string, AudioSelectorGroup>;
|
|
1837
1843
|
|
|
1838
|
-
AudioSelectors?:
|
|
1839
|
-
[key: string]: AudioSelector;
|
|
1840
|
-
};
|
|
1844
|
+
AudioSelectors?: Record<string, AudioSelector>;
|
|
1841
1845
|
|
|
1842
|
-
CaptionSelectors?:
|
|
1843
|
-
[key: string]: CaptionSelector;
|
|
1844
|
-
};
|
|
1846
|
+
CaptionSelectors?: Record<string, CaptionSelector>;
|
|
1845
1847
|
|
|
1846
1848
|
Crop?: Rectangle;
|
|
1847
1849
|
|
|
@@ -1888,17 +1890,11 @@ export declare namespace Input {
|
|
|
1888
1890
|
|
|
1889
1891
|
export interface InputTemplate {
|
|
1890
1892
|
|
|
1891
|
-
AudioSelectorGroups?:
|
|
1892
|
-
[key: string]: AudioSelectorGroup;
|
|
1893
|
-
};
|
|
1893
|
+
AudioSelectorGroups?: Record<string, AudioSelectorGroup>;
|
|
1894
1894
|
|
|
1895
|
-
AudioSelectors?:
|
|
1896
|
-
[key: string]: AudioSelector;
|
|
1897
|
-
};
|
|
1895
|
+
AudioSelectors?: Record<string, AudioSelector>;
|
|
1898
1896
|
|
|
1899
|
-
CaptionSelectors?:
|
|
1900
|
-
[key: string]: CaptionSelector;
|
|
1901
|
-
};
|
|
1897
|
+
CaptionSelectors?: Record<string, CaptionSelector>;
|
|
1902
1898
|
|
|
1903
1899
|
Crop?: Rectangle;
|
|
1904
1900
|
|
|
@@ -3069,7 +3065,3 @@ export declare enum M2tsForceTsVideoEbpOrder {
|
|
|
3069
3065
|
DEFAULT = "DEFAULT",
|
|
3070
3066
|
FORCE = "FORCE"
|
|
3071
3067
|
}
|
|
3072
|
-
export declare enum M2tsKlvMetadata {
|
|
3073
|
-
NONE = "NONE",
|
|
3074
|
-
PASSTHROUGH = "PASSTHROUGH"
|
|
3075
|
-
}
|
|
@@ -1,6 +1,10 @@
|
|
|
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, DvbNitSettings, DvbSdtSettings, DvbTdtSettings, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, M2tsEbpAudioInterval, M2tsEbpPlacement, M2tsEsRateInPes, M2tsForceTsVideoEbpOrder,
|
|
3
|
+
import { AccelerationSettings, AccelerationStatus, AudioDescription, AutomatedEncodingSettings, AvailBlanking, BillingTagsSource, CaptionDescription, CaptionDescriptionPreset, CmfcAudioDuration, CmfcSettings, ContainerType, DvbNitSettings, DvbSdtSettings, DvbTdtSettings, Endpoint, EsamSettings, ExtendedDataServices, F4vSettings, Hdr10Metadata, HopDestination, Id3Insertion, ImageInserter, Input, InputTemplate, JobMessages, JobPhase, KantarWatermarkSettings, M2tsAudioBufferModel, M2tsAudioDuration, M2tsBufferModel, M2tsDataPtsControl, M2tsEbpAudioInterval, M2tsEbpPlacement, M2tsEsRateInPes, M2tsForceTsVideoEbpOrder, MotionImageInserter, NielsenConfiguration, NielsenNonLinearWatermarkSettings, OutputGroupDetail, OutputGroupSettings, QueueTransition, Rectangle } from "./models_0";
|
|
4
|
+
export declare enum M2tsKlvMetadata {
|
|
5
|
+
NONE = "NONE",
|
|
6
|
+
PASSTHROUGH = "PASSTHROUGH"
|
|
7
|
+
}
|
|
4
8
|
export declare enum M2tsNielsenId3 {
|
|
5
9
|
INSERT = "INSERT",
|
|
6
10
|
NONE = "NONE"
|
|
@@ -2221,9 +2225,7 @@ export interface Job {
|
|
|
2221
2225
|
|
|
2222
2226
|
Timing?: Timing;
|
|
2223
2227
|
|
|
2224
|
-
UserMetadata?:
|
|
2225
|
-
[key: string]: string;
|
|
2226
|
-
};
|
|
2228
|
+
UserMetadata?: Record<string, string>;
|
|
2227
2229
|
}
|
|
2228
2230
|
export declare namespace Job {
|
|
2229
2231
|
|
|
@@ -2502,13 +2504,9 @@ export interface CreateJobRequest {
|
|
|
2502
2504
|
|
|
2503
2505
|
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2504
2506
|
|
|
2505
|
-
Tags?:
|
|
2506
|
-
[key: string]: string;
|
|
2507
|
-
};
|
|
2507
|
+
Tags?: Record<string, string>;
|
|
2508
2508
|
|
|
2509
|
-
UserMetadata?:
|
|
2510
|
-
[key: string]: string;
|
|
2511
|
-
};
|
|
2509
|
+
UserMetadata?: Record<string, string>;
|
|
2512
2510
|
}
|
|
2513
2511
|
export declare namespace CreateJobRequest {
|
|
2514
2512
|
|
|
@@ -2542,9 +2540,7 @@ export interface CreateJobTemplateRequest {
|
|
|
2542
2540
|
|
|
2543
2541
|
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2544
2542
|
|
|
2545
|
-
Tags?:
|
|
2546
|
-
[key: string]: string;
|
|
2547
|
-
};
|
|
2543
|
+
Tags?: Record<string, string>;
|
|
2548
2544
|
}
|
|
2549
2545
|
export declare namespace CreateJobTemplateRequest {
|
|
2550
2546
|
|
|
@@ -2568,9 +2564,7 @@ export interface CreatePresetRequest {
|
|
|
2568
2564
|
|
|
2569
2565
|
Settings: PresetSettings | undefined;
|
|
2570
2566
|
|
|
2571
|
-
Tags?:
|
|
2572
|
-
[key: string]: string;
|
|
2573
|
-
};
|
|
2567
|
+
Tags?: Record<string, string>;
|
|
2574
2568
|
}
|
|
2575
2569
|
export declare namespace CreatePresetRequest {
|
|
2576
2570
|
|
|
@@ -2609,9 +2603,7 @@ export interface CreateQueueRequest {
|
|
|
2609
2603
|
|
|
2610
2604
|
Status?: QueueStatus | string;
|
|
2611
2605
|
|
|
2612
|
-
Tags?:
|
|
2613
|
-
[key: string]: string;
|
|
2614
|
-
};
|
|
2606
|
+
Tags?: Record<string, string>;
|
|
2615
2607
|
}
|
|
2616
2608
|
export declare namespace CreateQueueRequest {
|
|
2617
2609
|
|
|
@@ -2840,13 +2832,3 @@ export declare namespace ListJobsRequest {
|
|
|
2840
2832
|
|
|
2841
2833
|
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
2842
2834
|
}
|
|
2843
|
-
export interface ListJobsResponse {
|
|
2844
|
-
|
|
2845
|
-
Jobs?: Job[];
|
|
2846
|
-
|
|
2847
|
-
NextToken?: string;
|
|
2848
|
-
}
|
|
2849
|
-
export declare namespace ListJobsResponse {
|
|
2850
|
-
|
|
2851
|
-
const filterSensitiveLog: (obj: ListJobsResponse) => any;
|
|
2852
|
-
}
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { AccelerationSettings, HopDestination } from "./models_0";
|
|
2
|
-
import { JobTemplate, JobTemplateListBy, JobTemplateSettings, Order, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
2
|
+
import { Job, JobTemplate, JobTemplateListBy, JobTemplateSettings, Order, Policy, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
export interface ListJobsResponse {
|
|
4
|
+
|
|
5
|
+
Jobs?: Job[];
|
|
6
|
+
|
|
7
|
+
NextToken?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare namespace ListJobsResponse {
|
|
10
|
+
|
|
11
|
+
const filterSensitiveLog: (obj: ListJobsResponse) => any;
|
|
12
|
+
}
|
|
3
13
|
export interface ListJobTemplatesRequest {
|
|
4
14
|
|
|
5
15
|
Category?: string;
|
|
@@ -98,9 +108,7 @@ export interface ResourceTags {
|
|
|
98
108
|
|
|
99
109
|
Arn?: string;
|
|
100
110
|
|
|
101
|
-
Tags?:
|
|
102
|
-
[key: string]: string;
|
|
103
|
-
};
|
|
111
|
+
Tags?: Record<string, string>;
|
|
104
112
|
}
|
|
105
113
|
export declare namespace ResourceTags {
|
|
106
114
|
|
|
@@ -134,9 +142,7 @@ export interface TagResourceRequest {
|
|
|
134
142
|
|
|
135
143
|
Arn: string | undefined;
|
|
136
144
|
|
|
137
|
-
Tags:
|
|
138
|
-
[key: string]: string;
|
|
139
|
-
} | undefined;
|
|
145
|
+
Tags: Record<string, string> | undefined;
|
|
140
146
|
}
|
|
141
147
|
export declare namespace TagResourceRequest {
|
|
142
148
|
|
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.110.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,36 +18,37 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.110.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.110.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@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.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1",
|
|
52
53
|
"uuid": "^8.3.2"
|
|
53
54
|
},
|