@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
@@ -29,6 +29,14 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
29
29
  * const input = {};
30
30
  * const command = new GetPolicyCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // { // GetPolicyResponse
33
+ * // Policy: { // Policy
34
+ * // HttpInputs: "ALLOWED" || "DISALLOWED",
35
+ * // HttpsInputs: "ALLOWED" || "DISALLOWED",
36
+ * // S3Inputs: "ALLOWED" || "DISALLOWED",
37
+ * // },
38
+ * // };
39
+ *
32
40
  * ```
33
41
  *
34
42
  * @param GetPolicyCommandInput - {@link GetPolicyCommandInput}
@@ -55,6 +63,8 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
55
63
  * @throws {@link TooManyRequestsException} (client fault)
56
64
  * Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests.
57
65
  *
66
+ * @throws {@link MediaConvertServiceException}
67
+ * <p>Base exception class for all service exceptions from MediaConvert service.</p>
58
68
  *
59
69
  */
60
70
  export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, MediaConvertClientResolvedConfig> {