@aws-sdk/client-mediaconvert 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +187 -187
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +184 -184
- package/dist-types/commands/CreatePresetCommand.d.ts +94 -94
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -3
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +183 -183
- package/dist-types/commands/UpdatePresetCommand.d.ts +93 -93
- package/dist-types/commands/UpdateQueueCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -1,27 +1,22 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
export var QueueListBy;
|
|
24
|
-
(function (QueueListBy) {
|
|
25
|
-
QueueListBy["CREATION_DATE"] = "CREATION_DATE";
|
|
26
|
-
QueueListBy["NAME"] = "NAME";
|
|
27
|
-
})(QueueListBy || (QueueListBy = {}));
|
|
1
|
+
export const InputPolicy = {
|
|
2
|
+
ALLOWED: "ALLOWED",
|
|
3
|
+
DISALLOWED: "DISALLOWED",
|
|
4
|
+
};
|
|
5
|
+
export const JobTemplateListBy = {
|
|
6
|
+
CREATION_DATE: "CREATION_DATE",
|
|
7
|
+
NAME: "NAME",
|
|
8
|
+
SYSTEM: "SYSTEM",
|
|
9
|
+
};
|
|
10
|
+
export const Order = {
|
|
11
|
+
ASCENDING: "ASCENDING",
|
|
12
|
+
DESCENDING: "DESCENDING",
|
|
13
|
+
};
|
|
14
|
+
export const PresetListBy = {
|
|
15
|
+
CREATION_DATE: "CREATION_DATE",
|
|
16
|
+
NAME: "NAME",
|
|
17
|
+
SYSTEM: "SYSTEM",
|
|
18
|
+
};
|
|
19
|
+
export const QueueListBy = {
|
|
20
|
+
CREATION_DATE: "CREATION_DATE",
|
|
21
|
+
NAME: "NAME",
|
|
22
|
+
};
|
|
@@ -26,7 +26,7 @@ export interface AssociateCertificateCommandOutput extends AssociateCertificateR
|
|
|
26
26
|
* import { MediaConvertClient, AssociateCertificateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, AssociateCertificateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // AssociateCertificateRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new AssociateCertificateCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea
|
|
|
26
26
|
* import { MediaConvertClient, CancelJobCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, CancelJobCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CancelJobRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelJobCommand(input);
|