@aws-sdk/client-ivs 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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Ivs.d.ts +508 -145
- package/dist-types/ts3.4/IvsClient.d.ts +296 -101
- package/dist-types/ts3.4/commands/BatchGetChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/BatchGetStreamKeyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateRecordingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateStreamKeyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeletePlaybackKeyPairCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteRecordingConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteStreamKeyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetPlaybackKeyPairCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetRecordingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetStreamKeyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ImportPlaybackKeyPairCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListPlaybackKeyPairsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRecordingConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListStreamKeysCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutMetadataCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StopStreamCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +37 -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/IvsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +868 -789
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPlaybackKeyPairsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecordingConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListStreamKeysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListStreamsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateStreamKeyRequest,
|
|
15
|
+
CreateStreamKeyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateStreamKeyCommandInput extends CreateStreamKeyRequest {}
|
|
18
|
+
export interface CreateStreamKeyCommandOutput
|
|
19
|
+
extends CreateStreamKeyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateStreamKeyCommand extends $Command<
|
|
23
|
+
CreateStreamKeyCommandInput,
|
|
24
|
+
CreateStreamKeyCommandOutput,
|
|
25
|
+
IvsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateStreamKeyCommandInput;
|
|
28
|
+
constructor(input: CreateStreamKeyCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IvsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateStreamKeyCommandInput, CreateStreamKeyCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import { DeleteChannelRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteChannelCommandInput extends DeleteChannelRequest {}
|
|
15
|
+
export interface DeleteChannelCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteChannelCommand extends $Command<
|
|
18
|
+
DeleteChannelCommandInput,
|
|
19
|
+
DeleteChannelCommandOutput,
|
|
20
|
+
IvsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteChannelCommandInput;
|
|
23
|
+
constructor(input: DeleteChannelCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IvsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteChannelCommandInput, DeleteChannelCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import {
|
|
14
|
+
DeletePlaybackKeyPairRequest,
|
|
15
|
+
DeletePlaybackKeyPairResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeletePlaybackKeyPairCommandInput
|
|
18
|
+
extends DeletePlaybackKeyPairRequest {}
|
|
19
|
+
export interface DeletePlaybackKeyPairCommandOutput
|
|
20
|
+
extends DeletePlaybackKeyPairResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeletePlaybackKeyPairCommand extends $Command<
|
|
24
|
+
DeletePlaybackKeyPairCommandInput,
|
|
25
|
+
DeletePlaybackKeyPairCommandOutput,
|
|
26
|
+
IvsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeletePlaybackKeyPairCommandInput;
|
|
29
|
+
constructor(input: DeletePlaybackKeyPairCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IvsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeletePlaybackKeyPairCommandInput,
|
|
37
|
+
DeletePlaybackKeyPairCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import { DeleteRecordingConfigurationRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteRecordingConfigurationCommandInput
|
|
15
|
+
extends DeleteRecordingConfigurationRequest {}
|
|
16
|
+
export interface DeleteRecordingConfigurationCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteRecordingConfigurationCommand extends $Command<
|
|
20
|
+
DeleteRecordingConfigurationCommandInput,
|
|
21
|
+
DeleteRecordingConfigurationCommandOutput,
|
|
22
|
+
IvsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteRecordingConfigurationCommandInput;
|
|
25
|
+
constructor(input: DeleteRecordingConfigurationCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IvsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteRecordingConfigurationCommandInput,
|
|
33
|
+
DeleteRecordingConfigurationCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import { DeleteStreamKeyRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteStreamKeyCommandInput extends DeleteStreamKeyRequest {}
|
|
15
|
+
export interface DeleteStreamKeyCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteStreamKeyCommand extends $Command<
|
|
18
|
+
DeleteStreamKeyCommandInput,
|
|
19
|
+
DeleteStreamKeyCommandOutput,
|
|
20
|
+
IvsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteStreamKeyCommandInput;
|
|
23
|
+
constructor(input: DeleteStreamKeyCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IvsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteStreamKeyCommandInput, DeleteStreamKeyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import { GetChannelRequest, GetChannelResponse } from "../models/models_0";
|
|
14
|
+
export interface GetChannelCommandInput extends GetChannelRequest {}
|
|
15
|
+
export interface GetChannelCommandOutput
|
|
16
|
+
extends GetChannelResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetChannelCommand extends $Command<
|
|
20
|
+
GetChannelCommandInput,
|
|
21
|
+
GetChannelCommandOutput,
|
|
22
|
+
IvsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetChannelCommandInput;
|
|
25
|
+
constructor(input: GetChannelCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IvsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetChannelCommandInput, GetChannelCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import {
|
|
14
|
+
GetPlaybackKeyPairRequest,
|
|
15
|
+
GetPlaybackKeyPairResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetPlaybackKeyPairCommandInput
|
|
18
|
+
extends GetPlaybackKeyPairRequest {}
|
|
19
|
+
export interface GetPlaybackKeyPairCommandOutput
|
|
20
|
+
extends GetPlaybackKeyPairResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetPlaybackKeyPairCommand extends $Command<
|
|
24
|
+
GetPlaybackKeyPairCommandInput,
|
|
25
|
+
GetPlaybackKeyPairCommandOutput,
|
|
26
|
+
IvsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetPlaybackKeyPairCommandInput;
|
|
29
|
+
constructor(input: GetPlaybackKeyPairCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IvsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetPlaybackKeyPairCommandInput, GetPlaybackKeyPairCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import {
|
|
14
|
+
GetRecordingConfigurationRequest,
|
|
15
|
+
GetRecordingConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRecordingConfigurationCommandInput
|
|
18
|
+
extends GetRecordingConfigurationRequest {}
|
|
19
|
+
export interface GetRecordingConfigurationCommandOutput
|
|
20
|
+
extends GetRecordingConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetRecordingConfigurationCommand extends $Command<
|
|
24
|
+
GetRecordingConfigurationCommandInput,
|
|
25
|
+
GetRecordingConfigurationCommandOutput,
|
|
26
|
+
IvsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetRecordingConfigurationCommandInput;
|
|
29
|
+
constructor(input: GetRecordingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IvsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetRecordingConfigurationCommandInput,
|
|
37
|
+
GetRecordingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import { GetStreamRequest, GetStreamResponse } from "../models/models_0";
|
|
14
|
+
export interface GetStreamCommandInput extends GetStreamRequest {}
|
|
15
|
+
export interface GetStreamCommandOutput
|
|
16
|
+
extends GetStreamResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetStreamCommand extends $Command<
|
|
20
|
+
GetStreamCommandInput,
|
|
21
|
+
GetStreamCommandOutput,
|
|
22
|
+
IvsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetStreamCommandInput;
|
|
25
|
+
constructor(input: GetStreamCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IvsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetStreamCommandInput, GetStreamCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import { GetStreamKeyRequest, GetStreamKeyResponse } from "../models/models_0";
|
|
14
|
+
export interface GetStreamKeyCommandInput extends GetStreamKeyRequest {}
|
|
15
|
+
export interface GetStreamKeyCommandOutput
|
|
16
|
+
extends GetStreamKeyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetStreamKeyCommand extends $Command<
|
|
20
|
+
GetStreamKeyCommandInput,
|
|
21
|
+
GetStreamKeyCommandOutput,
|
|
22
|
+
IvsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetStreamKeyCommandInput;
|
|
25
|
+
constructor(input: GetStreamKeyCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IvsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetStreamKeyCommandInput, GetStreamKeyCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
IvsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IvsClient";
|
|
13
|
+
import {
|
|
14
|
+
GetStreamSessionRequest,
|
|
15
|
+
GetStreamSessionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetStreamSessionCommandInput extends GetStreamSessionRequest {}
|
|
18
|
+
export interface GetStreamSessionCommandOutput
|
|
19
|
+
extends GetStreamSessionResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetStreamSessionCommand extends $Command<
|
|
23
|
+
GetStreamSessionCommandInput,
|
|
24
|
+
GetStreamSessionCommandOutput,
|
|
25
|
+
IvsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetStreamSessionCommandInput;
|
|
28
|
+
constructor(input: GetStreamSessionCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IvsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetStreamSessionCommandInput, GetStreamSessionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|