@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.
- package/dist-types/commands/AssociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/CancelJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateJobCommand.d.ts +1382 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +1364 -0
- package/dist-types/commands/CreatePresetCommand.d.ts +775 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +14 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -0
- package/dist-types/commands/DeletePresetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +5 -0
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetJobCommand.d.ts +3 -0
- package/dist-types/commands/GetJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -0
- package/dist-types/commands/GetPresetCommand.d.ts +3 -0
- package/dist-types/commands/GetQueueCommand.d.ts +3 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +7 -0
- package/dist-types/commands/ListJobsCommand.d.ts +7 -0
- package/dist-types/commands/ListPresetsCommand.d.ts +7 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +7 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +1361 -0
- package/dist-types/commands/UpdatePresetCommand.d.ts +772 -0
- package/dist-types/commands/UpdateQueueCommand.d.ts +10 -0
- package/package.json +12 -12
|
@@ -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 = {
|
|
30
|
+
* Description: "STRING_VALUE",
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* PricingPlan: "ON_DEMAND" || "RESERVED",
|
|
33
|
+
* ReservationPlanSettings: {
|
|
34
|
+
* Commitment: "ONE_YEAR", // required
|
|
35
|
+
* RenewalType: "AUTO_RENEW" || "EXPIRE", // required
|
|
36
|
+
* ReservedSlots: Number("int"), // required
|
|
37
|
+
* },
|
|
38
|
+
* Status: "ACTIVE" || "PAUSED",
|
|
39
|
+
* Tags: {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
30
|
+
* 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 = {
|
|
30
|
+
* Arn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: { // 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 = {
|
|
30
|
+
* Arn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|