@aws-sdk/client-mediaconvert 3.296.0 → 3.297.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 (41) hide show
  1. package/dist-types/MediaConvert.d.ts +29 -0
  2. package/dist-types/MediaConvertClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateCertificateCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateJobTemplateCommand.d.ts +16 -0
  7. package/dist-types/commands/CreatePresetCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateQueueCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteJobTemplateCommand.d.ts +16 -0
  10. package/dist-types/commands/DeletePolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeletePresetCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteQueueCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeEndpointsCommand.d.ts +16 -0
  14. package/dist-types/commands/DisassociateCertificateCommand.d.ts +16 -0
  15. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  16. package/dist-types/commands/GetJobTemplateCommand.d.ts +16 -0
  17. package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
  18. package/dist-types/commands/GetPresetCommand.d.ts +16 -0
  19. package/dist-types/commands/GetQueueCommand.d.ts +16 -0
  20. package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListJobsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListPresetsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListQueuesCommand.d.ts +16 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/PutPolicyCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateJobTemplateCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdatePresetCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateQueueCommand.d.ts +16 -0
  31. package/dist-types/models/MediaConvertServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +686 -0
  33. package/dist-types/models/models_1.d.ts +758 -0
  34. package/dist-types/models/models_2.d.ts +110 -0
  35. package/dist-types/pagination/DescribeEndpointsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListPresetsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListQueuesPaginator.d.ts +3 -0
  41. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_1";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePolicyCommand}.
8
10
  */
9
11
  export interface DeletePolicyCommandInput extends DeletePolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePolicyCommand}.
13
17
  */
14
18
  export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Permanently delete a policy that you created.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeletePolicyCommandInput - {@link DeletePolicyCommandInput}
34
+ * @returns {@link DeletePolicyCommandOutput}
28
35
  * @see {@link DeletePolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link DeletePolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeletePolicyCommandOutput extends DeletePolicyResponse, __Metad
52
59
  export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: DeletePolicyCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeletePolicyCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { DeletePresetRequest, DeletePresetResponse } from "../models/models_1";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePresetCommand}.
8
10
  */
9
11
  export interface DeletePresetCommandInput extends DeletePresetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePresetCommand}.
13
17
  */
14
18
  export interface DeletePresetCommandOutput extends DeletePresetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Permanently delete a preset you have created.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeletePresetCommandInput - {@link DeletePresetCommandInput}
34
+ * @returns {@link DeletePresetCommandOutput}
28
35
  * @see {@link DeletePresetCommandInput} for command's `input` shape.
29
36
  * @see {@link DeletePresetCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeletePresetCommandOutput extends DeletePresetResponse, __Metad
52
59
  export declare class DeletePresetCommand extends $Command<DeletePresetCommandInput, DeletePresetCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: DeletePresetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeletePresetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePresetCommandInput, DeletePresetCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_1";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteQueueCommand}.
8
10
  */
9
11
  export interface DeleteQueueCommandInput extends DeleteQueueRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteQueueCommand}.
13
17
  */
14
18
  export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Permanently delete a queue you have created.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteQueueCommandInput - {@link DeleteQueueCommandInput}
34
+ * @returns {@link DeleteQueueCommandOutput}
28
35
  * @see {@link DeleteQueueCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteQueueCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteQueueCommandOutput extends DeleteQueueResponse, __Metadat
52
59
  export declare class DeleteQueueCommand extends $Command<DeleteQueueCommandInput, DeleteQueueCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: DeleteQueueCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteQueueCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueueCommandInput, DeleteQueueCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_1";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeEndpointsCommand}.
8
10
  */
9
11
  export interface DescribeEndpointsCommandInput extends DescribeEndpointsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeEndpointsCommand}.
13
17
  */
14
18
  export interface DescribeEndpointsCommandOutput extends DescribeEndpointsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Send an request with an empty body to the regional API endpoint to get your account API endpoint.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeEndpointsCommandInput - {@link DescribeEndpointsCommandInput}
34
+ * @returns {@link DescribeEndpointsCommandOutput}
28
35
  * @see {@link DescribeEndpointsCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeEndpointsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
52
59
  export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: DescribeEndpointsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeEndpointsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { DisassociateCertificateRequest, DisassociateCertificateResponse } from "../models/models_1";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateCertificateCommand}.
8
10
  */
9
11
  export interface DisassociateCertificateCommandInput extends DisassociateCertificateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateCertificateCommand}.
13
17
  */
14
18
  export interface DisassociateCertificateCommandOutput extends DisassociateCertificateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Removes an association between the Amazon Resource Name (ARN) of an AWS Certificate Manager (ACM) certificate and an AWS Elemental MediaConvert resource.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DisassociateCertificateCommandOutput extends DisassociateCertif
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DisassociateCertificateCommandInput - {@link DisassociateCertificateCommandInput}
34
+ * @returns {@link DisassociateCertificateCommandOutput}
28
35
  * @see {@link DisassociateCertificateCommandInput} for command's `input` shape.
29
36
  * @see {@link DisassociateCertificateCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DisassociateCertificateCommandOutput extends DisassociateCertif
52
59
  export declare class DisassociateCertificateCommand extends $Command<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: DisassociateCertificateCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DisassociateCertificateCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateCertificateCommandInput, DisassociateCertificateCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -5,16 +5,21 @@ import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes
5
5
  import { GetJobRequest } from "../models/models_1";
6
6
  import { GetJobResponse } from "../models/models_2";
7
7
  /**
8
+ * @public
9
+ *
8
10
  * The input for {@link GetJobCommand}.
9
11
  */
10
12
  export interface GetJobCommandInput extends GetJobRequest {
11
13
  }
12
14
  /**
15
+ * @public
16
+ *
13
17
  * The output of {@link GetJobCommand}.
14
18
  */
15
19
  export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
16
20
  }
17
21
  /**
22
+ * @public
18
23
  * Retrieve the JSON for a specific completed transcoding job.
19
24
  * @example
20
25
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +31,8 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetJobCommandInput - {@link GetJobCommandInput}
35
+ * @returns {@link GetJobCommandOutput}
29
36
  * @see {@link GetJobCommandInput} for command's `input` shape.
30
37
  * @see {@link GetJobCommandOutput} for command's `response` shape.
31
38
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
53
60
  export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, MediaConvertClientResolvedConfig> {
54
61
  readonly input: GetJobCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetJobCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { GetJobTemplateRequest, GetJobTemplateResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetJobTemplateCommand}.
8
10
  */
9
11
  export interface GetJobTemplateCommandInput extends GetJobTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetJobTemplateCommand}.
13
17
  */
14
18
  export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve the JSON for a specific job template.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetJobTemplateCommandInput - {@link GetJobTemplateCommandInput}
34
+ * @returns {@link GetJobTemplateCommandOutput}
28
35
  * @see {@link GetJobTemplateCommandInput} for command's `input` shape.
29
36
  * @see {@link GetJobTemplateCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface GetJobTemplateCommandOutput extends GetJobTemplateResponse, __M
52
59
  export declare class GetJobTemplateCommand extends $Command<GetJobTemplateCommandInput, GetJobTemplateCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: GetJobTemplateCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: GetJobTemplateCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobTemplateCommandInput, GetJobTemplateCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { GetPolicyRequest, GetPolicyResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPolicyCommand}.
8
10
  */
9
11
  export interface GetPolicyCommandInput extends GetPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPolicyCommand}.
13
17
  */
14
18
  export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve the JSON for your policy.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetPolicyCommandInput - {@link GetPolicyCommandInput}
34
+ * @returns {@link GetPolicyCommandOutput}
28
35
  * @see {@link GetPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link GetPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
52
59
  export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: GetPolicyCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: GetPolicyCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { GetPresetRequest, GetPresetResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPresetCommand}.
8
10
  */
9
11
  export interface GetPresetCommandInput extends GetPresetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPresetCommand}.
13
17
  */
14
18
  export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve the JSON for a specific preset.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetPresetCommandInput - {@link GetPresetCommandInput}
34
+ * @returns {@link GetPresetCommandOutput}
28
35
  * @see {@link GetPresetCommandInput} for command's `input` shape.
29
36
  * @see {@link GetPresetCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface GetPresetCommandOutput extends GetPresetResponse, __MetadataBea
52
59
  export declare class GetPresetCommand extends $Command<GetPresetCommandInput, GetPresetCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: GetPresetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: GetPresetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPresetCommandInput, GetPresetCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { GetQueueRequest, GetQueueResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetQueueCommand}.
8
10
  */
9
11
  export interface GetQueueCommandInput extends GetQueueRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetQueueCommand}.
13
17
  */
14
18
  export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve the JSON for a specific queue.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetQueueCommandInput - {@link GetQueueCommandInput}
34
+ * @returns {@link GetQueueCommandOutput}
28
35
  * @see {@link GetQueueCommandInput} for command's `input` shape.
29
36
  * @see {@link GetQueueCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface GetQueueCommandOutput extends GetQueueResponse, __MetadataBeare
52
59
  export declare class GetQueueCommand extends $Command<GetQueueCommandInput, GetQueueCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: GetQueueCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: GetQueueCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQueueCommandInput, GetQueueCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListJobTemplatesCommand}.
8
10
  */
9
11
  export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListJobTemplatesCommand}.
13
17
  */
14
18
  export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve a JSON array of up to twenty of your job templates. This will return the templates themselves, not just a list of them. To retrieve the next twenty templates, use the nextToken string returned with the array
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListJobTemplatesCommandInput - {@link ListJobTemplatesCommandInput}
34
+ * @returns {@link ListJobTemplatesCommandOutput}
28
35
  * @see {@link ListJobTemplatesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListJobTemplatesCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
52
59
  export declare class ListJobTemplatesCommand extends $Command<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: ListJobTemplatesCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListJobTemplatesCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { ListJobsRequest, ListJobsResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListJobsCommand}.
8
10
  */
9
11
  export interface ListJobsCommandInput extends ListJobsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListJobsCommand}.
13
17
  */
14
18
  export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve a JSON array of up to twenty of your most recently created jobs. This array includes in-process, completed, and errored jobs. This will return the jobs themselves, not just a list of the jobs. To retrieve the twenty next most recent jobs, use the nextToken string returned with the array.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListJobsCommandInput - {@link ListJobsCommandInput}
34
+ * @returns {@link ListJobsCommandOutput}
28
35
  * @see {@link ListJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
52
59
  export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: ListJobsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListJobsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient";
5
5
  import { ListPresetsRequest, ListPresetsResponse } from "../models/models_2";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPresetsCommand}.
8
10
  */
9
11
  export interface ListPresetsCommandInput extends ListPresetsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPresetsCommand}.
13
17
  */
14
18
  export interface ListPresetsCommandOutput extends ListPresetsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Retrieve a JSON array of up to twenty of your presets. This will return the presets themselves, not just a list of them. To retrieve the next twenty presets, use the nextToken string returned with the array.
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListPresetsCommandOutput extends ListPresetsResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPresetsCommandInput - {@link ListPresetsCommandInput}
34
+ * @returns {@link ListPresetsCommandOutput}
28
35
  * @see {@link ListPresetsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPresetsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaConvertClientResolvedConfig | config} for MediaConvertClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListPresetsCommandOutput extends ListPresetsResponse, __Metadat
52
59
  export declare class ListPresetsCommand extends $Command<ListPresetsCommandInput, ListPresetsCommandOutput, MediaConvertClientResolvedConfig> {
53
60
  readonly input: ListPresetsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListPresetsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConvertClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPresetsCommandInput, ListPresetsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }