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