@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,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 { CreateQueueRequest, CreateQueueResponse } from "../models/models_1";
|
|
14
|
+
export interface CreateQueueCommandInput extends CreateQueueRequest {}
|
|
15
|
+
export interface CreateQueueCommandOutput
|
|
16
|
+
extends CreateQueueResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class CreateQueueCommand extends $Command<
|
|
19
|
+
CreateQueueCommandInput,
|
|
20
|
+
CreateQueueCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: CreateQueueCommandInput;
|
|
24
|
+
constructor(input: CreateQueueCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<CreateQueueCommandInput, CreateQueueCommandOutput>;
|
|
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
|
+
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
|
+
export declare class DeleteJobTemplateCommand extends $Command<
|
|
23
|
+
DeleteJobTemplateCommandInput,
|
|
24
|
+
DeleteJobTemplateCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteJobTemplateCommandInput;
|
|
28
|
+
constructor(input: DeleteJobTemplateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
|
|
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 { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_1";
|
|
14
|
+
export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
|
|
15
|
+
export interface DeletePolicyCommandOutput
|
|
16
|
+
extends DeletePolicyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeletePolicyCommand extends $Command<
|
|
19
|
+
DeletePolicyCommandInput,
|
|
20
|
+
DeletePolicyCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeletePolicyCommandInput;
|
|
24
|
+
constructor(input: DeletePolicyCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
|
|
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 { DeletePresetRequest, DeletePresetResponse } from "../models/models_1";
|
|
14
|
+
export interface DeletePresetCommandInput extends DeletePresetRequest {}
|
|
15
|
+
export interface DeletePresetCommandOutput
|
|
16
|
+
extends DeletePresetResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeletePresetCommand extends $Command<
|
|
19
|
+
DeletePresetCommandInput,
|
|
20
|
+
DeletePresetCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeletePresetCommandInput;
|
|
24
|
+
constructor(input: DeletePresetCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeletePresetCommandInput, DeletePresetCommandOutput>;
|
|
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 { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_1";
|
|
14
|
+
export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
|
|
15
|
+
export interface DeleteQueueCommandOutput
|
|
16
|
+
extends DeleteQueueResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteQueueCommand extends $Command<
|
|
19
|
+
DeleteQueueCommandInput,
|
|
20
|
+
DeleteQueueCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteQueueCommandInput;
|
|
24
|
+
constructor(input: DeleteQueueCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
|
|
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
|
+
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
|
+
export declare class DescribeEndpointsCommand extends $Command<
|
|
23
|
+
DescribeEndpointsCommandInput,
|
|
24
|
+
DescribeEndpointsCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEndpointsCommandInput;
|
|
28
|
+
constructor(input: DescribeEndpointsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
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
|
+
export declare class DisassociateCertificateCommand extends $Command<
|
|
23
|
+
DisassociateCertificateCommandInput,
|
|
24
|
+
DisassociateCertificateCommandOutput,
|
|
25
|
+
MediaConvertClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateCertificateCommandInput;
|
|
28
|
+
constructor(input: DisassociateCertificateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateCertificateCommandInput,
|
|
35
|
+
DisassociateCertificateCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
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 { GetJobRequest, GetJobResponse } from "../models/models_1";
|
|
14
|
+
export interface GetJobCommandInput extends GetJobRequest {}
|
|
15
|
+
export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
|
|
16
|
+
export declare class GetJobCommand extends $Command<
|
|
17
|
+
GetJobCommandInput,
|
|
18
|
+
GetJobCommandOutput,
|
|
19
|
+
MediaConvertClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: GetJobCommandInput;
|
|
22
|
+
constructor(input: GetJobCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<GetJobCommandInput, GetJobCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -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
|
+
GetJobTemplateRequest,
|
|
15
|
+
GetJobTemplateResponse,
|
|
16
|
+
} from "../models/models_1";
|
|
17
|
+
export interface GetJobTemplateCommandInput extends GetJobTemplateRequest {}
|
|
18
|
+
export interface GetJobTemplateCommandOutput
|
|
19
|
+
extends GetJobTemplateResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetJobTemplateCommand extends $Command<
|
|
22
|
+
GetJobTemplateCommandInput,
|
|
23
|
+
GetJobTemplateCommandOutput,
|
|
24
|
+
MediaConvertClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetJobTemplateCommandInput;
|
|
27
|
+
constructor(input: GetJobTemplateCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetJobTemplateCommandInput, GetJobTemplateCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 { GetPolicyRequest, GetPolicyResponse } from "../models/models_1";
|
|
14
|
+
export interface GetPolicyCommandInput extends GetPolicyRequest {}
|
|
15
|
+
export interface GetPolicyCommandOutput
|
|
16
|
+
extends GetPolicyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetPolicyCommand extends $Command<
|
|
19
|
+
GetPolicyCommandInput,
|
|
20
|
+
GetPolicyCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetPolicyCommandInput;
|
|
24
|
+
constructor(input: GetPolicyCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
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 { GetPresetRequest, GetPresetResponse } from "../models/models_1";
|
|
14
|
+
export interface GetPresetCommandInput extends GetPresetRequest {}
|
|
15
|
+
export interface GetPresetCommandOutput
|
|
16
|
+
extends GetPresetResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetPresetCommand extends $Command<
|
|
19
|
+
GetPresetCommandInput,
|
|
20
|
+
GetPresetCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetPresetCommandInput;
|
|
24
|
+
constructor(input: GetPresetCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetPresetCommandInput, GetPresetCommandOutput>;
|
|
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 { GetQueueRequest, GetQueueResponse } from "../models/models_1";
|
|
14
|
+
export interface GetQueueCommandInput extends GetQueueRequest {}
|
|
15
|
+
export interface GetQueueCommandOutput
|
|
16
|
+
extends GetQueueResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetQueueCommand extends $Command<
|
|
19
|
+
GetQueueCommandInput,
|
|
20
|
+
GetQueueCommandOutput,
|
|
21
|
+
MediaConvertClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetQueueCommandInput;
|
|
24
|
+
constructor(input: GetQueueCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaConvertClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetQueueCommandInput, GetQueueCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|