@aws-sdk/client-mediaconvert 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MediaConvert.d.ts +480 -145
- package/dist-types/ts3.4/MediaConvertClient.d.ts +273 -101
- package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +33 -18
- package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +3 -3
- package/dist-types/ts3.4/models/models_0.d.ts +2244 -2849
- package/dist-types/ts3.4/models/models_1.d.ts +2066 -2642
- package/dist-types/ts3.4/models/models_2.d.ts +182 -204
- package/dist-types/ts3.4/pagination/DescribeEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPresetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import {
|
|
14
|
+
ListJobTemplatesRequest,
|
|
15
|
+
ListJobTemplatesResponse,
|
|
16
|
+
} from "../models/models_2";
|
|
17
|
+
export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {}
|
|
18
|
+
export interface ListJobTemplatesCommandOutput
|
|
19
|
+
extends ListJobTemplatesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListJobTemplatesCommand extends $Command<
|
|
22
|
+
ListJobTemplatesCommandInput,
|
|
23
|
+
ListJobTemplatesCommandOutput,
|
|
24
|
+
MediaConvertClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListJobTemplatesCommandInput;
|
|
27
|
+
constructor(input: ListJobTemplatesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,18 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { ListJobsRequest } from "../models/models_1";
|
|
14
|
+
import { ListJobsResponse } from "../models/models_2";
|
|
15
|
+
export interface ListJobsCommandInput extends ListJobsRequest {}
|
|
16
|
+
export interface ListJobsCommandOutput
|
|
17
|
+
extends ListJobsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListJobsCommand extends $Command<
|
|
20
|
+
ListJobsCommandInput,
|
|
21
|
+
ListJobsCommandOutput,
|
|
22
|
+
MediaConvertClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListJobsCommandInput;
|
|
25
|
+
constructor(input: ListJobsCommandInput);
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { ListPresetsRequest, ListPresetsResponse } from "../models/models_2";
|
|
14
|
+
export interface ListPresetsCommandInput extends ListPresetsRequest {}
|
|
15
|
+
export interface ListPresetsCommandOutput
|
|
16
|
+
extends ListPresetsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListPresetsCommand extends $Command<
|
|
19
|
+
ListPresetsCommandInput,
|
|
20
|
+
ListPresetsCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListPresetsCommandInput;
|
|
24
|
+
constructor(input: ListPresetsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListPresetsCommandInput, ListPresetsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { ListQueuesRequest, ListQueuesResponse } from "../models/models_2";
|
|
14
|
+
export interface ListQueuesCommandInput extends ListQueuesRequest {}
|
|
15
|
+
export interface ListQueuesCommandOutput
|
|
16
|
+
extends ListQueuesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListQueuesCommand extends $Command<
|
|
19
|
+
ListQueuesCommandInput,
|
|
20
|
+
ListQueuesCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListQueuesCommandInput;
|
|
24
|
+
constructor(input: ListQueuesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListQueuesCommandInput, ListQueuesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_2";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { PutPolicyRequest, PutPolicyResponse } from "../models/models_2";
|
|
14
|
+
export interface PutPolicyCommandInput extends PutPolicyRequest {}
|
|
15
|
+
export interface PutPolicyCommandOutput
|
|
16
|
+
extends PutPolicyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class PutPolicyCommand extends $Command<
|
|
19
|
+
PutPolicyCommandInput,
|
|
20
|
+
PutPolicyCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PutPolicyCommandInput;
|
|
24
|
+
constructor(input: PutPolicyCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_2";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_2";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
MediaConvertClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateJobTemplateRequest,
|
|
15
|
+
UpdateJobTemplateResponse,
|
|
16
|
+
} from "../models/models_2";
|
|
17
|
+
export interface UpdateJobTemplateCommandInput
|
|
18
|
+
extends UpdateJobTemplateRequest {}
|
|
19
|
+
export interface UpdateJobTemplateCommandOutput
|
|
20
|
+
extends UpdateJobTemplateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateJobTemplateCommand extends $Command<
|
|
23
|
+
UpdateJobTemplateCommandInput,
|
|
24
|
+
UpdateJobTemplateCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateJobTemplateCommandInput;
|
|
28
|
+
constructor(input: UpdateJobTemplateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_2";
|
|
14
|
+
export interface UpdatePresetCommandInput extends UpdatePresetRequest {}
|
|
15
|
+
export interface UpdatePresetCommandOutput
|
|
16
|
+
extends UpdatePresetResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UpdatePresetCommand extends $Command<
|
|
19
|
+
UpdatePresetCommandInput,
|
|
20
|
+
UpdatePresetCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdatePresetCommandInput;
|
|
24
|
+
constructor(input: UpdatePresetCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UpdatePresetCommandInput, UpdatePresetCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaConvertClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaConvertClient";
|
|
13
|
+
import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_2";
|
|
14
|
+
export interface UpdateQueueCommandInput extends UpdateQueueRequest {}
|
|
15
|
+
export interface UpdateQueueCommandOutput
|
|
16
|
+
extends UpdateQueueResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UpdateQueueCommand extends $Command<
|
|
19
|
+
UpdateQueueCommandInput,
|
|
20
|
+
UpdateQueueCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateQueueCommandInput;
|
|
24
|
+
constructor(input: UpdateQueueCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UpdateQueueCommandInput, UpdateQueueCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export * from "./AssociateCertificateCommand";
|
|
2
|
-
export * from "./CancelJobCommand";
|
|
3
|
-
export * from "./CreateJobCommand";
|
|
4
|
-
export * from "./CreateJobTemplateCommand";
|
|
5
|
-
export * from "./CreatePresetCommand";
|
|
6
|
-
export * from "./CreateQueueCommand";
|
|
7
|
-
export * from "./DeleteJobTemplateCommand";
|
|
8
|
-
export * from "./DeletePolicyCommand";
|
|
9
|
-
export * from "./DeletePresetCommand";
|
|
10
|
-
export * from "./DeleteQueueCommand";
|
|
11
|
-
export * from "./DescribeEndpointsCommand";
|
|
12
|
-
export * from "./DisassociateCertificateCommand";
|
|
13
|
-
export * from "./GetJobCommand";
|
|
14
|
-
export * from "./GetJobTemplateCommand";
|
|
15
|
-
export * from "./GetPolicyCommand";
|
|
16
|
-
export * from "./GetPresetCommand";
|
|
17
|
-
export * from "./GetQueueCommand";
|
|
18
|
-
export * from "./ListJobTemplatesCommand";
|
|
19
|
-
export * from "./ListJobsCommand";
|
|
20
|
-
export * from "./ListPresetsCommand";
|
|
21
|
-
export * from "./ListQueuesCommand";
|
|
22
|
-
export * from "./ListTagsForResourceCommand";
|
|
23
|
-
export * from "./PutPolicyCommand";
|
|
24
|
-
export * from "./TagResourceCommand";
|
|
25
|
-
export * from "./UntagResourceCommand";
|
|
26
|
-
export * from "./UpdateJobTemplateCommand";
|
|
27
|
-
export * from "./UpdatePresetCommand";
|
|
28
|
-
export * from "./UpdateQueueCommand";
|
|
1
|
+
export * from "./AssociateCertificateCommand";
|
|
2
|
+
export * from "./CancelJobCommand";
|
|
3
|
+
export * from "./CreateJobCommand";
|
|
4
|
+
export * from "./CreateJobTemplateCommand";
|
|
5
|
+
export * from "./CreatePresetCommand";
|
|
6
|
+
export * from "./CreateQueueCommand";
|
|
7
|
+
export * from "./DeleteJobTemplateCommand";
|
|
8
|
+
export * from "./DeletePolicyCommand";
|
|
9
|
+
export * from "./DeletePresetCommand";
|
|
10
|
+
export * from "./DeleteQueueCommand";
|
|
11
|
+
export * from "./DescribeEndpointsCommand";
|
|
12
|
+
export * from "./DisassociateCertificateCommand";
|
|
13
|
+
export * from "./GetJobCommand";
|
|
14
|
+
export * from "./GetJobTemplateCommand";
|
|
15
|
+
export * from "./GetPolicyCommand";
|
|
16
|
+
export * from "./GetPresetCommand";
|
|
17
|
+
export * from "./GetQueueCommand";
|
|
18
|
+
export * from "./ListJobTemplatesCommand";
|
|
19
|
+
export * from "./ListJobsCommand";
|
|
20
|
+
export * from "./ListPresetsCommand";
|
|
21
|
+
export * from "./ListQueuesCommand";
|
|
22
|
+
export * from "./ListTagsForResourceCommand";
|
|
23
|
+
export * from "./PutPolicyCommand";
|
|
24
|
+
export * from "./TagResourceCommand";
|
|
25
|
+
export * from "./UntagResourceCommand";
|
|
26
|
+
export * from "./UpdateJobTemplateCommand";
|
|
27
|
+
export * from "./UpdatePresetCommand";
|
|
28
|
+
export * from "./UpdateQueueCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|