@aws-sdk/client-ivs-realtime 3.450.0 → 3.453.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/README.md +184 -5
- package/dist-cjs/IVSRealTime.js +24 -0
- package/dist-cjs/commands/CreateEncoderConfigurationCommand.js +51 -0
- package/dist-cjs/commands/CreateStorageConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteEncoderConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteStorageConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetCompositionCommand.js +51 -0
- package/dist-cjs/commands/GetEncoderConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetStorageConfigurationCommand.js +51 -0
- package/dist-cjs/commands/ListCompositionsCommand.js +51 -0
- package/dist-cjs/commands/ListEncoderConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/ListStorageConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/StartCompositionCommand.js +51 -0
- package/dist-cjs/commands/StopCompositionCommand.js +51 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/models/models_0.js +51 -33
- package/dist-cjs/pagination/ListCompositionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListEncoderConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/ListStorageConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1036 -101
- package/dist-es/IVSRealTime.js +24 -0
- package/dist-es/commands/CreateEncoderConfigurationCommand.js +47 -0
- package/dist-es/commands/CreateStorageConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteEncoderConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteStorageConfigurationCommand.js +47 -0
- package/dist-es/commands/GetCompositionCommand.js +47 -0
- package/dist-es/commands/GetEncoderConfigurationCommand.js +47 -0
- package/dist-es/commands/GetStorageConfigurationCommand.js +47 -0
- package/dist-es/commands/ListCompositionsCommand.js +47 -0
- package/dist-es/commands/ListEncoderConfigurationsCommand.js +47 -0
- package/dist-es/commands/ListStorageConfigurationsCommand.js +47 -0
- package/dist-es/commands/StartCompositionCommand.js +47 -0
- package/dist-es/commands/StopCompositionCommand.js +47 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/models_0.js +48 -30
- package/dist-es/pagination/ListCompositionsPaginator.js +25 -0
- package/dist-es/pagination/ListEncoderConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/ListStorageConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1002 -92
- package/dist-types/IVSRealTime.d.ts +172 -5
- package/dist-types/IVSRealTimeClient.d.ts +102 -7
- package/dist-types/commands/CreateEncoderConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/CreateStorageConfigurationCommand.d.ts +111 -0
- package/dist-types/commands/DeleteEncoderConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/DeleteStorageConfigurationCommand.d.ts +92 -0
- package/dist-types/commands/GetCompositionCommand.d.ts +134 -0
- package/dist-types/commands/GetEncoderConfigurationCommand.d.ts +103 -0
- package/dist-types/commands/GetStorageConfigurationCommand.d.ts +100 -0
- package/dist-types/commands/ListCompositionsCommand.d.ts +112 -0
- package/dist-types/commands/ListEncoderConfigurationsCommand.d.ts +99 -0
- package/dist-types/commands/ListStorageConfigurationsCommand.d.ts +102 -0
- package/dist-types/commands/StartCompositionCommand.d.ts +187 -0
- package/dist-types/commands/StopCompositionCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/index.d.ts +88 -5
- package/dist-types/models/models_0.d.ts +908 -92
- package/dist-types/pagination/ListCompositionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEncoderConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListStorageConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +108 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +204 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateEncoderConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateStorageConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteEncoderConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteStorageConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCompositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetEncoderConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetStorageConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCompositionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListEncoderConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListStorageConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartCompositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StopCompositionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +234 -34
- package/dist-types/ts3.4/pagination/ListCompositionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEncoderConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListStorageConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +144 -0
- package/package.json +38 -36
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateEncoderConfigurationRequest,
|
|
16
|
+
CreateEncoderConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateEncoderConfigurationCommandInput
|
|
20
|
+
extends CreateEncoderConfigurationRequest {}
|
|
21
|
+
export interface CreateEncoderConfigurationCommandOutput
|
|
22
|
+
extends CreateEncoderConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateEncoderConfigurationCommand extends $Command<
|
|
25
|
+
CreateEncoderConfigurationCommandInput,
|
|
26
|
+
CreateEncoderConfigurationCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateEncoderConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateEncoderConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateEncoderConfigurationCommandInput,
|
|
38
|
+
CreateEncoderConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateStorageConfigurationRequest,
|
|
16
|
+
CreateStorageConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateStorageConfigurationCommandInput
|
|
20
|
+
extends CreateStorageConfigurationRequest {}
|
|
21
|
+
export interface CreateStorageConfigurationCommandOutput
|
|
22
|
+
extends CreateStorageConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateStorageConfigurationCommand extends $Command<
|
|
25
|
+
CreateStorageConfigurationCommandInput,
|
|
26
|
+
CreateStorageConfigurationCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateStorageConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateStorageConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateStorageConfigurationCommandInput,
|
|
38
|
+
CreateStorageConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteEncoderConfigurationRequest,
|
|
16
|
+
DeleteEncoderConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteEncoderConfigurationCommandInput
|
|
20
|
+
extends DeleteEncoderConfigurationRequest {}
|
|
21
|
+
export interface DeleteEncoderConfigurationCommandOutput
|
|
22
|
+
extends DeleteEncoderConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteEncoderConfigurationCommand extends $Command<
|
|
25
|
+
DeleteEncoderConfigurationCommandInput,
|
|
26
|
+
DeleteEncoderConfigurationCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteEncoderConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteEncoderConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeleteEncoderConfigurationCommandInput,
|
|
38
|
+
DeleteEncoderConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteStorageConfigurationRequest,
|
|
16
|
+
DeleteStorageConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteStorageConfigurationCommandInput
|
|
20
|
+
extends DeleteStorageConfigurationRequest {}
|
|
21
|
+
export interface DeleteStorageConfigurationCommandOutput
|
|
22
|
+
extends DeleteStorageConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteStorageConfigurationCommand extends $Command<
|
|
25
|
+
DeleteStorageConfigurationCommandInput,
|
|
26
|
+
DeleteStorageConfigurationCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteStorageConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteStorageConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeleteStorageConfigurationCommandInput,
|
|
38
|
+
DeleteStorageConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
GetCompositionRequest,
|
|
16
|
+
GetCompositionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetCompositionCommandInput extends GetCompositionRequest {}
|
|
20
|
+
export interface GetCompositionCommandOutput
|
|
21
|
+
extends GetCompositionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetCompositionCommand extends $Command<
|
|
24
|
+
GetCompositionCommandInput,
|
|
25
|
+
GetCompositionCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetCompositionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetCompositionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetCompositionCommandInput, GetCompositionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
GetEncoderConfigurationRequest,
|
|
16
|
+
GetEncoderConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetEncoderConfigurationCommandInput
|
|
20
|
+
extends GetEncoderConfigurationRequest {}
|
|
21
|
+
export interface GetEncoderConfigurationCommandOutput
|
|
22
|
+
extends GetEncoderConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetEncoderConfigurationCommand extends $Command<
|
|
25
|
+
GetEncoderConfigurationCommandInput,
|
|
26
|
+
GetEncoderConfigurationCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetEncoderConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetEncoderConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetEncoderConfigurationCommandInput,
|
|
38
|
+
GetEncoderConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
GetStorageConfigurationRequest,
|
|
16
|
+
GetStorageConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetStorageConfigurationCommandInput
|
|
20
|
+
extends GetStorageConfigurationRequest {}
|
|
21
|
+
export interface GetStorageConfigurationCommandOutput
|
|
22
|
+
extends GetStorageConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetStorageConfigurationCommand extends $Command<
|
|
25
|
+
GetStorageConfigurationCommandInput,
|
|
26
|
+
GetStorageConfigurationCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetStorageConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetStorageConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetStorageConfigurationCommandInput,
|
|
38
|
+
GetStorageConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
ListCompositionsRequest,
|
|
16
|
+
ListCompositionsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListCompositionsCommandInput extends ListCompositionsRequest {}
|
|
20
|
+
export interface ListCompositionsCommandOutput
|
|
21
|
+
extends ListCompositionsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListCompositionsCommand extends $Command<
|
|
24
|
+
ListCompositionsCommandInput,
|
|
25
|
+
ListCompositionsCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListCompositionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListCompositionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListCompositionsCommandInput, ListCompositionsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
ListEncoderConfigurationsRequest,
|
|
16
|
+
ListEncoderConfigurationsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListEncoderConfigurationsCommandInput
|
|
20
|
+
extends ListEncoderConfigurationsRequest {}
|
|
21
|
+
export interface ListEncoderConfigurationsCommandOutput
|
|
22
|
+
extends ListEncoderConfigurationsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListEncoderConfigurationsCommand extends $Command<
|
|
25
|
+
ListEncoderConfigurationsCommandInput,
|
|
26
|
+
ListEncoderConfigurationsCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListEncoderConfigurationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListEncoderConfigurationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListEncoderConfigurationsCommandInput,
|
|
38
|
+
ListEncoderConfigurationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
ListStorageConfigurationsRequest,
|
|
16
|
+
ListStorageConfigurationsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListStorageConfigurationsCommandInput
|
|
20
|
+
extends ListStorageConfigurationsRequest {}
|
|
21
|
+
export interface ListStorageConfigurationsCommandOutput
|
|
22
|
+
extends ListStorageConfigurationsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListStorageConfigurationsCommand extends $Command<
|
|
25
|
+
ListStorageConfigurationsCommandInput,
|
|
26
|
+
ListStorageConfigurationsCommandOutput,
|
|
27
|
+
IVSRealTimeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListStorageConfigurationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListStorageConfigurationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListStorageConfigurationsCommandInput,
|
|
38
|
+
ListStorageConfigurationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
StartCompositionRequest,
|
|
16
|
+
StartCompositionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartCompositionCommandInput extends StartCompositionRequest {}
|
|
20
|
+
export interface StartCompositionCommandOutput
|
|
21
|
+
extends StartCompositionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class StartCompositionCommand extends $Command<
|
|
24
|
+
StartCompositionCommandInput,
|
|
25
|
+
StartCompositionCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartCompositionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StartCompositionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StartCompositionCommandInput, StartCompositionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IVSRealTimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IVSRealTimeClient";
|
|
14
|
+
import {
|
|
15
|
+
StopCompositionRequest,
|
|
16
|
+
StopCompositionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StopCompositionCommandInput extends StopCompositionRequest {}
|
|
20
|
+
export interface StopCompositionCommandOutput
|
|
21
|
+
extends StopCompositionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class StopCompositionCommand extends $Command<
|
|
24
|
+
StopCompositionCommandInput,
|
|
25
|
+
StopCompositionCommandOutput,
|
|
26
|
+
IVSRealTimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StopCompositionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StopCompositionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IVSRealTimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StopCompositionCommandInput, StopCompositionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,15 +1,27 @@
|
|
|
1
|
+
export * from "./CreateEncoderConfigurationCommand";
|
|
1
2
|
export * from "./CreateParticipantTokenCommand";
|
|
2
3
|
export * from "./CreateStageCommand";
|
|
4
|
+
export * from "./CreateStorageConfigurationCommand";
|
|
5
|
+
export * from "./DeleteEncoderConfigurationCommand";
|
|
3
6
|
export * from "./DeleteStageCommand";
|
|
7
|
+
export * from "./DeleteStorageConfigurationCommand";
|
|
4
8
|
export * from "./DisconnectParticipantCommand";
|
|
9
|
+
export * from "./GetCompositionCommand";
|
|
10
|
+
export * from "./GetEncoderConfigurationCommand";
|
|
5
11
|
export * from "./GetParticipantCommand";
|
|
6
12
|
export * from "./GetStageCommand";
|
|
7
13
|
export * from "./GetStageSessionCommand";
|
|
14
|
+
export * from "./GetStorageConfigurationCommand";
|
|
15
|
+
export * from "./ListCompositionsCommand";
|
|
16
|
+
export * from "./ListEncoderConfigurationsCommand";
|
|
8
17
|
export * from "./ListParticipantEventsCommand";
|
|
9
18
|
export * from "./ListParticipantsCommand";
|
|
10
19
|
export * from "./ListStageSessionsCommand";
|
|
11
20
|
export * from "./ListStagesCommand";
|
|
21
|
+
export * from "./ListStorageConfigurationsCommand";
|
|
12
22
|
export * from "./ListTagsForResourceCommand";
|
|
23
|
+
export * from "./StartCompositionCommand";
|
|
24
|
+
export * from "./StopCompositionCommand";
|
|
13
25
|
export * from "./TagResourceCommand";
|
|
14
26
|
export * from "./UntagResourceCommand";
|
|
15
27
|
export * from "./UpdateStageCommand";
|