@aws-sdk/client-mediaconvert 3.168.0 → 3.170.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 (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MediaConvert.d.ts +508 -145
  3. package/dist-types/ts3.4/MediaConvertClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +35 -18
  23. package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +3 -3
  37. package/dist-types/ts3.4/models/models_0.d.ts +2930 -2849
  38. package/dist-types/ts3.4/models/models_1.d.ts +2735 -2642
  39. package/dist-types/ts3.4/models/models_2.d.ts +237 -204
  40. package/dist-types/ts3.4/pagination/DescribeEndpointsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListPresetsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  52. package/package.json +34 -34
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { GetPresetRequest, GetPresetResponse } from "../models/models_1";
5
- export interface GetPresetCommandInput extends GetPresetRequest {
6
- }
7
- export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetPresetCommand extends $Command<GetPresetCommandInput, GetPresetCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: GetPresetCommandInput;
12
- constructor(input: GetPresetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPresetCommandInput, GetPresetCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { GetPresetRequest, GetPresetResponse } from "../models/models_1";
14
+ export interface GetPresetCommandInput extends GetPresetRequest {}
15
+ export interface GetPresetCommandOutput
16
+ extends GetPresetResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetPresetCommand extends $Command<
20
+ GetPresetCommandInput,
21
+ GetPresetCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: GetPresetCommandInput;
25
+ constructor(input: GetPresetCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetPresetCommandInput, GetPresetCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { GetQueueRequest, GetQueueResponse } from "../models/models_1";
5
- export interface GetQueueCommandInput extends GetQueueRequest {
6
- }
7
- export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetQueueCommand extends $Command<GetQueueCommandInput, GetQueueCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: GetQueueCommandInput;
12
- constructor(input: GetQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQueueCommandInput, GetQueueCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { GetQueueRequest, GetQueueResponse } from "../models/models_1";
14
+ export interface GetQueueCommandInput extends GetQueueRequest {}
15
+ export interface GetQueueCommandOutput
16
+ extends GetQueueResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetQueueCommand extends $Command<
20
+ GetQueueCommandInput,
21
+ GetQueueCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: GetQueueCommandInput;
25
+ constructor(input: GetQueueCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetQueueCommandInput, GetQueueCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_2";
5
- export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {
6
- }
7
- export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListJobTemplatesCommand extends $Command<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: ListJobTemplatesCommandInput;
12
- constructor(input: ListJobTemplatesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
22
+ export declare class ListJobTemplatesCommand extends $Command<
23
+ ListJobTemplatesCommandInput,
24
+ ListJobTemplatesCommandOutput,
25
+ MediaConvertClientResolvedConfig
26
+ > {
27
+ readonly input: ListJobTemplatesCommandInput;
28
+ constructor(input: ListJobTemplatesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConvertClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,18 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { ListJobsRequest } from "../models/models_1";
5
- import { ListJobsResponse } from "../models/models_2";
6
- export interface ListJobsCommandInput extends ListJobsRequest {
7
- }
8
- export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {
9
- }
10
-
11
- export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, MediaConvertClientResolvedConfig> {
12
- readonly input: ListJobsCommandInput;
13
- constructor(input: ListJobsCommandInput);
14
-
15
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
16
- private serialize;
17
- private deserialize;
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
+
20
+ export declare class ListJobsCommand extends $Command<
21
+ ListJobsCommandInput,
22
+ ListJobsCommandOutput,
23
+ MediaConvertClientResolvedConfig
24
+ > {
25
+ readonly input: ListJobsCommandInput;
26
+ constructor(input: ListJobsCommandInput);
27
+
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaConvertClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { ListPresetsRequest, ListPresetsResponse } from "../models/models_2";
5
- export interface ListPresetsCommandInput extends ListPresetsRequest {
6
- }
7
- export interface ListPresetsCommandOutput extends ListPresetsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListPresetsCommand extends $Command<ListPresetsCommandInput, ListPresetsCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: ListPresetsCommandInput;
12
- constructor(input: ListPresetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPresetsCommandInput, ListPresetsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
19
+ export declare class ListPresetsCommand extends $Command<
20
+ ListPresetsCommandInput,
21
+ ListPresetsCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: ListPresetsCommandInput;
25
+ constructor(input: ListPresetsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListPresetsCommandInput, ListPresetsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { ListQueuesRequest, ListQueuesResponse } from "../models/models_2";
5
- export interface ListQueuesCommandInput extends ListQueuesRequest {
6
- }
7
- export interface ListQueuesCommandOutput extends ListQueuesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListQueuesCommand extends $Command<ListQueuesCommandInput, ListQueuesCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: ListQueuesCommandInput;
12
- constructor(input: ListQueuesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueuesCommandInput, ListQueuesCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
19
+ export declare class ListQueuesCommand extends $Command<
20
+ ListQueuesCommandInput,
21
+ ListQueuesCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: ListQueuesCommandInput;
25
+ constructor(input: ListQueuesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListQueuesCommandInput, ListQueuesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { PutPolicyRequest, PutPolicyResponse } from "../models/models_2";
5
- export interface PutPolicyCommandInput extends PutPolicyRequest {
6
- }
7
- export interface PutPolicyCommandOutput extends PutPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutPolicyCommand extends $Command<PutPolicyCommandInput, PutPolicyCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: PutPolicyCommandInput;
12
- constructor(input: PutPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
19
+ export declare class PutPolicyCommand extends $Command<
20
+ PutPolicyCommandInput,
21
+ PutPolicyCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: PutPolicyCommandInput;
25
+ constructor(input: PutPolicyCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_2";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_2";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ MediaConvertClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConvertClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
4
- import { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/models_2";
5
- export interface UpdateJobTemplateCommandInput extends UpdateJobTemplateRequest {
6
- }
7
- export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateJobTemplateCommand extends $Command<UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: UpdateJobTemplateCommandInput;
12
- constructor(input: UpdateJobTemplateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
23
+ export declare class UpdateJobTemplateCommand extends $Command<
24
+ UpdateJobTemplateCommandInput,
25
+ UpdateJobTemplateCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateJobTemplateCommandInput;
29
+ constructor(input: UpdateJobTemplateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateJobTemplateCommandInput, UpdateJobTemplateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }