@aws-sdk/client-ivs-realtime 3.451.0 → 3.454.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 +5 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCompositionsCommandInput, ListCompositionsCommandOutput } from "../commands/ListCompositionsCommand";
|
|
3
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListCompositions(config: IVSRealTimePaginationConfiguration, input: ListCompositionsCommandInput, ...additionalArguments: any): Paginator<ListCompositionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEncoderConfigurationsCommandInput, ListEncoderConfigurationsCommandOutput } from "../commands/ListEncoderConfigurationsCommand";
|
|
3
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListEncoderConfigurations(config: IVSRealTimePaginationConfiguration, input: ListEncoderConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListEncoderConfigurationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListStorageConfigurationsCommandInput, ListStorageConfigurationsCommandOutput } from "../commands/ListStorageConfigurationsCommand";
|
|
3
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListStorageConfigurations(config: IVSRealTimePaginationConfiguration, input: ListStorageConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListStorageConfigurationsCommandOutput>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCompositionsPaginator";
|
|
3
|
+
export * from "./ListEncoderConfigurationsPaginator";
|
|
2
4
|
export * from "./ListParticipantEventsPaginator";
|
|
3
5
|
export * from "./ListParticipantsPaginator";
|
|
4
6
|
export * from "./ListStageSessionsPaginator";
|
|
5
7
|
export * from "./ListStagesPaginator";
|
|
8
|
+
export * from "./ListStorageConfigurationsPaginator";
|
|
@@ -1,20 +1,36 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateEncoderConfigurationCommandInput, CreateEncoderConfigurationCommandOutput } from "../commands/CreateEncoderConfigurationCommand";
|
|
3
4
|
import { CreateParticipantTokenCommandInput, CreateParticipantTokenCommandOutput } from "../commands/CreateParticipantTokenCommand";
|
|
4
5
|
import { CreateStageCommandInput, CreateStageCommandOutput } from "../commands/CreateStageCommand";
|
|
6
|
+
import { CreateStorageConfigurationCommandInput, CreateStorageConfigurationCommandOutput } from "../commands/CreateStorageConfigurationCommand";
|
|
7
|
+
import { DeleteEncoderConfigurationCommandInput, DeleteEncoderConfigurationCommandOutput } from "../commands/DeleteEncoderConfigurationCommand";
|
|
5
8
|
import { DeleteStageCommandInput, DeleteStageCommandOutput } from "../commands/DeleteStageCommand";
|
|
9
|
+
import { DeleteStorageConfigurationCommandInput, DeleteStorageConfigurationCommandOutput } from "../commands/DeleteStorageConfigurationCommand";
|
|
6
10
|
import { DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput } from "../commands/DisconnectParticipantCommand";
|
|
11
|
+
import { GetCompositionCommandInput, GetCompositionCommandOutput } from "../commands/GetCompositionCommand";
|
|
12
|
+
import { GetEncoderConfigurationCommandInput, GetEncoderConfigurationCommandOutput } from "../commands/GetEncoderConfigurationCommand";
|
|
7
13
|
import { GetParticipantCommandInput, GetParticipantCommandOutput } from "../commands/GetParticipantCommand";
|
|
8
14
|
import { GetStageCommandInput, GetStageCommandOutput } from "../commands/GetStageCommand";
|
|
9
15
|
import { GetStageSessionCommandInput, GetStageSessionCommandOutput } from "../commands/GetStageSessionCommand";
|
|
16
|
+
import { GetStorageConfigurationCommandInput, GetStorageConfigurationCommandOutput } from "../commands/GetStorageConfigurationCommand";
|
|
17
|
+
import { ListCompositionsCommandInput, ListCompositionsCommandOutput } from "../commands/ListCompositionsCommand";
|
|
18
|
+
import { ListEncoderConfigurationsCommandInput, ListEncoderConfigurationsCommandOutput } from "../commands/ListEncoderConfigurationsCommand";
|
|
10
19
|
import { ListParticipantEventsCommandInput, ListParticipantEventsCommandOutput } from "../commands/ListParticipantEventsCommand";
|
|
11
20
|
import { ListParticipantsCommandInput, ListParticipantsCommandOutput } from "../commands/ListParticipantsCommand";
|
|
12
21
|
import { ListStagesCommandInput, ListStagesCommandOutput } from "../commands/ListStagesCommand";
|
|
13
22
|
import { ListStageSessionsCommandInput, ListStageSessionsCommandOutput } from "../commands/ListStageSessionsCommand";
|
|
23
|
+
import { ListStorageConfigurationsCommandInput, ListStorageConfigurationsCommandOutput } from "../commands/ListStorageConfigurationsCommand";
|
|
14
24
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
25
|
+
import { StartCompositionCommandInput, StartCompositionCommandOutput } from "../commands/StartCompositionCommand";
|
|
26
|
+
import { StopCompositionCommandInput, StopCompositionCommandOutput } from "../commands/StopCompositionCommand";
|
|
15
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
16
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
17
29
|
import { UpdateStageCommandInput, UpdateStageCommandOutput } from "../commands/UpdateStageCommand";
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_restJson1CreateEncoderConfigurationCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_CreateEncoderConfigurationCommand: (input: CreateEncoderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
34
|
/**
|
|
19
35
|
* serializeAws_restJson1CreateParticipantTokenCommand
|
|
20
36
|
*/
|
|
@@ -23,14 +39,34 @@ export declare const se_CreateParticipantTokenCommand: (input: CreateParticipant
|
|
|
23
39
|
* serializeAws_restJson1CreateStageCommand
|
|
24
40
|
*/
|
|
25
41
|
export declare const se_CreateStageCommand: (input: CreateStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_restJson1CreateStorageConfigurationCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_CreateStorageConfigurationCommand: (input: CreateStorageConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_restJson1DeleteEncoderConfigurationCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_DeleteEncoderConfigurationCommand: (input: DeleteEncoderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
50
|
/**
|
|
27
51
|
* serializeAws_restJson1DeleteStageCommand
|
|
28
52
|
*/
|
|
29
53
|
export declare const se_DeleteStageCommand: (input: DeleteStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1DeleteStorageConfigurationCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_DeleteStorageConfigurationCommand: (input: DeleteStorageConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
58
|
/**
|
|
31
59
|
* serializeAws_restJson1DisconnectParticipantCommand
|
|
32
60
|
*/
|
|
33
61
|
export declare const se_DisconnectParticipantCommand: (input: DisconnectParticipantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_restJson1GetCompositionCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_GetCompositionCommand: (input: GetCompositionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* serializeAws_restJson1GetEncoderConfigurationCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const se_GetEncoderConfigurationCommand: (input: GetEncoderConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
70
|
/**
|
|
35
71
|
* serializeAws_restJson1GetParticipantCommand
|
|
36
72
|
*/
|
|
@@ -43,6 +79,18 @@ export declare const se_GetStageCommand: (input: GetStageCommandInput, context:
|
|
|
43
79
|
* serializeAws_restJson1GetStageSessionCommand
|
|
44
80
|
*/
|
|
45
81
|
export declare const se_GetStageSessionCommand: (input: GetStageSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
/**
|
|
83
|
+
* serializeAws_restJson1GetStorageConfigurationCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const se_GetStorageConfigurationCommand: (input: GetStorageConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
/**
|
|
87
|
+
* serializeAws_restJson1ListCompositionsCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const se_ListCompositionsCommand: (input: ListCompositionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
/**
|
|
91
|
+
* serializeAws_restJson1ListEncoderConfigurationsCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const se_ListEncoderConfigurationsCommand: (input: ListEncoderConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
94
|
/**
|
|
47
95
|
* serializeAws_restJson1ListParticipantEventsCommand
|
|
48
96
|
*/
|
|
@@ -59,10 +107,22 @@ export declare const se_ListStagesCommand: (input: ListStagesCommandInput, conte
|
|
|
59
107
|
* serializeAws_restJson1ListStageSessionsCommand
|
|
60
108
|
*/
|
|
61
109
|
export declare const se_ListStageSessionsCommand: (input: ListStageSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
+
/**
|
|
111
|
+
* serializeAws_restJson1ListStorageConfigurationsCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const se_ListStorageConfigurationsCommand: (input: ListStorageConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
114
|
/**
|
|
63
115
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
64
116
|
*/
|
|
65
117
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
/**
|
|
119
|
+
* serializeAws_restJson1StartCompositionCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const se_StartCompositionCommand: (input: StartCompositionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
|
+
/**
|
|
123
|
+
* serializeAws_restJson1StopCompositionCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const se_StopCompositionCommand: (input: StopCompositionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
126
|
/**
|
|
67
127
|
* serializeAws_restJson1TagResourceCommand
|
|
68
128
|
*/
|
|
@@ -75,6 +135,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
75
135
|
* serializeAws_restJson1UpdateStageCommand
|
|
76
136
|
*/
|
|
77
137
|
export declare const se_UpdateStageCommand: (input: UpdateStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
|
+
/**
|
|
139
|
+
* deserializeAws_restJson1CreateEncoderConfigurationCommand
|
|
140
|
+
*/
|
|
141
|
+
export declare const de_CreateEncoderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEncoderConfigurationCommandOutput>;
|
|
78
142
|
/**
|
|
79
143
|
* deserializeAws_restJson1CreateParticipantTokenCommand
|
|
80
144
|
*/
|
|
@@ -83,14 +147,34 @@ export declare const de_CreateParticipantTokenCommand: (output: __HttpResponse,
|
|
|
83
147
|
* deserializeAws_restJson1CreateStageCommand
|
|
84
148
|
*/
|
|
85
149
|
export declare const de_CreateStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStageCommandOutput>;
|
|
150
|
+
/**
|
|
151
|
+
* deserializeAws_restJson1CreateStorageConfigurationCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const de_CreateStorageConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStorageConfigurationCommandOutput>;
|
|
154
|
+
/**
|
|
155
|
+
* deserializeAws_restJson1DeleteEncoderConfigurationCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const de_DeleteEncoderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEncoderConfigurationCommandOutput>;
|
|
86
158
|
/**
|
|
87
159
|
* deserializeAws_restJson1DeleteStageCommand
|
|
88
160
|
*/
|
|
89
161
|
export declare const de_DeleteStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStageCommandOutput>;
|
|
162
|
+
/**
|
|
163
|
+
* deserializeAws_restJson1DeleteStorageConfigurationCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const de_DeleteStorageConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStorageConfigurationCommandOutput>;
|
|
90
166
|
/**
|
|
91
167
|
* deserializeAws_restJson1DisconnectParticipantCommand
|
|
92
168
|
*/
|
|
93
169
|
export declare const de_DisconnectParticipantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisconnectParticipantCommandOutput>;
|
|
170
|
+
/**
|
|
171
|
+
* deserializeAws_restJson1GetCompositionCommand
|
|
172
|
+
*/
|
|
173
|
+
export declare const de_GetCompositionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCompositionCommandOutput>;
|
|
174
|
+
/**
|
|
175
|
+
* deserializeAws_restJson1GetEncoderConfigurationCommand
|
|
176
|
+
*/
|
|
177
|
+
export declare const de_GetEncoderConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEncoderConfigurationCommandOutput>;
|
|
94
178
|
/**
|
|
95
179
|
* deserializeAws_restJson1GetParticipantCommand
|
|
96
180
|
*/
|
|
@@ -103,6 +187,18 @@ export declare const de_GetStageCommand: (output: __HttpResponse, context: __Ser
|
|
|
103
187
|
* deserializeAws_restJson1GetStageSessionCommand
|
|
104
188
|
*/
|
|
105
189
|
export declare const de_GetStageSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStageSessionCommandOutput>;
|
|
190
|
+
/**
|
|
191
|
+
* deserializeAws_restJson1GetStorageConfigurationCommand
|
|
192
|
+
*/
|
|
193
|
+
export declare const de_GetStorageConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStorageConfigurationCommandOutput>;
|
|
194
|
+
/**
|
|
195
|
+
* deserializeAws_restJson1ListCompositionsCommand
|
|
196
|
+
*/
|
|
197
|
+
export declare const de_ListCompositionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCompositionsCommandOutput>;
|
|
198
|
+
/**
|
|
199
|
+
* deserializeAws_restJson1ListEncoderConfigurationsCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const de_ListEncoderConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEncoderConfigurationsCommandOutput>;
|
|
106
202
|
/**
|
|
107
203
|
* deserializeAws_restJson1ListParticipantEventsCommand
|
|
108
204
|
*/
|
|
@@ -119,10 +215,22 @@ export declare const de_ListStagesCommand: (output: __HttpResponse, context: __S
|
|
|
119
215
|
* deserializeAws_restJson1ListStageSessionsCommand
|
|
120
216
|
*/
|
|
121
217
|
export declare const de_ListStageSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStageSessionsCommandOutput>;
|
|
218
|
+
/**
|
|
219
|
+
* deserializeAws_restJson1ListStorageConfigurationsCommand
|
|
220
|
+
*/
|
|
221
|
+
export declare const de_ListStorageConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStorageConfigurationsCommandOutput>;
|
|
122
222
|
/**
|
|
123
223
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
124
224
|
*/
|
|
125
225
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
226
|
+
/**
|
|
227
|
+
* deserializeAws_restJson1StartCompositionCommand
|
|
228
|
+
*/
|
|
229
|
+
export declare const de_StartCompositionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCompositionCommandOutput>;
|
|
230
|
+
/**
|
|
231
|
+
* deserializeAws_restJson1StopCompositionCommand
|
|
232
|
+
*/
|
|
233
|
+
export declare const de_StopCompositionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCompositionCommandOutput>;
|
|
126
234
|
/**
|
|
127
235
|
* deserializeAws_restJson1TagResourceCommand
|
|
128
236
|
*/
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateEncoderConfigurationCommandInput,
|
|
4
|
+
CreateEncoderConfigurationCommandOutput,
|
|
5
|
+
} from "./commands/CreateEncoderConfigurationCommand";
|
|
2
6
|
import {
|
|
3
7
|
CreateParticipantTokenCommandInput,
|
|
4
8
|
CreateParticipantTokenCommandOutput,
|
|
@@ -7,14 +11,34 @@ import {
|
|
|
7
11
|
CreateStageCommandInput,
|
|
8
12
|
CreateStageCommandOutput,
|
|
9
13
|
} from "./commands/CreateStageCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateStorageConfigurationCommandInput,
|
|
16
|
+
CreateStorageConfigurationCommandOutput,
|
|
17
|
+
} from "./commands/CreateStorageConfigurationCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteEncoderConfigurationCommandInput,
|
|
20
|
+
DeleteEncoderConfigurationCommandOutput,
|
|
21
|
+
} from "./commands/DeleteEncoderConfigurationCommand";
|
|
10
22
|
import {
|
|
11
23
|
DeleteStageCommandInput,
|
|
12
24
|
DeleteStageCommandOutput,
|
|
13
25
|
} from "./commands/DeleteStageCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteStorageConfigurationCommandInput,
|
|
28
|
+
DeleteStorageConfigurationCommandOutput,
|
|
29
|
+
} from "./commands/DeleteStorageConfigurationCommand";
|
|
14
30
|
import {
|
|
15
31
|
DisconnectParticipantCommandInput,
|
|
16
32
|
DisconnectParticipantCommandOutput,
|
|
17
33
|
} from "./commands/DisconnectParticipantCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetCompositionCommandInput,
|
|
36
|
+
GetCompositionCommandOutput,
|
|
37
|
+
} from "./commands/GetCompositionCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetEncoderConfigurationCommandInput,
|
|
40
|
+
GetEncoderConfigurationCommandOutput,
|
|
41
|
+
} from "./commands/GetEncoderConfigurationCommand";
|
|
18
42
|
import {
|
|
19
43
|
GetParticipantCommandInput,
|
|
20
44
|
GetParticipantCommandOutput,
|
|
@@ -27,6 +51,18 @@ import {
|
|
|
27
51
|
GetStageSessionCommandInput,
|
|
28
52
|
GetStageSessionCommandOutput,
|
|
29
53
|
} from "./commands/GetStageSessionCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetStorageConfigurationCommandInput,
|
|
56
|
+
GetStorageConfigurationCommandOutput,
|
|
57
|
+
} from "./commands/GetStorageConfigurationCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListCompositionsCommandInput,
|
|
60
|
+
ListCompositionsCommandOutput,
|
|
61
|
+
} from "./commands/ListCompositionsCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListEncoderConfigurationsCommandInput,
|
|
64
|
+
ListEncoderConfigurationsCommandOutput,
|
|
65
|
+
} from "./commands/ListEncoderConfigurationsCommand";
|
|
30
66
|
import {
|
|
31
67
|
ListParticipantEventsCommandInput,
|
|
32
68
|
ListParticipantEventsCommandOutput,
|
|
@@ -43,10 +79,22 @@ import {
|
|
|
43
79
|
ListStageSessionsCommandInput,
|
|
44
80
|
ListStageSessionsCommandOutput,
|
|
45
81
|
} from "./commands/ListStageSessionsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListStorageConfigurationsCommandInput,
|
|
84
|
+
ListStorageConfigurationsCommandOutput,
|
|
85
|
+
} from "./commands/ListStorageConfigurationsCommand";
|
|
46
86
|
import {
|
|
47
87
|
ListTagsForResourceCommandInput,
|
|
48
88
|
ListTagsForResourceCommandOutput,
|
|
49
89
|
} from "./commands/ListTagsForResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
StartCompositionCommandInput,
|
|
92
|
+
StartCompositionCommandOutput,
|
|
93
|
+
} from "./commands/StartCompositionCommand";
|
|
94
|
+
import {
|
|
95
|
+
StopCompositionCommandInput,
|
|
96
|
+
StopCompositionCommandOutput,
|
|
97
|
+
} from "./commands/StopCompositionCommand";
|
|
50
98
|
import {
|
|
51
99
|
TagResourceCommandInput,
|
|
52
100
|
TagResourceCommandOutput,
|
|
@@ -61,6 +109,19 @@ import {
|
|
|
61
109
|
} from "./commands/UpdateStageCommand";
|
|
62
110
|
import { IVSRealTimeClient } from "./IVSRealTimeClient";
|
|
63
111
|
export interface IVSRealTime {
|
|
112
|
+
createEncoderConfiguration(
|
|
113
|
+
args: CreateEncoderConfigurationCommandInput,
|
|
114
|
+
options?: __HttpHandlerOptions
|
|
115
|
+
): Promise<CreateEncoderConfigurationCommandOutput>;
|
|
116
|
+
createEncoderConfiguration(
|
|
117
|
+
args: CreateEncoderConfigurationCommandInput,
|
|
118
|
+
cb: (err: any, data?: CreateEncoderConfigurationCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
createEncoderConfiguration(
|
|
121
|
+
args: CreateEncoderConfigurationCommandInput,
|
|
122
|
+
options: __HttpHandlerOptions,
|
|
123
|
+
cb: (err: any, data?: CreateEncoderConfigurationCommandOutput) => void
|
|
124
|
+
): void;
|
|
64
125
|
createParticipantToken(
|
|
65
126
|
args: CreateParticipantTokenCommandInput,
|
|
66
127
|
options?: __HttpHandlerOptions
|
|
@@ -87,6 +148,32 @@ export interface IVSRealTime {
|
|
|
87
148
|
options: __HttpHandlerOptions,
|
|
88
149
|
cb: (err: any, data?: CreateStageCommandOutput) => void
|
|
89
150
|
): void;
|
|
151
|
+
createStorageConfiguration(
|
|
152
|
+
args: CreateStorageConfigurationCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<CreateStorageConfigurationCommandOutput>;
|
|
155
|
+
createStorageConfiguration(
|
|
156
|
+
args: CreateStorageConfigurationCommandInput,
|
|
157
|
+
cb: (err: any, data?: CreateStorageConfigurationCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
createStorageConfiguration(
|
|
160
|
+
args: CreateStorageConfigurationCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: CreateStorageConfigurationCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
deleteEncoderConfiguration(
|
|
165
|
+
args: DeleteEncoderConfigurationCommandInput,
|
|
166
|
+
options?: __HttpHandlerOptions
|
|
167
|
+
): Promise<DeleteEncoderConfigurationCommandOutput>;
|
|
168
|
+
deleteEncoderConfiguration(
|
|
169
|
+
args: DeleteEncoderConfigurationCommandInput,
|
|
170
|
+
cb: (err: any, data?: DeleteEncoderConfigurationCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
deleteEncoderConfiguration(
|
|
173
|
+
args: DeleteEncoderConfigurationCommandInput,
|
|
174
|
+
options: __HttpHandlerOptions,
|
|
175
|
+
cb: (err: any, data?: DeleteEncoderConfigurationCommandOutput) => void
|
|
176
|
+
): void;
|
|
90
177
|
deleteStage(
|
|
91
178
|
args: DeleteStageCommandInput,
|
|
92
179
|
options?: __HttpHandlerOptions
|
|
@@ -100,6 +187,19 @@ export interface IVSRealTime {
|
|
|
100
187
|
options: __HttpHandlerOptions,
|
|
101
188
|
cb: (err: any, data?: DeleteStageCommandOutput) => void
|
|
102
189
|
): void;
|
|
190
|
+
deleteStorageConfiguration(
|
|
191
|
+
args: DeleteStorageConfigurationCommandInput,
|
|
192
|
+
options?: __HttpHandlerOptions
|
|
193
|
+
): Promise<DeleteStorageConfigurationCommandOutput>;
|
|
194
|
+
deleteStorageConfiguration(
|
|
195
|
+
args: DeleteStorageConfigurationCommandInput,
|
|
196
|
+
cb: (err: any, data?: DeleteStorageConfigurationCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
deleteStorageConfiguration(
|
|
199
|
+
args: DeleteStorageConfigurationCommandInput,
|
|
200
|
+
options: __HttpHandlerOptions,
|
|
201
|
+
cb: (err: any, data?: DeleteStorageConfigurationCommandOutput) => void
|
|
202
|
+
): void;
|
|
103
203
|
disconnectParticipant(
|
|
104
204
|
args: DisconnectParticipantCommandInput,
|
|
105
205
|
options?: __HttpHandlerOptions
|
|
@@ -113,6 +213,32 @@ export interface IVSRealTime {
|
|
|
113
213
|
options: __HttpHandlerOptions,
|
|
114
214
|
cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
|
|
115
215
|
): void;
|
|
216
|
+
getComposition(
|
|
217
|
+
args: GetCompositionCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<GetCompositionCommandOutput>;
|
|
220
|
+
getComposition(
|
|
221
|
+
args: GetCompositionCommandInput,
|
|
222
|
+
cb: (err: any, data?: GetCompositionCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
getComposition(
|
|
225
|
+
args: GetCompositionCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: GetCompositionCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
getEncoderConfiguration(
|
|
230
|
+
args: GetEncoderConfigurationCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<GetEncoderConfigurationCommandOutput>;
|
|
233
|
+
getEncoderConfiguration(
|
|
234
|
+
args: GetEncoderConfigurationCommandInput,
|
|
235
|
+
cb: (err: any, data?: GetEncoderConfigurationCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
getEncoderConfiguration(
|
|
238
|
+
args: GetEncoderConfigurationCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: GetEncoderConfigurationCommandOutput) => void
|
|
241
|
+
): void;
|
|
116
242
|
getParticipant(
|
|
117
243
|
args: GetParticipantCommandInput,
|
|
118
244
|
options?: __HttpHandlerOptions
|
|
@@ -152,6 +278,45 @@ export interface IVSRealTime {
|
|
|
152
278
|
options: __HttpHandlerOptions,
|
|
153
279
|
cb: (err: any, data?: GetStageSessionCommandOutput) => void
|
|
154
280
|
): void;
|
|
281
|
+
getStorageConfiguration(
|
|
282
|
+
args: GetStorageConfigurationCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<GetStorageConfigurationCommandOutput>;
|
|
285
|
+
getStorageConfiguration(
|
|
286
|
+
args: GetStorageConfigurationCommandInput,
|
|
287
|
+
cb: (err: any, data?: GetStorageConfigurationCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
getStorageConfiguration(
|
|
290
|
+
args: GetStorageConfigurationCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: GetStorageConfigurationCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
listCompositions(
|
|
295
|
+
args: ListCompositionsCommandInput,
|
|
296
|
+
options?: __HttpHandlerOptions
|
|
297
|
+
): Promise<ListCompositionsCommandOutput>;
|
|
298
|
+
listCompositions(
|
|
299
|
+
args: ListCompositionsCommandInput,
|
|
300
|
+
cb: (err: any, data?: ListCompositionsCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
listCompositions(
|
|
303
|
+
args: ListCompositionsCommandInput,
|
|
304
|
+
options: __HttpHandlerOptions,
|
|
305
|
+
cb: (err: any, data?: ListCompositionsCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
listEncoderConfigurations(
|
|
308
|
+
args: ListEncoderConfigurationsCommandInput,
|
|
309
|
+
options?: __HttpHandlerOptions
|
|
310
|
+
): Promise<ListEncoderConfigurationsCommandOutput>;
|
|
311
|
+
listEncoderConfigurations(
|
|
312
|
+
args: ListEncoderConfigurationsCommandInput,
|
|
313
|
+
cb: (err: any, data?: ListEncoderConfigurationsCommandOutput) => void
|
|
314
|
+
): void;
|
|
315
|
+
listEncoderConfigurations(
|
|
316
|
+
args: ListEncoderConfigurationsCommandInput,
|
|
317
|
+
options: __HttpHandlerOptions,
|
|
318
|
+
cb: (err: any, data?: ListEncoderConfigurationsCommandOutput) => void
|
|
319
|
+
): void;
|
|
155
320
|
listParticipantEvents(
|
|
156
321
|
args: ListParticipantEventsCommandInput,
|
|
157
322
|
options?: __HttpHandlerOptions
|
|
@@ -204,6 +369,19 @@ export interface IVSRealTime {
|
|
|
204
369
|
options: __HttpHandlerOptions,
|
|
205
370
|
cb: (err: any, data?: ListStageSessionsCommandOutput) => void
|
|
206
371
|
): void;
|
|
372
|
+
listStorageConfigurations(
|
|
373
|
+
args: ListStorageConfigurationsCommandInput,
|
|
374
|
+
options?: __HttpHandlerOptions
|
|
375
|
+
): Promise<ListStorageConfigurationsCommandOutput>;
|
|
376
|
+
listStorageConfigurations(
|
|
377
|
+
args: ListStorageConfigurationsCommandInput,
|
|
378
|
+
cb: (err: any, data?: ListStorageConfigurationsCommandOutput) => void
|
|
379
|
+
): void;
|
|
380
|
+
listStorageConfigurations(
|
|
381
|
+
args: ListStorageConfigurationsCommandInput,
|
|
382
|
+
options: __HttpHandlerOptions,
|
|
383
|
+
cb: (err: any, data?: ListStorageConfigurationsCommandOutput) => void
|
|
384
|
+
): void;
|
|
207
385
|
listTagsForResource(
|
|
208
386
|
args: ListTagsForResourceCommandInput,
|
|
209
387
|
options?: __HttpHandlerOptions
|
|
@@ -217,6 +395,32 @@ export interface IVSRealTime {
|
|
|
217
395
|
options: __HttpHandlerOptions,
|
|
218
396
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
219
397
|
): void;
|
|
398
|
+
startComposition(
|
|
399
|
+
args: StartCompositionCommandInput,
|
|
400
|
+
options?: __HttpHandlerOptions
|
|
401
|
+
): Promise<StartCompositionCommandOutput>;
|
|
402
|
+
startComposition(
|
|
403
|
+
args: StartCompositionCommandInput,
|
|
404
|
+
cb: (err: any, data?: StartCompositionCommandOutput) => void
|
|
405
|
+
): void;
|
|
406
|
+
startComposition(
|
|
407
|
+
args: StartCompositionCommandInput,
|
|
408
|
+
options: __HttpHandlerOptions,
|
|
409
|
+
cb: (err: any, data?: StartCompositionCommandOutput) => void
|
|
410
|
+
): void;
|
|
411
|
+
stopComposition(
|
|
412
|
+
args: StopCompositionCommandInput,
|
|
413
|
+
options?: __HttpHandlerOptions
|
|
414
|
+
): Promise<StopCompositionCommandOutput>;
|
|
415
|
+
stopComposition(
|
|
416
|
+
args: StopCompositionCommandInput,
|
|
417
|
+
cb: (err: any, data?: StopCompositionCommandOutput) => void
|
|
418
|
+
): void;
|
|
419
|
+
stopComposition(
|
|
420
|
+
args: StopCompositionCommandInput,
|
|
421
|
+
options: __HttpHandlerOptions,
|
|
422
|
+
cb: (err: any, data?: StopCompositionCommandOutput) => void
|
|
423
|
+
): void;
|
|
220
424
|
tagResource(
|
|
221
425
|
args: TagResourceCommandInput,
|
|
222
426
|
options?: __HttpHandlerOptions
|
|
@@ -45,6 +45,10 @@ import {
|
|
|
45
45
|
UrlParser as __UrlParser,
|
|
46
46
|
UserAgent as __UserAgent,
|
|
47
47
|
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreateEncoderConfigurationCommandInput,
|
|
50
|
+
CreateEncoderConfigurationCommandOutput,
|
|
51
|
+
} from "./commands/CreateEncoderConfigurationCommand";
|
|
48
52
|
import {
|
|
49
53
|
CreateParticipantTokenCommandInput,
|
|
50
54
|
CreateParticipantTokenCommandOutput,
|
|
@@ -53,14 +57,34 @@ import {
|
|
|
53
57
|
CreateStageCommandInput,
|
|
54
58
|
CreateStageCommandOutput,
|
|
55
59
|
} from "./commands/CreateStageCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateStorageConfigurationCommandInput,
|
|
62
|
+
CreateStorageConfigurationCommandOutput,
|
|
63
|
+
} from "./commands/CreateStorageConfigurationCommand";
|
|
64
|
+
import {
|
|
65
|
+
DeleteEncoderConfigurationCommandInput,
|
|
66
|
+
DeleteEncoderConfigurationCommandOutput,
|
|
67
|
+
} from "./commands/DeleteEncoderConfigurationCommand";
|
|
56
68
|
import {
|
|
57
69
|
DeleteStageCommandInput,
|
|
58
70
|
DeleteStageCommandOutput,
|
|
59
71
|
} from "./commands/DeleteStageCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteStorageConfigurationCommandInput,
|
|
74
|
+
DeleteStorageConfigurationCommandOutput,
|
|
75
|
+
} from "./commands/DeleteStorageConfigurationCommand";
|
|
60
76
|
import {
|
|
61
77
|
DisconnectParticipantCommandInput,
|
|
62
78
|
DisconnectParticipantCommandOutput,
|
|
63
79
|
} from "./commands/DisconnectParticipantCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetCompositionCommandInput,
|
|
82
|
+
GetCompositionCommandOutput,
|
|
83
|
+
} from "./commands/GetCompositionCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetEncoderConfigurationCommandInput,
|
|
86
|
+
GetEncoderConfigurationCommandOutput,
|
|
87
|
+
} from "./commands/GetEncoderConfigurationCommand";
|
|
64
88
|
import {
|
|
65
89
|
GetParticipantCommandInput,
|
|
66
90
|
GetParticipantCommandOutput,
|
|
@@ -73,6 +97,18 @@ import {
|
|
|
73
97
|
GetStageSessionCommandInput,
|
|
74
98
|
GetStageSessionCommandOutput,
|
|
75
99
|
} from "./commands/GetStageSessionCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetStorageConfigurationCommandInput,
|
|
102
|
+
GetStorageConfigurationCommandOutput,
|
|
103
|
+
} from "./commands/GetStorageConfigurationCommand";
|
|
104
|
+
import {
|
|
105
|
+
ListCompositionsCommandInput,
|
|
106
|
+
ListCompositionsCommandOutput,
|
|
107
|
+
} from "./commands/ListCompositionsCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListEncoderConfigurationsCommandInput,
|
|
110
|
+
ListEncoderConfigurationsCommandOutput,
|
|
111
|
+
} from "./commands/ListEncoderConfigurationsCommand";
|
|
76
112
|
import {
|
|
77
113
|
ListParticipantEventsCommandInput,
|
|
78
114
|
ListParticipantEventsCommandOutput,
|
|
@@ -89,10 +125,22 @@ import {
|
|
|
89
125
|
ListStageSessionsCommandInput,
|
|
90
126
|
ListStageSessionsCommandOutput,
|
|
91
127
|
} from "./commands/ListStageSessionsCommand";
|
|
128
|
+
import {
|
|
129
|
+
ListStorageConfigurationsCommandInput,
|
|
130
|
+
ListStorageConfigurationsCommandOutput,
|
|
131
|
+
} from "./commands/ListStorageConfigurationsCommand";
|
|
92
132
|
import {
|
|
93
133
|
ListTagsForResourceCommandInput,
|
|
94
134
|
ListTagsForResourceCommandOutput,
|
|
95
135
|
} from "./commands/ListTagsForResourceCommand";
|
|
136
|
+
import {
|
|
137
|
+
StartCompositionCommandInput,
|
|
138
|
+
StartCompositionCommandOutput,
|
|
139
|
+
} from "./commands/StartCompositionCommand";
|
|
140
|
+
import {
|
|
141
|
+
StopCompositionCommandInput,
|
|
142
|
+
StopCompositionCommandOutput,
|
|
143
|
+
} from "./commands/StopCompositionCommand";
|
|
96
144
|
import {
|
|
97
145
|
TagResourceCommandInput,
|
|
98
146
|
TagResourceCommandOutput,
|
|
@@ -113,34 +161,58 @@ import {
|
|
|
113
161
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
114
162
|
export { __Client };
|
|
115
163
|
export type ServiceInputTypes =
|
|
164
|
+
| CreateEncoderConfigurationCommandInput
|
|
116
165
|
| CreateParticipantTokenCommandInput
|
|
117
166
|
| CreateStageCommandInput
|
|
167
|
+
| CreateStorageConfigurationCommandInput
|
|
168
|
+
| DeleteEncoderConfigurationCommandInput
|
|
118
169
|
| DeleteStageCommandInput
|
|
170
|
+
| DeleteStorageConfigurationCommandInput
|
|
119
171
|
| DisconnectParticipantCommandInput
|
|
172
|
+
| GetCompositionCommandInput
|
|
173
|
+
| GetEncoderConfigurationCommandInput
|
|
120
174
|
| GetParticipantCommandInput
|
|
121
175
|
| GetStageCommandInput
|
|
122
176
|
| GetStageSessionCommandInput
|
|
177
|
+
| GetStorageConfigurationCommandInput
|
|
178
|
+
| ListCompositionsCommandInput
|
|
179
|
+
| ListEncoderConfigurationsCommandInput
|
|
123
180
|
| ListParticipantEventsCommandInput
|
|
124
181
|
| ListParticipantsCommandInput
|
|
125
182
|
| ListStageSessionsCommandInput
|
|
126
183
|
| ListStagesCommandInput
|
|
184
|
+
| ListStorageConfigurationsCommandInput
|
|
127
185
|
| ListTagsForResourceCommandInput
|
|
186
|
+
| StartCompositionCommandInput
|
|
187
|
+
| StopCompositionCommandInput
|
|
128
188
|
| TagResourceCommandInput
|
|
129
189
|
| UntagResourceCommandInput
|
|
130
190
|
| UpdateStageCommandInput;
|
|
131
191
|
export type ServiceOutputTypes =
|
|
192
|
+
| CreateEncoderConfigurationCommandOutput
|
|
132
193
|
| CreateParticipantTokenCommandOutput
|
|
133
194
|
| CreateStageCommandOutput
|
|
195
|
+
| CreateStorageConfigurationCommandOutput
|
|
196
|
+
| DeleteEncoderConfigurationCommandOutput
|
|
134
197
|
| DeleteStageCommandOutput
|
|
198
|
+
| DeleteStorageConfigurationCommandOutput
|
|
135
199
|
| DisconnectParticipantCommandOutput
|
|
200
|
+
| GetCompositionCommandOutput
|
|
201
|
+
| GetEncoderConfigurationCommandOutput
|
|
136
202
|
| GetParticipantCommandOutput
|
|
137
203
|
| GetStageCommandOutput
|
|
138
204
|
| GetStageSessionCommandOutput
|
|
205
|
+
| GetStorageConfigurationCommandOutput
|
|
206
|
+
| ListCompositionsCommandOutput
|
|
207
|
+
| ListEncoderConfigurationsCommandOutput
|
|
139
208
|
| ListParticipantEventsCommandOutput
|
|
140
209
|
| ListParticipantsCommandOutput
|
|
141
210
|
| ListStageSessionsCommandOutput
|
|
142
211
|
| ListStagesCommandOutput
|
|
212
|
+
| ListStorageConfigurationsCommandOutput
|
|
143
213
|
| ListTagsForResourceCommandOutput
|
|
214
|
+
| StartCompositionCommandOutput
|
|
215
|
+
| StopCompositionCommandOutput
|
|
144
216
|
| TagResourceCommandOutput
|
|
145
217
|
| UntagResourceCommandOutput
|
|
146
218
|
| UpdateStageCommandOutput;
|