@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.
Files changed (29) hide show
  1. package/dist-types/commands/AssociateCertificateCommand.d.ts +4 -0
  2. package/dist-types/commands/CancelJobCommand.d.ts +4 -0
  3. package/dist-types/commands/CreateJobCommand.d.ts +1439 -0
  4. package/dist-types/commands/CreateJobTemplateCommand.d.ts +1376 -0
  5. package/dist-types/commands/CreatePresetCommand.d.ts +781 -0
  6. package/dist-types/commands/CreateQueueCommand.d.ts +25 -0
  7. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +4 -0
  8. package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
  9. package/dist-types/commands/DeletePresetCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteQueueCommand.d.ts +4 -0
  11. package/dist-types/commands/DescribeEndpointsCommand.d.ts +11 -0
  12. package/dist-types/commands/DisassociateCertificateCommand.d.ts +4 -0
  13. package/dist-types/commands/GetJobCommand.d.ts +1439 -0
  14. package/dist-types/commands/GetJobTemplateCommand.d.ts +1376 -0
  15. package/dist-types/commands/GetPolicyCommand.d.ts +10 -0
  16. package/dist-types/commands/GetPresetCommand.d.ts +781 -0
  17. package/dist-types/commands/GetQueueCommand.d.ts +25 -0
  18. package/dist-types/commands/ListJobTemplatesCommand.d.ts +1379 -0
  19. package/dist-types/commands/ListJobsCommand.d.ts +1442 -0
  20. package/dist-types/commands/ListPresetsCommand.d.ts +784 -0
  21. package/dist-types/commands/ListQueuesCommand.d.ts +28 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  23. package/dist-types/commands/PutPolicyCommand.d.ts +10 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  26. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1376 -0
  27. package/dist-types/commands/UpdatePresetCommand.d.ts +781 -0
  28. package/dist-types/commands/UpdateQueueCommand.d.ts +25 -0
  29. package/package.json +7 -7
@@ -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> {