@aws-sdk/client-chime-sdk-media-pipelines 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/ChimeSDKMediaPipelines.d.ts +208 -65
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +177 -85
- package/dist-types/ts3.4/commands/CreateMediaCapturePipelineCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateMediaConcatenationPipelineCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteMediaCapturePipelineCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteMediaPipelineCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/GetMediaCapturePipelineCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetMediaPipelineCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListMediaCapturePipelinesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListMediaPipelinesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -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/index.d.ts +12 -12
- 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/ChimeSDKMediaPipelinesServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +568 -678
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListMediaCapturePipelinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMediaPipelinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -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
|
+
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
|
+
export declare class CreateMediaConcatenationPipelineCommand extends $Command<
|
|
23
|
+
CreateMediaConcatenationPipelineCommandInput,
|
|
24
|
+
CreateMediaConcatenationPipelineCommandOutput,
|
|
25
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateMediaConcatenationPipelineCommandInput;
|
|
28
|
+
constructor(input: CreateMediaConcatenationPipelineCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateMediaConcatenationPipelineCommandInput,
|
|
35
|
+
CreateMediaConcatenationPipelineCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class CreateMediaLiveConnectorPipelineCommand extends $Command<
|
|
23
|
+
CreateMediaLiveConnectorPipelineCommandInput,
|
|
24
|
+
CreateMediaLiveConnectorPipelineCommandOutput,
|
|
25
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateMediaLiveConnectorPipelineCommandInput;
|
|
28
|
+
constructor(input: CreateMediaLiveConnectorPipelineCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateMediaLiveConnectorPipelineCommandInput,
|
|
35
|
+
CreateMediaLiveConnectorPipelineCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class DeleteMediaCapturePipelineCommand extends $Command<
|
|
19
|
+
DeleteMediaCapturePipelineCommandInput,
|
|
20
|
+
DeleteMediaCapturePipelineCommandOutput,
|
|
21
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteMediaCapturePipelineCommandInput;
|
|
24
|
+
constructor(input: DeleteMediaCapturePipelineCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
DeleteMediaCapturePipelineCommandInput,
|
|
31
|
+
DeleteMediaCapturePipelineCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,31 @@
|
|
|
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
|
+
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
|
+
export declare class DeleteMediaPipelineCommand extends $Command<
|
|
18
|
+
DeleteMediaPipelineCommandInput,
|
|
19
|
+
DeleteMediaPipelineCommandOutput,
|
|
20
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteMediaPipelineCommandInput;
|
|
23
|
+
constructor(input: DeleteMediaPipelineCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<DeleteMediaPipelineCommandInput, DeleteMediaPipelineCommandOutput>;
|
|
29
|
+
private serialize;
|
|
30
|
+
private deserialize;
|
|
31
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class GetMediaCapturePipelineCommand extends $Command<
|
|
23
|
+
GetMediaCapturePipelineCommandInput,
|
|
24
|
+
GetMediaCapturePipelineCommandOutput,
|
|
25
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetMediaCapturePipelineCommandInput;
|
|
28
|
+
constructor(input: GetMediaCapturePipelineCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetMediaCapturePipelineCommandInput,
|
|
35
|
+
GetMediaCapturePipelineCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class GetMediaPipelineCommand extends $Command<
|
|
22
|
+
GetMediaPipelineCommandInput,
|
|
23
|
+
GetMediaPipelineCommandOutput,
|
|
24
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetMediaPipelineCommandInput;
|
|
27
|
+
constructor(input: GetMediaPipelineCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetMediaPipelineCommandInput, GetMediaPipelineCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class ListMediaCapturePipelinesCommand extends $Command<
|
|
23
|
+
ListMediaCapturePipelinesCommandInput,
|
|
24
|
+
ListMediaCapturePipelinesCommandOutput,
|
|
25
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListMediaCapturePipelinesCommandInput;
|
|
28
|
+
constructor(input: ListMediaCapturePipelinesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListMediaCapturePipelinesCommandInput,
|
|
35
|
+
ListMediaCapturePipelinesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class ListMediaPipelinesCommand extends $Command<
|
|
23
|
+
ListMediaPipelinesCommandInput,
|
|
24
|
+
ListMediaPipelinesCommandOutput,
|
|
25
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListMediaPipelinesCommandInput;
|
|
28
|
+
constructor(input: ListMediaPipelinesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
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
|
+
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
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
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
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export * from "./CreateMediaCapturePipelineCommand";
|
|
2
|
-
export * from "./CreateMediaConcatenationPipelineCommand";
|
|
3
|
-
export * from "./CreateMediaLiveConnectorPipelineCommand";
|
|
4
|
-
export * from "./DeleteMediaCapturePipelineCommand";
|
|
5
|
-
export * from "./DeleteMediaPipelineCommand";
|
|
6
|
-
export * from "./GetMediaCapturePipelineCommand";
|
|
7
|
-
export * from "./GetMediaPipelineCommand";
|
|
8
|
-
export * from "./ListMediaCapturePipelinesCommand";
|
|
9
|
-
export * from "./ListMediaPipelinesCommand";
|
|
10
|
-
export * from "./ListTagsForResourceCommand";
|
|
11
|
-
export * from "./TagResourceCommand";
|
|
12
|
-
export * from "./UntagResourceCommand";
|
|
1
|
+
export * from "./CreateMediaCapturePipelineCommand";
|
|
2
|
+
export * from "./CreateMediaConcatenationPipelineCommand";
|
|
3
|
+
export * from "./CreateMediaLiveConnectorPipelineCommand";
|
|
4
|
+
export * from "./DeleteMediaCapturePipelineCommand";
|
|
5
|
+
export * from "./DeleteMediaPipelineCommand";
|
|
6
|
+
export * from "./GetMediaCapturePipelineCommand";
|
|
7
|
+
export * from "./GetMediaPipelineCommand";
|
|
8
|
+
export * from "./ListMediaCapturePipelinesCommand";
|
|
9
|
+
export * from "./ListMediaPipelinesCommand";
|
|
10
|
+
export * from "./ListTagsForResourceCommand";
|
|
11
|
+
export * from "./TagResourceCommand";
|
|
12
|
+
export * from "./UntagResourceCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|