@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.
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 +3 -3
@@ -42,6 +42,29 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat
42
42
  * };
43
43
  * const command = new CreateQueueCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // CreateQueueResponse
46
+ * // Queue: { // Queue
47
+ * // Arn: "STRING_VALUE",
48
+ * // CreatedAt: new Date("TIMESTAMP"),
49
+ * // Description: "STRING_VALUE",
50
+ * // LastUpdated: new Date("TIMESTAMP"),
51
+ * // Name: "STRING_VALUE", // required
52
+ * // PricingPlan: "ON_DEMAND" || "RESERVED",
53
+ * // ProgressingJobsCount: Number("int"),
54
+ * // ReservationPlan: { // ReservationPlan
55
+ * // Commitment: "ONE_YEAR",
56
+ * // ExpiresAt: new Date("TIMESTAMP"),
57
+ * // PurchasedAt: new Date("TIMESTAMP"),
58
+ * // RenewalType: "AUTO_RENEW" || "EXPIRE",
59
+ * // ReservedSlots: Number("int"),
60
+ * // Status: "ACTIVE" || "EXPIRED",
61
+ * // },
62
+ * // Status: "ACTIVE" || "PAUSED",
63
+ * // SubmittedJobsCount: Number("int"),
64
+ * // Type: "SYSTEM" || "CUSTOM",
65
+ * // },
66
+ * // };
67
+ *
45
68
  * ```
46
69
  *
47
70
  * @param CreateQueueCommandInput - {@link CreateQueueCommandInput}
@@ -68,6 +91,8 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat
68
91
  * @throws {@link TooManyRequestsException} (client fault)
69
92
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
70
93
  *
94
+ * @throws {@link MediaConvertServiceException}
95
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
71
96
  *
72
97
  */
73
98
  export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, MediaConvertClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
31
31
  * };
32
32
  * const command = new DeleteJobTemplateCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteJobTemplateCommandInput - {@link DeleteJobTemplateCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
57
59
  * @throws {@link TooManyRequestsException} (client fault)
58
60
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
59
61
  *
62
+ * @throws {@link MediaConvertServiceException}
63
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
@@ -29,6 +29,8 @@ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __Metad
29
29
  * const input = {};
30
30
  * const command = new DeletePolicyCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // {};
33
+ *
32
34
  * ```
33
35
  *
34
36
  * @param DeletePolicyCommandInput - {@link DeletePolicyCommandInput}
@@ -55,6 +57,8 @@ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __Metad
55
57
  * @throws {@link TooManyRequestsException} (client fault)
56
58
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
57
59
  *
60
+ * @throws {@link MediaConvertServiceException}
61
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, MediaConvertClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad
31
31
  * };
32
32
  * const command = new DeletePresetCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeletePresetCommandInput - {@link DeletePresetCommandInput}
@@ -57,6 +59,8 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad
57
59
  * @throws {@link TooManyRequestsException} (client fault)
58
60
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
59
61
  *
62
+ * @throws {@link MediaConvertServiceException}
63
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeletePresetCommand extends $Command<DeletePresetCommandInput, DeletePresetCommandOutput, MediaConvertClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat
31
31
  * };
32
32
  * const command = new DeleteQueueCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteQueueCommandInput - {@link DeleteQueueCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat
57
59
  * @throws {@link TooManyRequestsException} (client fault)
58
60
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
59
61
  *
62
+ * @throws {@link MediaConvertServiceException}
63
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, MediaConvertClientResolvedConfig> {
@@ -33,6 +33,15 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
33
33
  * };
34
34
  * const command = new DescribeEndpointsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeEndpointsResponse
37
+ * // Endpoints: [ // __listOfEndpoint
38
+ * // { // Endpoint
39
+ * // Url: "STRING_VALUE",
40
+ * // },
41
+ * // ],
42
+ * // NextToken: "STRING_VALUE",
43
+ * // };
44
+ *
36
45
  * ```
37
46
  *
38
47
  * @param DescribeEndpointsCommandInput - {@link DescribeEndpointsCommandInput}
@@ -59,6 +68,8 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
59
68
  * @throws {@link TooManyRequestsException} (client fault)
60
69
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
61
70
  *
71
+ * @throws {@link MediaConvertServiceException}
72
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
62
73
  *
63
74
  */
64
75
  export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, MediaConvertClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DisassociateCertificateCommandOutput extends DisassociateCertif
31
31
  * };
32
32
  * const command = new DisassociateCertificateCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DisassociateCertificateCommandInput - {@link DisassociateCertificateCommandInput}
@@ -57,6 +59,8 @@ export interface DisassociateCertificateCommandOutput extends DisassociateCertif
57
59
  * @throws {@link TooManyRequestsException} (client fault)
58
60
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
59
61
  *
62
+ * @throws {@link MediaConvertServiceException}
63
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DisassociateCertificateCommand extends $Command<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput, MediaConvertClientResolvedConfig> {