@aws-sdk/client-mediaconvert 3.325.0 → 3.326.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 +3 -3
|
@@ -31,6 +31,29 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetQueueCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetQueueResponse
|
|
35
|
+
* // Queue: { // Queue
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
38
|
+
* // Description: "STRING_VALUE",
|
|
39
|
+
* // LastUpdated: new Date("TIMESTAMP"),
|
|
40
|
+
* // Name: "STRING_VALUE", // required
|
|
41
|
+
* // PricingPlan: "ON_DEMAND" || "RESERVED",
|
|
42
|
+
* // ProgressingJobsCount: Number("int"),
|
|
43
|
+
* // ReservationPlan: { // ReservationPlan
|
|
44
|
+
* // Commitment: "ONE_YEAR",
|
|
45
|
+
* // ExpiresAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // PurchasedAt: new Date("TIMESTAMP"),
|
|
47
|
+
* // RenewalType: "AUTO_RENEW" || "EXPIRE",
|
|
48
|
+
* // ReservedSlots: Number("int"),
|
|
49
|
+
* // Status: "ACTIVE" || "EXPIRED",
|
|
50
|
+
* // },
|
|
51
|
+
* // Status: "ACTIVE" || "PAUSED",
|
|
52
|
+
* // SubmittedJobsCount: Number("int"),
|
|
53
|
+
* // Type: "SYSTEM" || "CUSTOM",
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
34
57
|
* ```
|
|
35
58
|
*
|
|
36
59
|
* @param GetQueueCommandInput - {@link GetQueueCommandInput}
|
|
@@ -57,6 +80,8 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare
|
|
|
57
80
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
81
|
* Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
|
|
59
82
|
*
|
|
83
|
+
* @throws {@link MediaConvertServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from MediaConvert service.</p>
|
|
60
85
|
*
|
|
61
86
|
*/
|
|
62
87
|
export declare class GetQueueCommand extends $Command<GetQueueCommandInput, GetQueueCommandOutput, MediaConvertClientResolvedConfig> {
|