@aws-sdk/client-chime-sdk-media-pipelines 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 (31) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +220 -65
  3. package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +202 -85
  4. package/dist-types/ts3.4/commands/CreateMediaCapturePipelineCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateMediaConcatenationPipelineCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DeleteMediaCapturePipelineCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteMediaPipelineCommand.d.ts +33 -17
  9. package/dist-types/ts3.4/commands/GetMediaCapturePipelineCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/GetMediaPipelineCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListMediaCapturePipelinesCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListMediaPipelinesCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +6 -6
  19. package/dist-types/ts3.4/models/ChimeSDKMediaPipelinesServiceException.d.ts +8 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +752 -678
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/ListMediaCapturePipelinesPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/ListMediaPipelinesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  26. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  31. package/package.json +34 -34
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { CreateMediaConcatenationPipelineRequest, CreateMediaConcatenationPipelineResponse } from "../models/models_0";
5
- export interface CreateMediaConcatenationPipelineCommandInput extends CreateMediaConcatenationPipelineRequest {
6
- }
7
- export interface CreateMediaConcatenationPipelineCommandOutput extends CreateMediaConcatenationPipelineResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateMediaConcatenationPipelineCommand extends $Command<CreateMediaConcatenationPipelineCommandInput, CreateMediaConcatenationPipelineCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: CreateMediaConcatenationPipelineCommandInput;
12
- constructor(input: CreateMediaConcatenationPipelineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMediaConcatenationPipelineCommandInput, CreateMediaConcatenationPipelineCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ CreateMediaConcatenationPipelineRequest,
15
+ CreateMediaConcatenationPipelineResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateMediaConcatenationPipelineCommandInput
18
+ extends CreateMediaConcatenationPipelineRequest {}
19
+ export interface CreateMediaConcatenationPipelineCommandOutput
20
+ extends CreateMediaConcatenationPipelineResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateMediaConcatenationPipelineCommand extends $Command<
24
+ CreateMediaConcatenationPipelineCommandInput,
25
+ CreateMediaConcatenationPipelineCommandOutput,
26
+ ChimeSDKMediaPipelinesClientResolvedConfig
27
+ > {
28
+ readonly input: CreateMediaConcatenationPipelineCommandInput;
29
+ constructor(input: CreateMediaConcatenationPipelineCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateMediaConcatenationPipelineCommandInput,
37
+ CreateMediaConcatenationPipelineCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { CreateMediaLiveConnectorPipelineRequest, CreateMediaLiveConnectorPipelineResponse } from "../models/models_0";
5
- export interface CreateMediaLiveConnectorPipelineCommandInput extends CreateMediaLiveConnectorPipelineRequest {
6
- }
7
- export interface CreateMediaLiveConnectorPipelineCommandOutput extends CreateMediaLiveConnectorPipelineResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateMediaLiveConnectorPipelineCommand extends $Command<CreateMediaLiveConnectorPipelineCommandInput, CreateMediaLiveConnectorPipelineCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: CreateMediaLiveConnectorPipelineCommandInput;
12
- constructor(input: CreateMediaLiveConnectorPipelineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMediaLiveConnectorPipelineCommandInput, CreateMediaLiveConnectorPipelineCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ CreateMediaLiveConnectorPipelineRequest,
15
+ CreateMediaLiveConnectorPipelineResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateMediaLiveConnectorPipelineCommandInput
18
+ extends CreateMediaLiveConnectorPipelineRequest {}
19
+ export interface CreateMediaLiveConnectorPipelineCommandOutput
20
+ extends CreateMediaLiveConnectorPipelineResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateMediaLiveConnectorPipelineCommand extends $Command<
24
+ CreateMediaLiveConnectorPipelineCommandInput,
25
+ CreateMediaLiveConnectorPipelineCommandOutput,
26
+ ChimeSDKMediaPipelinesClientResolvedConfig
27
+ > {
28
+ readonly input: CreateMediaLiveConnectorPipelineCommandInput;
29
+ constructor(input: CreateMediaLiveConnectorPipelineCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateMediaLiveConnectorPipelineCommandInput,
37
+ CreateMediaLiveConnectorPipelineCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { DeleteMediaCapturePipelineRequest } from "../models/models_0";
5
- export interface DeleteMediaCapturePipelineCommandInput extends DeleteMediaCapturePipelineRequest {
6
- }
7
- export interface DeleteMediaCapturePipelineCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMediaCapturePipelineCommand extends $Command<DeleteMediaCapturePipelineCommandInput, DeleteMediaCapturePipelineCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: DeleteMediaCapturePipelineCommandInput;
12
- constructor(input: DeleteMediaCapturePipelineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMediaCapturePipelineCommandInput, DeleteMediaCapturePipelineCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import { DeleteMediaCapturePipelineRequest } from "../models/models_0";
14
+ export interface DeleteMediaCapturePipelineCommandInput
15
+ extends DeleteMediaCapturePipelineRequest {}
16
+ export interface DeleteMediaCapturePipelineCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class DeleteMediaCapturePipelineCommand extends $Command<
20
+ DeleteMediaCapturePipelineCommandInput,
21
+ DeleteMediaCapturePipelineCommandOutput,
22
+ ChimeSDKMediaPipelinesClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteMediaCapturePipelineCommandInput;
25
+ constructor(input: DeleteMediaCapturePipelineCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ DeleteMediaCapturePipelineCommandInput,
33
+ DeleteMediaCapturePipelineCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,33 @@
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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { DeleteMediaPipelineRequest } from "../models/models_0";
5
- export interface DeleteMediaPipelineCommandInput extends DeleteMediaPipelineRequest {
6
- }
7
- export interface DeleteMediaPipelineCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMediaPipelineCommand extends $Command<DeleteMediaPipelineCommandInput, DeleteMediaPipelineCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: DeleteMediaPipelineCommandInput;
12
- constructor(input: DeleteMediaPipelineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMediaPipelineCommandInput, DeleteMediaPipelineCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import { DeleteMediaPipelineRequest } from "../models/models_0";
14
+ export interface DeleteMediaPipelineCommandInput
15
+ extends DeleteMediaPipelineRequest {}
16
+ export interface DeleteMediaPipelineCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class DeleteMediaPipelineCommand extends $Command<
19
+ DeleteMediaPipelineCommandInput,
20
+ DeleteMediaPipelineCommandOutput,
21
+ ChimeSDKMediaPipelinesClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteMediaPipelineCommandInput;
24
+ constructor(input: DeleteMediaPipelineCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteMediaPipelineCommandInput, DeleteMediaPipelineCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { GetMediaCapturePipelineRequest, GetMediaCapturePipelineResponse } from "../models/models_0";
5
- export interface GetMediaCapturePipelineCommandInput extends GetMediaCapturePipelineRequest {
6
- }
7
- export interface GetMediaCapturePipelineCommandOutput extends GetMediaCapturePipelineResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetMediaCapturePipelineCommand extends $Command<GetMediaCapturePipelineCommandInput, GetMediaCapturePipelineCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: GetMediaCapturePipelineCommandInput;
12
- constructor(input: GetMediaCapturePipelineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMediaCapturePipelineCommandInput, GetMediaCapturePipelineCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ GetMediaCapturePipelineRequest,
15
+ GetMediaCapturePipelineResponse,
16
+ } from "../models/models_0";
17
+ export interface GetMediaCapturePipelineCommandInput
18
+ extends GetMediaCapturePipelineRequest {}
19
+ export interface GetMediaCapturePipelineCommandOutput
20
+ extends GetMediaCapturePipelineResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetMediaCapturePipelineCommand extends $Command<
24
+ GetMediaCapturePipelineCommandInput,
25
+ GetMediaCapturePipelineCommandOutput,
26
+ ChimeSDKMediaPipelinesClientResolvedConfig
27
+ > {
28
+ readonly input: GetMediaCapturePipelineCommandInput;
29
+ constructor(input: GetMediaCapturePipelineCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetMediaCapturePipelineCommandInput,
37
+ GetMediaCapturePipelineCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { GetMediaPipelineRequest, GetMediaPipelineResponse } from "../models/models_0";
5
- export interface GetMediaPipelineCommandInput extends GetMediaPipelineRequest {
6
- }
7
- export interface GetMediaPipelineCommandOutput extends GetMediaPipelineResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetMediaPipelineCommand extends $Command<GetMediaPipelineCommandInput, GetMediaPipelineCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: GetMediaPipelineCommandInput;
12
- constructor(input: GetMediaPipelineCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMediaPipelineCommandInput, GetMediaPipelineCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ GetMediaPipelineRequest,
15
+ GetMediaPipelineResponse,
16
+ } from "../models/models_0";
17
+ export interface GetMediaPipelineCommandInput extends GetMediaPipelineRequest {}
18
+ export interface GetMediaPipelineCommandOutput
19
+ extends GetMediaPipelineResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetMediaPipelineCommand extends $Command<
23
+ GetMediaPipelineCommandInput,
24
+ GetMediaPipelineCommandOutput,
25
+ ChimeSDKMediaPipelinesClientResolvedConfig
26
+ > {
27
+ readonly input: GetMediaPipelineCommandInput;
28
+ constructor(input: GetMediaPipelineCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetMediaPipelineCommandInput, GetMediaPipelineCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { ListMediaCapturePipelinesRequest, ListMediaCapturePipelinesResponse } from "../models/models_0";
5
- export interface ListMediaCapturePipelinesCommandInput extends ListMediaCapturePipelinesRequest {
6
- }
7
- export interface ListMediaCapturePipelinesCommandOutput extends ListMediaCapturePipelinesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListMediaCapturePipelinesCommand extends $Command<ListMediaCapturePipelinesCommandInput, ListMediaCapturePipelinesCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: ListMediaCapturePipelinesCommandInput;
12
- constructor(input: ListMediaCapturePipelinesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMediaCapturePipelinesCommandInput, ListMediaCapturePipelinesCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ ListMediaCapturePipelinesRequest,
15
+ ListMediaCapturePipelinesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListMediaCapturePipelinesCommandInput
18
+ extends ListMediaCapturePipelinesRequest {}
19
+ export interface ListMediaCapturePipelinesCommandOutput
20
+ extends ListMediaCapturePipelinesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListMediaCapturePipelinesCommand extends $Command<
24
+ ListMediaCapturePipelinesCommandInput,
25
+ ListMediaCapturePipelinesCommandOutput,
26
+ ChimeSDKMediaPipelinesClientResolvedConfig
27
+ > {
28
+ readonly input: ListMediaCapturePipelinesCommandInput;
29
+ constructor(input: ListMediaCapturePipelinesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListMediaCapturePipelinesCommandInput,
37
+ ListMediaCapturePipelinesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { ListMediaPipelinesRequest, ListMediaPipelinesResponse } from "../models/models_0";
5
- export interface ListMediaPipelinesCommandInput extends ListMediaPipelinesRequest {
6
- }
7
- export interface ListMediaPipelinesCommandOutput extends ListMediaPipelinesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListMediaPipelinesCommand extends $Command<ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: ListMediaPipelinesCommandInput;
12
- constructor(input: ListMediaPipelinesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput>;
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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ ListMediaPipelinesRequest,
15
+ ListMediaPipelinesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListMediaPipelinesCommandInput
18
+ extends ListMediaPipelinesRequest {}
19
+ export interface ListMediaPipelinesCommandOutput
20
+ extends ListMediaPipelinesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListMediaPipelinesCommand extends $Command<
24
+ ListMediaPipelinesCommandInput,
25
+ ListMediaPipelinesCommandOutput,
26
+ ChimeSDKMediaPipelinesClientResolvedConfig
27
+ > {
28
+ readonly input: ListMediaPipelinesCommandInput;
29
+ constructor(input: ListMediaPipelinesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
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, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, 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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
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
+ ChimeSDKMediaPipelinesClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
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, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, 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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
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
+ ChimeSDKMediaPipelinesClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
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 { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMediaPipelinesClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
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, ChimeSDKMediaPipelinesClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMediaPipelinesClientResolvedConfig, 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
+ ChimeSDKMediaPipelinesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ChimeSDKMediaPipelinesClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
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
+ ChimeSDKMediaPipelinesClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }