@aws-sdk/client-mediaconvert 3.298.0 → 3.300.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 +3 -0
  2. package/dist-types/commands/CancelJobCommand.d.ts +3 -0
  3. package/dist-types/commands/CreateJobCommand.d.ts +1382 -0
  4. package/dist-types/commands/CreateJobTemplateCommand.d.ts +1364 -0
  5. package/dist-types/commands/CreatePresetCommand.d.ts +775 -0
  6. package/dist-types/commands/CreateQueueCommand.d.ts +14 -0
  7. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
  8. package/dist-types/commands/DeletePolicyCommand.d.ts +1 -0
  9. package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeEndpointsCommand.d.ts +5 -0
  12. package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
  13. package/dist-types/commands/GetJobCommand.d.ts +3 -0
  14. package/dist-types/commands/GetJobTemplateCommand.d.ts +3 -0
  15. package/dist-types/commands/GetPolicyCommand.d.ts +1 -0
  16. package/dist-types/commands/GetPresetCommand.d.ts +3 -0
  17. package/dist-types/commands/GetQueueCommand.d.ts +3 -0
  18. package/dist-types/commands/ListJobTemplatesCommand.d.ts +7 -0
  19. package/dist-types/commands/ListJobsCommand.d.ts +7 -0
  20. package/dist-types/commands/ListPresetsCommand.d.ts +7 -0
  21. package/dist-types/commands/ListQueuesCommand.d.ts +6 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  23. package/dist-types/commands/PutPolicyCommand.d.ts +7 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  26. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1361 -0
  27. package/dist-types/commands/UpdatePresetCommand.d.ts +772 -0
  28. package/dist-types/commands/UpdateQueueCommand.d.ts +10 -0
  29. package/package.json +12 -12
@@ -26,6 +26,9 @@ export interface AssociateCertificateCommandOutput extends AssociateCertificateR
26
26
  * import { MediaConvertClient, AssociateCertificateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, AssociateCertificateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = {
30
+ * Arn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new AssociateCertificateCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea
26
26
  * import { MediaConvertClient, CancelJobCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, CancelJobCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = {
30
+ * Id: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new CancelJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```