@aws-sdk/client-mediaconvert 3.169.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 +8 -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 { CreatePresetRequest, CreatePresetResponse } from "../models/models_1";
5
- export interface CreatePresetCommandInput extends CreatePresetRequest {
6
- }
7
- export interface CreatePresetCommandOutput extends CreatePresetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreatePresetCommand extends $Command<CreatePresetCommandInput, CreatePresetCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: CreatePresetCommandInput;
12
- constructor(input: CreatePresetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePresetCommandInput, CreatePresetCommandOutput>;
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 { CreatePresetRequest, CreatePresetResponse } from "../models/models_1";
14
+ export interface CreatePresetCommandInput extends CreatePresetRequest {}
15
+ export interface CreatePresetCommandOutput
16
+ extends CreatePresetResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreatePresetCommand extends $Command<
20
+ CreatePresetCommandInput,
21
+ CreatePresetCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: CreatePresetCommandInput;
25
+ constructor(input: CreatePresetCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreatePresetCommandInput, CreatePresetCommandOutput>;
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 { CreateQueueRequest, CreateQueueResponse } from "../models/models_1";
5
- export interface CreateQueueCommandInput extends CreateQueueRequest {
6
- }
7
- export interface CreateQueueCommandOutput extends CreateQueueResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateQueueCommand extends $Command<CreateQueueCommandInput, CreateQueueCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: CreateQueueCommandInput;
12
- constructor(input: CreateQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
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 { CreateQueueRequest, CreateQueueResponse } from "../models/models_1";
14
+ export interface CreateQueueCommandInput extends CreateQueueRequest {}
15
+ export interface CreateQueueCommandOutput
16
+ extends CreateQueueResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateQueueCommand extends $Command<
20
+ CreateQueueCommandInput,
21
+ CreateQueueCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: CreateQueueCommandInput;
25
+ constructor(input: CreateQueueCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
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 { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_1";
5
- export interface DeleteJobTemplateCommandInput extends DeleteJobTemplateRequest {
6
- }
7
- export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: DeleteJobTemplateCommandInput;
12
- constructor(input: DeleteJobTemplateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
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
+ DeleteJobTemplateRequest,
15
+ DeleteJobTemplateResponse,
16
+ } from "../models/models_1";
17
+ export interface DeleteJobTemplateCommandInput
18
+ extends DeleteJobTemplateRequest {}
19
+ export interface DeleteJobTemplateCommandOutput
20
+ extends DeleteJobTemplateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteJobTemplateCommand extends $Command<
24
+ DeleteJobTemplateCommandInput,
25
+ DeleteJobTemplateCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteJobTemplateCommandInput;
29
+ constructor(input: DeleteJobTemplateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
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 { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_1";
5
- export interface DeletePolicyCommandInput extends DeletePolicyRequest {
6
- }
7
- export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: DeletePolicyCommandInput;
12
- constructor(input: DeletePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
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 { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_1";
14
+ export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
15
+ export interface DeletePolicyCommandOutput
16
+ extends DeletePolicyResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeletePolicyCommand extends $Command<
20
+ DeletePolicyCommandInput,
21
+ DeletePolicyCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: DeletePolicyCommandInput;
25
+ constructor(input: DeletePolicyCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
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 { DeletePresetRequest, DeletePresetResponse } from "../models/models_1";
5
- export interface DeletePresetCommandInput extends DeletePresetRequest {
6
- }
7
- export interface DeletePresetCommandOutput extends DeletePresetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeletePresetCommand extends $Command<DeletePresetCommandInput, DeletePresetCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: DeletePresetCommandInput;
12
- constructor(input: DeletePresetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePresetCommandInput, DeletePresetCommandOutput>;
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 { DeletePresetRequest, DeletePresetResponse } from "../models/models_1";
14
+ export interface DeletePresetCommandInput extends DeletePresetRequest {}
15
+ export interface DeletePresetCommandOutput
16
+ extends DeletePresetResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeletePresetCommand extends $Command<
20
+ DeletePresetCommandInput,
21
+ DeletePresetCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: DeletePresetCommandInput;
25
+ constructor(input: DeletePresetCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeletePresetCommandInput, DeletePresetCommandOutput>;
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 { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_1";
5
- export interface DeleteQueueCommandInput extends DeleteQueueRequest {
6
- }
7
- export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: DeleteQueueCommandInput;
12
- constructor(input: DeleteQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
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 { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_1";
14
+ export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
15
+ export interface DeleteQueueCommandOutput
16
+ extends DeleteQueueResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteQueueCommand extends $Command<
20
+ DeleteQueueCommandInput,
21
+ DeleteQueueCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteQueueCommandInput;
25
+ constructor(input: DeleteQueueCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
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 { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_1";
5
- export interface DescribeEndpointsCommandInput extends DescribeEndpointsRequest {
6
- }
7
- export interface DescribeEndpointsCommandOutput extends DescribeEndpointsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: DescribeEndpointsCommandInput;
12
- constructor(input: DescribeEndpointsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
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
+ DescribeEndpointsRequest,
15
+ DescribeEndpointsResponse,
16
+ } from "../models/models_1";
17
+ export interface DescribeEndpointsCommandInput
18
+ extends DescribeEndpointsRequest {}
19
+ export interface DescribeEndpointsCommandOutput
20
+ extends DescribeEndpointsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeEndpointsCommand extends $Command<
24
+ DescribeEndpointsCommandInput,
25
+ DescribeEndpointsCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeEndpointsCommandInput;
29
+ constructor(input: DescribeEndpointsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { DisassociateCertificateRequest, DisassociateCertificateResponse } from "../models/models_1";
5
- export interface DisassociateCertificateCommandInput extends DisassociateCertificateRequest {
6
- }
7
- export interface DisassociateCertificateCommandOutput extends DisassociateCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateCertificateCommand extends $Command<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: DisassociateCertificateCommandInput;
12
- constructor(input: DisassociateCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput>;
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
+ DisassociateCertificateRequest,
15
+ DisassociateCertificateResponse,
16
+ } from "../models/models_1";
17
+ export interface DisassociateCertificateCommandInput
18
+ extends DisassociateCertificateRequest {}
19
+ export interface DisassociateCertificateCommandOutput
20
+ extends DisassociateCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisassociateCertificateCommand extends $Command<
24
+ DisassociateCertificateCommandInput,
25
+ DisassociateCertificateCommandOutput,
26
+ MediaConvertClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateCertificateCommandInput;
29
+ constructor(input: DisassociateCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConvertClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateCertificateCommandInput,
37
+ DisassociateCertificateCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,32 @@
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 { GetJobRequest, GetJobResponse } from "../models/models_1";
5
- export interface GetJobCommandInput extends GetJobRequest {
6
- }
7
- export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: GetJobCommandInput;
12
- constructor(input: GetJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
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 { GetJobRequest, GetJobResponse } from "../models/models_1";
14
+ export interface GetJobCommandInput extends GetJobRequest {}
15
+ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
16
+
17
+ export declare class GetJobCommand extends $Command<
18
+ GetJobCommandInput,
19
+ GetJobCommandOutput,
20
+ MediaConvertClientResolvedConfig
21
+ > {
22
+ readonly input: GetJobCommandInput;
23
+ constructor(input: GetJobCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaConvertClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetJobCommandInput, GetJobCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { GetJobTemplateRequest, GetJobTemplateResponse } from "../models/models_1";
5
- export interface GetJobTemplateCommandInput extends GetJobTemplateRequest {
6
- }
7
- export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobTemplateCommand extends $Command<GetJobTemplateCommandInput, GetJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: GetJobTemplateCommandInput;
12
- constructor(input: GetJobTemplateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobTemplateCommandInput, GetJobTemplateCommandOutput>;
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
+ GetJobTemplateRequest,
15
+ GetJobTemplateResponse,
16
+ } from "../models/models_1";
17
+ export interface GetJobTemplateCommandInput extends GetJobTemplateRequest {}
18
+ export interface GetJobTemplateCommandOutput
19
+ extends GetJobTemplateResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetJobTemplateCommand extends $Command<
23
+ GetJobTemplateCommandInput,
24
+ GetJobTemplateCommandOutput,
25
+ MediaConvertClientResolvedConfig
26
+ > {
27
+ readonly input: GetJobTemplateCommandInput;
28
+ constructor(input: GetJobTemplateCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConvertClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetJobTemplateCommandInput, GetJobTemplateCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { GetPolicyRequest, GetPolicyResponse } from "../models/models_1";
5
- export interface GetPolicyCommandInput extends GetPolicyRequest {
6
- }
7
- export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, MediaConvertClientResolvedConfig> {
11
- readonly input: GetPolicyCommandInput;
12
- constructor(input: GetPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
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 { GetPolicyRequest, GetPolicyResponse } from "../models/models_1";
14
+ export interface GetPolicyCommandInput extends GetPolicyRequest {}
15
+ export interface GetPolicyCommandOutput
16
+ extends GetPolicyResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetPolicyCommand extends $Command<
20
+ GetPolicyCommandInput,
21
+ GetPolicyCommandOutput,
22
+ MediaConvertClientResolvedConfig
23
+ > {
24
+ readonly input: GetPolicyCommandInput;
25
+ constructor(input: GetPolicyCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConvertClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }