@aws-sdk/client-mediaconvert 3.299.0 → 3.301.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 +8 -8
@@ -26,6 +26,20 @@ export interface CreateQueueCommandOutput extends CreateQueueResponse, __Metadat
26
26
  * import { MediaConvertClient, CreateQueueCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, CreateQueueCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // CreateQueueRequest
30
+ * Description: "STRING_VALUE",
31
+ * Name: "STRING_VALUE", // required
32
+ * PricingPlan: "ON_DEMAND" || "RESERVED",
33
+ * ReservationPlanSettings: { // ReservationPlanSettings
34
+ * Commitment: "ONE_YEAR", // required
35
+ * RenewalType: "AUTO_RENEW" || "EXPIRE", // required
36
+ * ReservedSlots: Number("int"), // required
37
+ * },
38
+ * Status: "ACTIVE" || "PAUSED",
39
+ * Tags: { // __mapOf__string
40
+ * "<keys>": "STRING_VALUE",
41
+ * },
42
+ * };
29
43
  * const command = new CreateQueueCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,9 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
26
26
  * import { MediaConvertClient, DeleteJobTemplateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, DeleteJobTemplateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // DeleteJobTemplateRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteJobTemplateCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,7 @@ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __Metad
26
26
  * import { MediaConvertClient, DeletePolicyCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, DeletePolicyCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = {};
29
30
  * const command = new DeletePolicyCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -26,6 +26,9 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad
26
26
  * import { MediaConvertClient, DeletePresetCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, DeletePresetCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // DeletePresetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeletePresetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat
26
26
  * import { MediaConvertClient, DeleteQueueCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, DeleteQueueCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // DeleteQueueRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteQueueCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
26
26
  * import { MediaConvertClient, DescribeEndpointsCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, DescribeEndpointsCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // DescribeEndpointsRequest
30
+ * MaxResults: Number("int"),
31
+ * Mode: "DEFAULT" || "GET_ONLY",
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DescribeEndpointsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface DisassociateCertificateCommandOutput extends DisassociateCertif
26
26
  * import { MediaConvertClient, DisassociateCertificateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, DisassociateCertificateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // DisassociateCertificateRequest
30
+ * Arn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DisassociateCertificateCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
27
27
  * import { MediaConvertClient, GetJobCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
28
28
  * // const { MediaConvertClient, GetJobCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
29
29
  * const client = new MediaConvertClient(config);
30
+ * const input = { // GetJobRequest
31
+ * Id: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetJobCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __M
26
26
  * import { MediaConvertClient, GetJobTemplateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, GetJobTemplateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // GetJobTemplateRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetJobTemplateCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
26
26
  * import { MediaConvertClient, GetPolicyCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, GetPolicyCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = {};
29
30
  * const command = new GetPolicyCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -26,6 +26,9 @@ export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBea
26
26
  * import { MediaConvertClient, GetPresetCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, GetPresetCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // GetPresetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetPresetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare
26
26
  * import { MediaConvertClient, GetQueueCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, GetQueueCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // GetQueueRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetQueueCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,13 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
26
26
  * import { MediaConvertClient, ListJobTemplatesCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, ListJobTemplatesCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // ListJobTemplatesRequest
30
+ * Category: "STRING_VALUE",
31
+ * ListBy: "NAME" || "CREATION_DATE" || "SYSTEM",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * Order: "ASCENDING" || "DESCENDING",
35
+ * };
29
36
  * const command = new ListJobTemplatesCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,13 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
26
26
  * import { MediaConvertClient, ListJobsCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, ListJobsCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // ListJobsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * Order: "ASCENDING" || "DESCENDING",
33
+ * Queue: "STRING_VALUE",
34
+ * Status: "SUBMITTED" || "PROGRESSING" || "COMPLETE" || "CANCELED" || "ERROR",
35
+ * };
29
36
  * const command = new ListJobsCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,13 @@ export interface ListPresetsCommandOutput extends ListPresetsResponse, __Metadat
26
26
  * import { MediaConvertClient, ListPresetsCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, ListPresetsCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // ListPresetsRequest
30
+ * Category: "STRING_VALUE",
31
+ * ListBy: "NAME" || "CREATION_DATE" || "SYSTEM",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * Order: "ASCENDING" || "DESCENDING",
35
+ * };
29
36
  * const command = new ListPresetsCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,12 @@ export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataB
26
26
  * import { MediaConvertClient, ListQueuesCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, ListQueuesCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // ListQueuesRequest
30
+ * ListBy: "NAME" || "CREATION_DATE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * Order: "ASCENDING" || "DESCENDING",
34
+ * };
29
35
  * const command = new ListQueuesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { MediaConvertClient, ListTagsForResourceCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, ListTagsForResourceCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * Arn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,13 @@ export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBea
26
26
  * import { MediaConvertClient, PutPolicyCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, PutPolicyCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // PutPolicyRequest
30
+ * Policy: { // Policy
31
+ * HttpInputs: "ALLOWED" || "DISALLOWED",
32
+ * HttpsInputs: "ALLOWED" || "DISALLOWED",
33
+ * S3Inputs: "ALLOWED" || "DISALLOWED",
34
+ * },
35
+ * };
29
36
  * const command = new PutPolicyCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { MediaConvertClient, TagResourceCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, TagResourceCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // TagResourceRequest
30
+ * Arn: "STRING_VALUE", // required
31
+ * Tags: { // __mapOf__string // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { MediaConvertClient, UntagResourceCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
27
27
  * // const { MediaConvertClient, UntagResourceCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
28
28
  * const client = new MediaConvertClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * Arn: "STRING_VALUE", // required
31
+ * TagKeys: [ // __listOf__string
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```