@aws-sdk/client-mediaconvert 3.873.0 → 3.876.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.
Files changed (38) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +77 -5
  3. package/dist-es/MediaConvert.js +2 -0
  4. package/dist-es/commands/CreateResourceShareCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +8 -8
  7. package/dist-es/models/models_1.js +9 -0
  8. package/dist-es/models/models_2.js +5 -0
  9. package/dist-es/protocols/Aws_restJson1.js +32 -0
  10. package/dist-types/MediaConvert.d.ts +7 -0
  11. package/dist-types/MediaConvertClient.d.ts +3 -2
  12. package/dist-types/commands/CreateJobCommand.d.ts +14 -2
  13. package/dist-types/commands/CreateJobTemplateCommand.d.ts +12 -2
  14. package/dist-types/commands/CreatePresetCommand.d.ts +2 -0
  15. package/dist-types/commands/CreateResourceShareCommand.d.ts +89 -0
  16. package/dist-types/commands/GetJobCommand.d.ts +8 -1
  17. package/dist-types/commands/GetJobTemplateCommand.d.ts +6 -1
  18. package/dist-types/commands/GetPresetCommand.d.ts +1 -0
  19. package/dist-types/commands/ListJobTemplatesCommand.d.ts +6 -1
  20. package/dist-types/commands/ListJobsCommand.d.ts +8 -1
  21. package/dist-types/commands/ListPresetsCommand.d.ts +1 -0
  22. package/dist-types/commands/SearchJobsCommand.d.ts +8 -1
  23. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +12 -2
  24. package/dist-types/commands/UpdatePresetCommand.d.ts +2 -0
  25. package/dist-types/commands/index.d.ts +1 -0
  26. package/dist-types/models/models_0.d.ts +43 -28
  27. package/dist-types/models/models_1.d.ts +27 -39
  28. package/dist-types/models/models_2.d.ts +82 -2
  29. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  30. package/dist-types/ts3.4/MediaConvert.d.ts +17 -0
  31. package/dist-types/ts3.4/MediaConvertClient.d.ts +6 -0
  32. package/dist-types/ts3.4/commands/CreateResourceShareCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +15 -12
  35. package/dist-types/ts3.4/models/models_1.d.ts +13 -12
  36. package/dist-types/ts3.4/models/models_2.d.ts +24 -2
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  38. package/package.json +6 -6
@@ -0,0 +1,89 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
+ import { CreateResourceShareRequest, CreateResourceShareResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateResourceShareCommand}.
14
+ */
15
+ export interface CreateResourceShareCommandInput extends CreateResourceShareRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateResourceShareCommand}.
21
+ */
22
+ export interface CreateResourceShareCommandOutput extends CreateResourceShareResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateResourceShareCommand_base: {
25
+ new (input: CreateResourceShareCommandInput): import("@smithy/smithy-client").CommandImpl<CreateResourceShareCommandInput, CreateResourceShareCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateResourceShareCommandInput): import("@smithy/smithy-client").CommandImpl<CreateResourceShareCommandInput, CreateResourceShareCommandOutput, MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * Create a new resource share request for MediaConvert resources with AWS Support.
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MediaConvertClient, CreateResourceShareCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
35
+ * // const { MediaConvertClient, CreateResourceShareCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
36
+ * const client = new MediaConvertClient(config);
37
+ * const input = { // CreateResourceShareRequest
38
+ * JobId: "STRING_VALUE", // required
39
+ * SupportCaseId: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new CreateResourceShareCommand(input);
42
+ * const response = await client.send(command);
43
+ * // {};
44
+ *
45
+ * ```
46
+ *
47
+ * @param CreateResourceShareCommandInput - {@link CreateResourceShareCommandInput}
48
+ * @returns {@link CreateResourceShareCommandOutput}
49
+ * @see {@link CreateResourceShareCommandInput} for command's `input` shape.
50
+ * @see {@link CreateResourceShareCommandOutput} for command's `response` shape.
51
+ * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
52
+ *
53
+ * @throws {@link BadRequestException} (client fault)
54
+ * The service can't process your request because of a problem in the request. Please check your request form and syntax.
55
+ *
56
+ * @throws {@link ConflictException} (client fault)
57
+ * The service couldn't complete your request because there is a conflict with the current state of the resource.
58
+ *
59
+ * @throws {@link ForbiddenException} (client fault)
60
+ * You don't have permissions for this action with the credentials you sent.
61
+ *
62
+ * @throws {@link InternalServerErrorException} (server fault)
63
+ * The service encountered an unexpected condition and can't fulfill your request.
64
+ *
65
+ * @throws {@link NotFoundException} (client fault)
66
+ * The resource you requested doesn't exist.
67
+ *
68
+ * @throws {@link TooManyRequestsException} (client fault)
69
+ * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
70
+ *
71
+ * @throws {@link MediaConvertServiceException}
72
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
73
+ *
74
+ *
75
+ * @public
76
+ */
77
+ export declare class CreateResourceShareCommand extends CreateResourceShareCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: CreateResourceShareRequest;
82
+ output: {};
83
+ };
84
+ sdk: {
85
+ input: CreateResourceShareCommandInput;
86
+ output: CreateResourceShareCommandOutput;
87
+ };
88
+ };
89
+ }
@@ -64,6 +64,7 @@ declare const GetJobCommand_base: {
64
64
  * // JobEngineVersionUsed: "STRING_VALUE",
65
65
  * // JobPercentComplete: Number("int"),
66
66
  * // JobTemplate: "STRING_VALUE",
67
+ * // LastShareDetails: "STRING_VALUE",
67
68
  * // Messages: { // JobMessages
68
69
  * // Info: [ // __listOf__string
69
70
  * // "STRING_VALUE",
@@ -374,6 +375,10 @@ declare const GetJobCommand_base: {
374
375
  * // ProgramNumber: Number("int"),
375
376
  * // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
376
377
  * // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
378
+ * // SelectorType: "AUTO" || "STREAM",
379
+ * // Streams: [
380
+ * // Number("int"),
381
+ * // ],
377
382
  * // },
378
383
  * // },
379
384
  * // ],
@@ -867,6 +872,7 @@ declare const GetJobCommand_base: {
867
872
  * // SampleRate: Number("int"),
868
873
  * // },
869
874
  * // Mp2Settings: { // Mp2Settings
875
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
870
876
  * // Bitrate: Number("int"),
871
877
  * // Channels: Number("int"),
872
878
  * // SampleRate: Number("int"),
@@ -1176,7 +1182,7 @@ declare const GetJobCommand_base: {
1176
1182
  * // AudioRenditionSets: "STRING_VALUE",
1177
1183
  * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
1178
1184
  * // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
1179
- * // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
1185
+ * // IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
1180
1186
  * // SegmentModifier: "STRING_VALUE",
1181
1187
  * // },
1182
1188
  * // },
@@ -1642,6 +1648,7 @@ declare const GetJobCommand_base: {
1642
1648
  * // ],
1643
1649
  * // },
1644
1650
  * // },
1651
+ * // ShareStatus: "NOT_SHARED" || "INITIATED" || "SHARED",
1645
1652
  * // SimulateReservedQueue: "DISABLED" || "ENABLED",
1646
1653
  * // Status: "SUBMITTED" || "PROGRESSING" || "COMPLETE" || "CANCELED" || "ERROR",
1647
1654
  * // StatusUpdateInterval: "SECONDS_10" || "SECONDS_12" || "SECONDS_15" || "SECONDS_20" || "SECONDS_30" || "SECONDS_60" || "SECONDS_120" || "SECONDS_180" || "SECONDS_240" || "SECONDS_300" || "SECONDS_360" || "SECONDS_420" || "SECONDS_480" || "SECONDS_540" || "SECONDS_600",
@@ -314,6 +314,10 @@ declare const GetJobTemplateCommand_base: {
314
314
  * // ProgramNumber: Number("int"),
315
315
  * // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
316
316
  * // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
317
+ * // SelectorType: "AUTO" || "STREAM",
318
+ * // Streams: [
319
+ * // Number("int"),
320
+ * // ],
317
321
  * // },
318
322
  * // },
319
323
  * // ],
@@ -807,6 +811,7 @@ declare const GetJobTemplateCommand_base: {
807
811
  * // SampleRate: Number("int"),
808
812
  * // },
809
813
  * // Mp2Settings: { // Mp2Settings
814
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
810
815
  * // Bitrate: Number("int"),
811
816
  * // Channels: Number("int"),
812
817
  * // SampleRate: Number("int"),
@@ -1116,7 +1121,7 @@ declare const GetJobTemplateCommand_base: {
1116
1121
  * // AudioRenditionSets: "STRING_VALUE",
1117
1122
  * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
1118
1123
  * // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
1119
- * // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
1124
+ * // IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
1120
1125
  * // SegmentModifier: "STRING_VALUE",
1121
1126
  * // },
1122
1127
  * // },
@@ -149,6 +149,7 @@ declare const GetPresetCommand_base: {
149
149
  * // SampleRate: Number("int"),
150
150
  * // },
151
151
  * // Mp2Settings: { // Mp2Settings
152
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
152
153
  * // Bitrate: Number("int"),
153
154
  * // Channels: Number("int"),
154
155
  * // SampleRate: Number("int"),
@@ -319,6 +319,10 @@ declare const ListJobTemplatesCommand_base: {
319
319
  * // ProgramNumber: Number("int"),
320
320
  * // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
321
321
  * // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
322
+ * // SelectorType: "AUTO" || "STREAM",
323
+ * // Streams: [
324
+ * // Number("int"),
325
+ * // ],
322
326
  * // },
323
327
  * // },
324
328
  * // ],
@@ -812,6 +816,7 @@ declare const ListJobTemplatesCommand_base: {
812
816
  * // SampleRate: Number("int"),
813
817
  * // },
814
818
  * // Mp2Settings: { // Mp2Settings
819
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
815
820
  * // Bitrate: Number("int"),
816
821
  * // Channels: Number("int"),
817
822
  * // SampleRate: Number("int"),
@@ -1121,7 +1126,7 @@ declare const ListJobTemplatesCommand_base: {
1121
1126
  * // AudioRenditionSets: "STRING_VALUE",
1122
1127
  * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
1123
1128
  * // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
1124
- * // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
1129
+ * // IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
1125
1130
  * // SegmentModifier: "STRING_VALUE",
1126
1131
  * // },
1127
1132
  * // },
@@ -69,6 +69,7 @@ declare const ListJobsCommand_base: {
69
69
  * // JobEngineVersionUsed: "STRING_VALUE",
70
70
  * // JobPercentComplete: Number("int"),
71
71
  * // JobTemplate: "STRING_VALUE",
72
+ * // LastShareDetails: "STRING_VALUE",
72
73
  * // Messages: { // JobMessages
73
74
  * // Info: [ // __listOf__string
74
75
  * // "STRING_VALUE",
@@ -379,6 +380,10 @@ declare const ListJobsCommand_base: {
379
380
  * // ProgramNumber: Number("int"),
380
381
  * // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
381
382
  * // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
383
+ * // SelectorType: "AUTO" || "STREAM",
384
+ * // Streams: [
385
+ * // Number("int"),
386
+ * // ],
382
387
  * // },
383
388
  * // },
384
389
  * // ],
@@ -872,6 +877,7 @@ declare const ListJobsCommand_base: {
872
877
  * // SampleRate: Number("int"),
873
878
  * // },
874
879
  * // Mp2Settings: { // Mp2Settings
880
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
875
881
  * // Bitrate: Number("int"),
876
882
  * // Channels: Number("int"),
877
883
  * // SampleRate: Number("int"),
@@ -1181,7 +1187,7 @@ declare const ListJobsCommand_base: {
1181
1187
  * // AudioRenditionSets: "STRING_VALUE",
1182
1188
  * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
1183
1189
  * // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
1184
- * // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
1190
+ * // IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
1185
1191
  * // SegmentModifier: "STRING_VALUE",
1186
1192
  * // },
1187
1193
  * // },
@@ -1647,6 +1653,7 @@ declare const ListJobsCommand_base: {
1647
1653
  * // ],
1648
1654
  * // },
1649
1655
  * // },
1656
+ * // ShareStatus: "NOT_SHARED" || "INITIATED" || "SHARED",
1650
1657
  * // SimulateReservedQueue: "DISABLED" || "ENABLED",
1651
1658
  * // Status: "SUBMITTED" || "PROGRESSING" || "COMPLETE" || "CANCELED" || "ERROR",
1652
1659
  * // StatusUpdateInterval: "SECONDS_10" || "SECONDS_12" || "SECONDS_15" || "SECONDS_20" || "SECONDS_30" || "SECONDS_60" || "SECONDS_120" || "SECONDS_180" || "SECONDS_240" || "SECONDS_300" || "SECONDS_360" || "SECONDS_420" || "SECONDS_480" || "SECONDS_540" || "SECONDS_600",
@@ -155,6 +155,7 @@ declare const ListPresetsCommand_base: {
155
155
  * // SampleRate: Number("int"),
156
156
  * // },
157
157
  * // Mp2Settings: { // Mp2Settings
158
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
158
159
  * // Bitrate: Number("int"),
159
160
  * // Channels: Number("int"),
160
161
  * // SampleRate: Number("int"),
@@ -70,6 +70,7 @@ declare const SearchJobsCommand_base: {
70
70
  * // JobEngineVersionUsed: "STRING_VALUE",
71
71
  * // JobPercentComplete: Number("int"),
72
72
  * // JobTemplate: "STRING_VALUE",
73
+ * // LastShareDetails: "STRING_VALUE",
73
74
  * // Messages: { // JobMessages
74
75
  * // Info: [ // __listOf__string
75
76
  * // "STRING_VALUE",
@@ -380,6 +381,10 @@ declare const SearchJobsCommand_base: {
380
381
  * // ProgramNumber: Number("int"),
381
382
  * // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
382
383
  * // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
384
+ * // SelectorType: "AUTO" || "STREAM",
385
+ * // Streams: [
386
+ * // Number("int"),
387
+ * // ],
383
388
  * // },
384
389
  * // },
385
390
  * // ],
@@ -873,6 +878,7 @@ declare const SearchJobsCommand_base: {
873
878
  * // SampleRate: Number("int"),
874
879
  * // },
875
880
  * // Mp2Settings: { // Mp2Settings
881
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
876
882
  * // Bitrate: Number("int"),
877
883
  * // Channels: Number("int"),
878
884
  * // SampleRate: Number("int"),
@@ -1182,7 +1188,7 @@ declare const SearchJobsCommand_base: {
1182
1188
  * // AudioRenditionSets: "STRING_VALUE",
1183
1189
  * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
1184
1190
  * // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
1185
- * // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
1191
+ * // IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
1186
1192
  * // SegmentModifier: "STRING_VALUE",
1187
1193
  * // },
1188
1194
  * // },
@@ -1648,6 +1654,7 @@ declare const SearchJobsCommand_base: {
1648
1654
  * // ],
1649
1655
  * // },
1650
1656
  * // },
1657
+ * // ShareStatus: "NOT_SHARED" || "INITIATED" || "SHARED",
1651
1658
  * // SimulateReservedQueue: "DISABLED" || "ENABLED",
1652
1659
  * // Status: "SUBMITTED" || "PROGRESSING" || "COMPLETE" || "CANCELED" || "ERROR",
1653
1660
  * // StatusUpdateInterval: "SECONDS_10" || "SECONDS_12" || "SECONDS_15" || "SECONDS_20" || "SECONDS_30" || "SECONDS_60" || "SECONDS_120" || "SECONDS_180" || "SECONDS_240" || "SECONDS_300" || "SECONDS_360" || "SECONDS_420" || "SECONDS_480" || "SECONDS_540" || "SECONDS_600",
@@ -305,6 +305,10 @@ declare const UpdateJobTemplateCommand_base: {
305
305
  * ProgramNumber: Number("int"),
306
306
  * Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
307
307
  * SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
308
+ * SelectorType: "AUTO" || "STREAM",
309
+ * Streams: [
310
+ * Number("int"),
311
+ * ],
308
312
  * },
309
313
  * },
310
314
  * ],
@@ -798,6 +802,7 @@ declare const UpdateJobTemplateCommand_base: {
798
802
  * SampleRate: Number("int"),
799
803
  * },
800
804
  * Mp2Settings: { // Mp2Settings
805
+ * AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
801
806
  * Bitrate: Number("int"),
802
807
  * Channels: Number("int"),
803
808
  * SampleRate: Number("int"),
@@ -1107,7 +1112,7 @@ declare const UpdateJobTemplateCommand_base: {
1107
1112
  * AudioRenditionSets: "STRING_VALUE",
1108
1113
  * AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
1109
1114
  * DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
1110
- * IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
1115
+ * IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
1111
1116
  * SegmentModifier: "STRING_VALUE",
1112
1117
  * },
1113
1118
  * },
@@ -1852,6 +1857,10 @@ declare const UpdateJobTemplateCommand_base: {
1852
1857
  * // ProgramNumber: Number("int"),
1853
1858
  * // Rotate: "DEGREE_0" || "DEGREES_90" || "DEGREES_180" || "DEGREES_270" || "AUTO",
1854
1859
  * // SampleRange: "FOLLOW" || "FULL_RANGE" || "LIMITED_RANGE",
1860
+ * // SelectorType: "AUTO" || "STREAM",
1861
+ * // Streams: [
1862
+ * // Number("int"),
1863
+ * // ],
1855
1864
  * // },
1856
1865
  * // },
1857
1866
  * // ],
@@ -2345,6 +2354,7 @@ declare const UpdateJobTemplateCommand_base: {
2345
2354
  * // SampleRate: Number("int"),
2346
2355
  * // },
2347
2356
  * // Mp2Settings: { // Mp2Settings
2357
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
2348
2358
  * // Bitrate: Number("int"),
2349
2359
  * // Channels: Number("int"),
2350
2360
  * // SampleRate: Number("int"),
@@ -2654,7 +2664,7 @@ declare const UpdateJobTemplateCommand_base: {
2654
2664
  * // AudioRenditionSets: "STRING_VALUE",
2655
2665
  * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
2656
2666
  * // DescriptiveVideoServiceFlag: "DONT_FLAG" || "FLAG",
2657
- * // IFrameOnlyManifest: "INCLUDE" || "EXCLUDE",
2667
+ * // IFrameOnlyManifest: "INCLUDE" || "INCLUDE_AS_TS" || "EXCLUDE",
2658
2668
  * // SegmentModifier: "STRING_VALUE",
2659
2669
  * // },
2660
2670
  * // },
@@ -140,6 +140,7 @@ declare const UpdatePresetCommand_base: {
140
140
  * SampleRate: Number("int"),
141
141
  * },
142
142
  * Mp2Settings: { // Mp2Settings
143
+ * AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
143
144
  * Bitrate: Number("int"),
144
145
  * Channels: Number("int"),
145
146
  * SampleRate: Number("int"),
@@ -997,6 +998,7 @@ declare const UpdatePresetCommand_base: {
997
998
  * // SampleRate: Number("int"),
998
999
  * // },
999
1000
  * // Mp2Settings: { // Mp2Settings
1001
+ * // AudioDescriptionMix: "BROADCASTER_MIXED_AD" || "NONE",
1000
1002
  * // Bitrate: Number("int"),
1001
1003
  * // Channels: Number("int"),
1002
1004
  * // SampleRate: Number("int"),
@@ -4,6 +4,7 @@ export * from "./CreateJobCommand";
4
4
  export * from "./CreateJobTemplateCommand";
5
5
  export * from "./CreatePresetCommand";
6
6
  export * from "./CreateQueueCommand";
7
+ export * from "./CreateResourceShareCommand";
7
8
  export * from "./DeleteJobTemplateCommand";
8
9
  export * from "./DeletePolicyCommand";
9
10
  export * from "./DeletePresetCommand";
@@ -307,7 +307,7 @@ export interface AacSettings {
307
307
  */
308
308
  Bitrate?: number | undefined;
309
309
  /**
310
- * Specify the AAC profile. For the widest player compatibility and where higher bitrates are acceptable: Keep the default profile, LC (AAC-LC) For improved audio performance at lower bitrates: Choose HEV1 or HEV2. HEV1 (AAC-HE v1) adds spectral band replication to improve speech audio at low bitrates. HEV2 (AAC-HE v2) adds parametric stereo, which optimizes for encoding stereo audio at very low bitrates.
310
+ * Specify the AAC profile. For the widest player compatibility and where higher bitrates are acceptable: Keep the default profile, LC (AAC-LC) For improved audio performance at lower bitrates: Choose HEV1 or HEV2. HEV1 (AAC-HE v1) adds spectral band replication to improve speech audio at low bitrates. HEV2 (AAC-HE v2) adds parametric stereo, which optimizes for encoding stereo audio at very low bitrates. For improved audio quality at lower bitrates, adaptive audio bitrate switching, and loudness control: Choose XHE.
311
311
  * @public
312
312
  */
313
313
  CodecProfile?: AacCodecProfile | undefined;
@@ -1098,11 +1098,28 @@ export interface FlacSettings {
1098
1098
  */
1099
1099
  SampleRate?: number | undefined;
1100
1100
  }
1101
+ /**
1102
+ * @public
1103
+ * @enum
1104
+ */
1105
+ export declare const Mp2AudioDescriptionMix: {
1106
+ readonly BROADCASTER_MIXED_AD: "BROADCASTER_MIXED_AD";
1107
+ readonly NONE: "NONE";
1108
+ };
1109
+ /**
1110
+ * @public
1111
+ */
1112
+ export type Mp2AudioDescriptionMix = (typeof Mp2AudioDescriptionMix)[keyof typeof Mp2AudioDescriptionMix];
1101
1113
  /**
1102
1114
  * Required when you set Codec to the value MP2.
1103
1115
  * @public
1104
1116
  */
1105
1117
  export interface Mp2Settings {
1118
+ /**
1119
+ * Choose BROADCASTER_MIXED_AD when the input contains pre-mixed main audio + audio description (AD) as a stereo pair. The value for AudioType will be set to 3, which signals to downstream systems that this stream contains "broadcaster mixed AD". Note that the input received by the encoder must contain pre-mixed audio; the encoder does not perform the mixing. When you choose BROADCASTER_MIXED_AD, the encoder ignores any values you provide in AudioType and FollowInputAudioType. Choose NONE when the input does not contain pre-mixed audio + audio description (AD). In this case, the encoder will use any values you provide for AudioType and FollowInputAudioType.
1120
+ * @public
1121
+ */
1122
+ AudioDescriptionMix?: Mp2AudioDescriptionMix | undefined;
1106
1123
  /**
1107
1124
  * Specify the average bitrate in bits per second.
1108
1125
  * @public
@@ -3720,7 +3737,7 @@ export type TamsGapHandling = (typeof TamsGapHandling)[keyof typeof TamsGapHandl
3720
3737
  */
3721
3738
  export interface InputTamsSettings {
3722
3739
  /**
3723
- * Specify the ARN (Amazon Resource Name) of an EventBridge Connection to authenticate with your TAMS server. The EventBridge Connection stores your authentication credentials securely. MediaConvert assumes your job's IAM role to access this connection, so ensure the role has the events:RetrieveConnectionCredentials, secretsmanager:DescribeSecret, and secretsmanager:GetSecretValue permissions. Format: arn:aws:events:region:account-id:connection/connection-name/unique-id
3740
+ * Specify the ARN (Amazon Resource Name) of an EventBridge Connection to authenticate with your TAMS server. The EventBridge Connection stores your authentication credentials securely. MediaConvert assumes your job's IAM role to access this connection, so ensure the role has the events:RetrieveConnectionCredentials, secretsmanager:DescribeSecret, and secretsmanager:GetSecretValue permissions. Format: arn:aws:events:region:account-id:connection/connection-name/unique-id This setting is required when you include TAMS settings in your job.
3724
3741
  * @public
3725
3742
  */
3726
3743
  AuthConnectionArn?: string | undefined;
@@ -3730,12 +3747,12 @@ export interface InputTamsSettings {
3730
3747
  */
3731
3748
  GapHandling?: TamsGapHandling | undefined;
3732
3749
  /**
3733
- * Specify the unique identifier for the media source in your TAMS server. MediaConvert uses this source ID to locate the appropriate flows containing the media segments you want to process. The source ID corresponds to a specific media source registered in your TAMS server. This source must be of type urn:x-nmos:format:multi, and can can reference multiple flows for audio, video, or combined audio/video content. MediaConvert automatically selects the highest quality flows available for your job. This setting is required when include TAMS settings in your job.
3750
+ * Specify the unique identifier for the media source in your TAMS server. MediaConvert uses this source ID to locate the appropriate flows containing the media segments you want to process. The source ID corresponds to a specific media source registered in your TAMS server. This source must be of type urn:x-nmos:format:multi, and can can reference multiple flows for audio, video, or combined audio/video content. MediaConvert automatically selects the highest quality flows available for your job. This setting is required when you include TAMS settings in your job.
3734
3751
  * @public
3735
3752
  */
3736
3753
  SourceId?: string | undefined;
3737
3754
  /**
3738
- * Specify the time range of media segments to retrieve from your TAMS server. MediaConvert fetches only the segments that fall within this range. Use the format specified by your TAMS server implementation. This must be two timestamp values with the format \{sign?\}\{seconds\}:\{nanoseconds\}, separated by an underscore, surrounded by either parentheses or square brackets. Example: [15:0_35:0) This setting is required when include TAMS settings in your job.
3755
+ * Specify the time range of media segments to retrieve from your TAMS server. MediaConvert fetches only the segments that fall within this range. Use the format specified by your TAMS server implementation. This must be two timestamp values with the format \{sign?\}\{seconds\}:\{nanoseconds\}, separated by an underscore, surrounded by either parentheses or square brackets. Example: [15:0_35:0) This setting is required when you include TAMS settings in your job.
3739
3756
  * @public
3740
3757
  */
3741
3758
  Timerange?: string | undefined;
@@ -4119,6 +4136,18 @@ export declare const InputSampleRange: {
4119
4136
  * @public
4120
4137
  */
4121
4138
  export type InputSampleRange = (typeof InputSampleRange)[keyof typeof InputSampleRange];
4139
+ /**
4140
+ * @public
4141
+ * @enum
4142
+ */
4143
+ export declare const VideoSelectorType: {
4144
+ readonly AUTO: "AUTO";
4145
+ readonly STREAM: "STREAM";
4146
+ };
4147
+ /**
4148
+ * @public
4149
+ */
4150
+ export type VideoSelectorType = (typeof VideoSelectorType)[keyof typeof VideoSelectorType];
4122
4151
  /**
4123
4152
  * Input video selectors contain the video settings for the input. Each of your inputs can have up to one video selector.
4124
4153
  * @public
@@ -4184,6 +4213,16 @@ export interface VideoSelector {
4184
4213
  * @public
4185
4214
  */
4186
4215
  SampleRange?: InputSampleRange | undefined;
4216
+ /**
4217
+ * Choose the video selector type for your HLS input. Use to specify which video rendition MediaConvert uses from your HLS input. To have MediaConvert automatically use the highest bitrate rendition from your HLS input: Keep the default value, Auto. To manually specify a rendition: Choose Stream. Then enter the unique stream number in the Streams array, starting at 1, corresponding to the stream order in the manifest.
4218
+ * @public
4219
+ */
4220
+ SelectorType?: VideoSelectorType | undefined;
4221
+ /**
4222
+ * Specify a stream for MediaConvert to use from your HLS input. Enter an integer corresponding to the stream order in your HLS manifest.
4223
+ * @public
4224
+ */
4225
+ Streams?: number[] | undefined;
4187
4226
  }
4188
4227
  /**
4189
4228
  * Use inputs to define the source files used in your transcoding job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/specify-input-settings.html. You can use multiple video inputs to do input stitching. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/assembling-multiple-inputs-and-input-clips.html
@@ -6369,27 +6408,3 @@ export declare const HlsSegmentLengthControl: {
6369
6408
  * @public
6370
6409
  */
6371
6410
  export type HlsSegmentLengthControl = (typeof HlsSegmentLengthControl)[keyof typeof HlsSegmentLengthControl];
6372
- /**
6373
- * @public
6374
- * @enum
6375
- */
6376
- export declare const HlsStreamInfResolution: {
6377
- readonly EXCLUDE: "EXCLUDE";
6378
- readonly INCLUDE: "INCLUDE";
6379
- };
6380
- /**
6381
- * @public
6382
- */
6383
- export type HlsStreamInfResolution = (typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
6384
- /**
6385
- * @public
6386
- * @enum
6387
- */
6388
- export declare const HlsTargetDurationCompatibilityMode: {
6389
- readonly LEGACY: "LEGACY";
6390
- readonly SPEC_COMPLIANT: "SPEC_COMPLIANT";
6391
- };
6392
- /**
6393
- * @public
6394
- */
6395
- export type HlsTargetDurationCompatibilityMode = (typeof HlsTargetDurationCompatibilityMode)[keyof typeof HlsTargetDurationCompatibilityMode];
@@ -1,4 +1,28 @@
1
- import { AudioDescription, AutomatedEncodingSettings, CaptionDescription, CmafGroupSettings, DashIsoGroupSettings, DestinationSettings, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsAdditionalManifest, HlsAdMarkers, HlsAudioOnlyHeader, HlsCaptionLanguageMapping, HlsCaptionLanguageSetting, HlsCaptionSegmentLengthControl, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsEncryptionSettings, HlsImageBasedTrickPlay, HlsImageBasedTrickPlaySettings, HlsManifestCompression, HlsManifestDurationFormat, HlsOutputSelection, HlsProgramDateTime, HlsProgressiveWriteHlsManifest, HlsSegmentControl, HlsSegmentLengthControl, HlsStreamInfResolution, HlsTargetDurationCompatibilityMode, Id3Insertion, ImageInserter, Rectangle, SpekeKeyProvider } from "./models_0";
1
+ import { AudioDescription, AutomatedEncodingSettings, CaptionDescription, CmafGroupSettings, DashIsoGroupSettings, DestinationSettings, FileGroupSettings, FrameMetricType, Hdr10Metadata, HlsAdditionalManifest, HlsAdMarkers, HlsAudioOnlyHeader, HlsCaptionLanguageMapping, HlsCaptionLanguageSetting, HlsCaptionSegmentLengthControl, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsEncryptionSettings, HlsImageBasedTrickPlay, HlsImageBasedTrickPlaySettings, HlsManifestCompression, HlsManifestDurationFormat, HlsOutputSelection, HlsProgramDateTime, HlsProgressiveWriteHlsManifest, HlsSegmentControl, HlsSegmentLengthControl, ImageInserter, Rectangle, SpekeKeyProvider } from "./models_0";
2
+ /**
3
+ * @public
4
+ * @enum
5
+ */
6
+ export declare const HlsStreamInfResolution: {
7
+ readonly EXCLUDE: "EXCLUDE";
8
+ readonly INCLUDE: "INCLUDE";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type HlsStreamInfResolution = (typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const HlsTargetDurationCompatibilityMode: {
19
+ readonly LEGACY: "LEGACY";
20
+ readonly SPEC_COMPLIANT: "SPEC_COMPLIANT";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type HlsTargetDurationCompatibilityMode = (typeof HlsTargetDurationCompatibilityMode)[keyof typeof HlsTargetDurationCompatibilityMode];
2
26
  /**
3
27
  * @public
4
28
  * @enum
@@ -1826,6 +1850,7 @@ export type HlsDescriptiveVideoServiceFlag = (typeof HlsDescriptiveVideoServiceF
1826
1850
  export declare const HlsIFrameOnlyManifest: {
1827
1851
  readonly EXCLUDE: "EXCLUDE";
1828
1852
  readonly INCLUDE: "INCLUDE";
1853
+ readonly INCLUDE_AS_TS: "INCLUDE_AS_TS";
1829
1854
  };
1830
1855
  /**
1831
1856
  * @public
@@ -1862,7 +1887,7 @@ export interface HlsSettings {
1862
1887
  */
1863
1888
  DescriptiveVideoServiceFlag?: HlsDescriptiveVideoServiceFlag | undefined;
1864
1889
  /**
1865
- * Choose Include to have MediaConvert generate a child manifest that lists only the I-frames for this rendition, in addition to your regular manifest for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only child manifest and the regular child manifest to the parent manifest. When you don't need the I-frame only child manifest, keep the default value Exclude.
1890
+ * Generate a variant manifest that lists only the I-frames for this rendition. You might use this manifest as part of a workflow that creates preview functions for your video. MediaConvert adds both the I-frame only variant manifest and the regular variant manifest to the multivariant manifest. To have MediaConvert write a variant manifest that references I-frames from your output content using EXT-X-BYTERANGE tags: Choose Include. To have MediaConvert output I-frames as single frame TS files and a corresponding variant manifest that references them: Choose Include as TS. When you don't need the I-frame only variant manifest: Keep the default value, Exclude.
1866
1891
  * @public
1867
1892
  */
1868
1893
  IFrameOnlyManifest?: HlsIFrameOnlyManifest | undefined;
@@ -6184,40 +6209,3 @@ export declare const TimecodeSource: {
6184
6209
  * @public
6185
6210
  */
6186
6211
  export type TimecodeSource = (typeof TimecodeSource)[keyof typeof TimecodeSource];
6187
- /**
6188
- * These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.
6189
- * @public
6190
- */
6191
- export interface TimecodeConfig {
6192
- /**
6193
- * If you use an editing platform that relies on an anchor timecode, use Anchor Timecode to specify a timecode that will match the input video frame to the output video frame. Use 24-hour format with frame number, (HH:MM:SS:FF) or (HH:MM:SS;FF). This setting ignores frame rate conversion. System behavior for Anchor Timecode varies depending on your setting for Source. * If Source is set to Specified Start, the first input frame is the specified value in Start Timecode. Anchor Timecode and Start Timecode are used calculate output timecode. * If Source is set to Start at 0 the first frame is 00:00:00:00. * If Source is set to Embedded, the first frame is the timecode value on the first input frame of the input.
6194
- * @public
6195
- */
6196
- Anchor?: string | undefined;
6197
- /**
6198
- * Use Source to set how timecodes are handled within this job. To make sure that your video, audio, captions, and markers are synchronized and that time-based features, such as image inserter, work correctly, choose the Timecode source option that matches your assets. All timecodes are in a 24-hour format with frame number (HH:MM:SS:FF). * Embedded - Use the timecode that is in the input video. If no embedded timecode is in the source, the service will use Start at 0 instead. * Start at 0 - Set the timecode of the initial frame to 00:00:00:00. * Specified Start - Set the timecode of the initial frame to a value other than zero. You use Start timecode to provide this value.
6199
- * @public
6200
- */
6201
- Source?: TimecodeSource | undefined;
6202
- /**
6203
- * Only use when you set Source to Specified start. Use Start timecode to specify the timecode for the initial frame. Use 24-hour format with frame number, (HH:MM:SS:FF) or (HH:MM:SS;FF).
6204
- * @public
6205
- */
6206
- Start?: string | undefined;
6207
- /**
6208
- * Only applies to outputs that support program-date-time stamp. Use Timestamp offset to overwrite the timecode date without affecting the time and frame number. Provide the new date as a string in the format "yyyy-mm-dd". To use Timestamp offset, you must also enable Insert program-date-time in the output settings. For example, if the date part of your timecodes is 2002-1-25 and you want to change it to one year later, set Timestamp offset to 2003-1-25.
6209
- * @public
6210
- */
6211
- TimestampOffset?: string | undefined;
6212
- }
6213
- /**
6214
- * Insert user-defined custom ID3 metadata at timecodes that you specify. In each output that you want to include this metadata, you must set ID3 metadata to Passthrough.
6215
- * @public
6216
- */
6217
- export interface TimedMetadataInsertion {
6218
- /**
6219
- * Id3Insertions contains the array of Id3Insertion instances.
6220
- * @public
6221
- */
6222
- Id3Insertions?: Id3Insertion[] | undefined;
6223
- }