@aws-sdk/client-mediaconvert 3.300.0 → 3.303.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-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +187 -187
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +184 -184
- package/dist-types/commands/CreatePresetCommand.d.ts +94 -94
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -3
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +183 -183
- package/dist-types/commands/UpdatePresetCommand.d.ts +93 -93
- package/dist-types/commands/UpdateQueueCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisassociateCertificateRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DisassociateCertificateCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // GetJobRequest
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetJobCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetJobTemplateRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetJobTemplateCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetPresetRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetPresetCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetQueueRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetQueueCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListJobTemplatesRequest
|
|
30
30
|
* Category: "STRING_VALUE",
|
|
31
31
|
* ListBy: "NAME" || "CREATION_DATE" || "SYSTEM",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListJobsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* Order: "ASCENDING" || "DESCENDING",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListPresetsRequest
|
|
30
30
|
* Category: "STRING_VALUE",
|
|
31
31
|
* ListBy: "NAME" || "CREATION_DATE" || "SYSTEM",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListQueuesRequest
|
|
30
30
|
* ListBy: "NAME" || "CREATION_DATE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,8 +26,8 @@ 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: {
|
|
29
|
+
* const input = { // PutPolicyRequest
|
|
30
|
+
* Policy: { // Policy
|
|
31
31
|
* HttpInputs: "ALLOWED" || "DISALLOWED",
|
|
32
32
|
* HttpsInputs: "ALLOWED" || "DISALLOWED",
|
|
33
33
|
* S3Inputs: "ALLOWED" || "DISALLOWED",
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // __mapOf__string // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* Arn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [
|
|
31
|
+
* TagKeys: [ // __listOf__string
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|