@aws-sdk/client-mediaconvert 3.325.0 → 3.327.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-types/commands/AssociateCertificateCommand.d.ts +4 -0
- package/dist-types/commands/CancelJobCommand.d.ts +4 -0
- package/dist-types/commands/CreateJobCommand.d.ts +1439 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +781 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +25 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +11 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +4 -0
- package/dist-types/commands/GetJobCommand.d.ts +1439 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +10 -0
- package/dist-types/commands/GetPresetCommand.d.ts +781 -0
- package/dist-types/commands/GetQueueCommand.d.ts +25 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1379 -0
- package/dist-types/commands/ListJobsCommand.d.ts +1442 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +784 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +28 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1376 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +781 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +25 -0
- package/package.json +7 -7
|
@@ -34,6 +34,32 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListQueuesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListQueuesResponse
|
|
38
|
+
* // NextToken: "STRING_VALUE",
|
|
39
|
+
* // Queues: [ // __listOfQueue
|
|
40
|
+
* // { // Queue
|
|
41
|
+
* // Arn: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
45
|
+
* // Name: "STRING_VALUE", // required
|
|
46
|
+
* // PricingPlan: "ON_DEMAND" || "RESERVED",
|
|
47
|
+
* // ProgressingJobsCount: Number("int"),
|
|
48
|
+
* // ReservationPlan: { // ReservationPlan
|
|
49
|
+
* // Commitment: "ONE_YEAR",
|
|
50
|
+
* // ExpiresAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // PurchasedAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // RenewalType: "AUTO_RENEW" || "EXPIRE",
|
|
53
|
+
* // ReservedSlots: Number("int"),
|
|
54
|
+
* // Status: "ACTIVE" || "EXPIRED",
|
|
55
|
+
* // },
|
|
56
|
+
* // Status: "ACTIVE" || "PAUSED",
|
|
57
|
+
* // SubmittedJobsCount: Number("int"),
|
|
58
|
+
* // Type: "SYSTEM" || "CUSTOM",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
37
63
|
* ```
|
|
38
64
|
*
|
|
39
65
|
* @param ListQueuesCommandInput - {@link ListQueuesCommandInput}
|
|
@@ -60,6 +86,8 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB
|
|
|
60
86
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
87
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
62
88
|
*
|
|
89
|
+
* @throws {@link MediaConvertServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
63
91
|
*
|
|
64
92
|
*/
|
|
65
93
|
export declare class ListQueuesCommand extends $Command<ListQueuesCommandInput, ListQueuesCommandOutput, MediaConvertClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // ResourceTags: { // ResourceTags
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // Tags: { // __mapOf__string
|
|
38
|
+
* // "<keys>": "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -57,6 +66,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
57
66
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
67
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
59
68
|
*
|
|
69
|
+
* @throws {@link MediaConvertServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
60
71
|
*
|
|
61
72
|
*/
|
|
62
73
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaConvertClientResolvedConfig> {
|
|
@@ -35,6 +35,14 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new PutPolicyCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // PutPolicyResponse
|
|
39
|
+
* // Policy: { // Policy
|
|
40
|
+
* // HttpInputs: "ALLOWED" || "DISALLOWED",
|
|
41
|
+
* // HttpsInputs: "ALLOWED" || "DISALLOWED",
|
|
42
|
+
* // S3Inputs: "ALLOWED" || "DISALLOWED",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
38
46
|
* ```
|
|
39
47
|
*
|
|
40
48
|
* @param PutPolicyCommandInput - {@link PutPolicyCommandInput}
|
|
@@ -61,6 +69,8 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea
|
|
|
61
69
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
62
70
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
63
71
|
*
|
|
72
|
+
* @throws {@link MediaConvertServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
64
74
|
*
|
|
65
75
|
*/
|
|
66
76
|
export declare class PutPolicyCommand extends $Command<PutPolicyCommandInput, PutPolicyCommandOutput, MediaConvertClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
60
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
63
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link MediaConvertServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaConvertClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
60
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
61
63
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link MediaConvertServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaConvertClientResolvedConfig> {
|