@aws-sdk/client-ivs-realtime 3.451.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 +4 -2
package/README.md
CHANGED
|
@@ -22,11 +22,20 @@ including errors.
|
|
|
22
22
|
<p>A <i>participant token</i> is a token that authenticates a participant when they join a stage.</p>
|
|
23
23
|
</li>
|
|
24
24
|
<li>
|
|
25
|
-
<p>A <i>participant object</i> represents participants
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
<p>A <i>participant object</i> represents participants (people) in the stage and
|
|
26
|
+
contains information about them. When a token is created, it includes a participant ID;
|
|
27
|
+
when a participant uses that token to join a stage, the participant is associated with
|
|
28
|
+
that participant ID. There is a 1:1 mapping between participant tokens and
|
|
29
|
+
participants.</p>
|
|
30
|
+
</li>
|
|
31
|
+
<li>
|
|
32
|
+
<p>Server-side composition: The <i>composition</i> process composites participants
|
|
33
|
+
of a stage into a single video and forwards it to a set of outputs (e.g., IVS channels).
|
|
34
|
+
Composition endpoints support this process.</p>
|
|
35
|
+
</li>
|
|
36
|
+
<li>
|
|
37
|
+
<p>Server-side composition: A <i>composition</i> controls the look of the outputs,
|
|
38
|
+
including how participants are positioned in the video.</p>
|
|
30
39
|
</li>
|
|
31
40
|
</ul>
|
|
32
41
|
<p>
|
|
@@ -112,6 +121,80 @@ session.</p>
|
|
|
112
121
|
</li>
|
|
113
122
|
</ul>
|
|
114
123
|
<p>
|
|
124
|
+
<b>Composition Endpoints</b>
|
|
125
|
+
</p>
|
|
126
|
+
<ul>
|
|
127
|
+
<li>
|
|
128
|
+
<p>
|
|
129
|
+
<a>GetComposition</a> — Gets information about the specified
|
|
130
|
+
Composition resource.</p>
|
|
131
|
+
</li>
|
|
132
|
+
<li>
|
|
133
|
+
<p>
|
|
134
|
+
<a>ListCompositions</a> — Gets summary information about all
|
|
135
|
+
Compositions in your account, in the AWS region where the API request is processed.</p>
|
|
136
|
+
</li>
|
|
137
|
+
<li>
|
|
138
|
+
<p>
|
|
139
|
+
<a>StartComposition</a> — Starts a Composition from a stage based on
|
|
140
|
+
the configuration provided in the request.</p>
|
|
141
|
+
</li>
|
|
142
|
+
<li>
|
|
143
|
+
<p>
|
|
144
|
+
<a>StopComposition</a> — Stops and deletes a Composition resource.
|
|
145
|
+
Any broadcast from the Composition resource is stopped.</p>
|
|
146
|
+
</li>
|
|
147
|
+
</ul>
|
|
148
|
+
<p>
|
|
149
|
+
<b>EncoderConfiguration Endpoints</b>
|
|
150
|
+
</p>
|
|
151
|
+
<ul>
|
|
152
|
+
<li>
|
|
153
|
+
<p>
|
|
154
|
+
<a>CreateEncoderConfiguration</a> — Creates an EncoderConfiguration object.</p>
|
|
155
|
+
</li>
|
|
156
|
+
<li>
|
|
157
|
+
<p>
|
|
158
|
+
<a>DeleteEncoderConfiguration</a> — Deletes an EncoderConfiguration
|
|
159
|
+
resource. Ensures that no Compositions are using this template; otherwise, returns an
|
|
160
|
+
error.</p>
|
|
161
|
+
</li>
|
|
162
|
+
<li>
|
|
163
|
+
<p>
|
|
164
|
+
<a>GetEncoderConfiguration</a> — Gets information about the specified
|
|
165
|
+
EncoderConfiguration resource.</p>
|
|
166
|
+
</li>
|
|
167
|
+
<li>
|
|
168
|
+
<p>
|
|
169
|
+
<a>ListEncoderConfigurations</a> — Gets summary information about all
|
|
170
|
+
EncoderConfigurations in your account, in the AWS region where the API request is
|
|
171
|
+
processed.</p>
|
|
172
|
+
</li>
|
|
173
|
+
</ul>
|
|
174
|
+
<p>
|
|
175
|
+
<b>StorageConfiguration Endpoints</b>
|
|
176
|
+
</p>
|
|
177
|
+
<ul>
|
|
178
|
+
<li>
|
|
179
|
+
<p>
|
|
180
|
+
<a>CreateStorageConfiguration</a> — Creates a new storage configuration, used to enable
|
|
181
|
+
recording to Amazon S3.</p>
|
|
182
|
+
</li>
|
|
183
|
+
<li>
|
|
184
|
+
<p>
|
|
185
|
+
<a>DeleteStorageConfiguration</a> — Deletes the storage configuration for the specified ARN.</p>
|
|
186
|
+
</li>
|
|
187
|
+
<li>
|
|
188
|
+
<p>
|
|
189
|
+
<a>GetStorageConfiguration</a> — Gets the storage configuration for the specified ARN.</p>
|
|
190
|
+
</li>
|
|
191
|
+
<li>
|
|
192
|
+
<p>
|
|
193
|
+
<a>ListStorageConfigurations</a> — Gets summary information about all storage configurations in your
|
|
194
|
+
account, in the AWS region where the API request is processed.</p>
|
|
195
|
+
</li>
|
|
196
|
+
</ul>
|
|
197
|
+
<p>
|
|
115
198
|
<b>Tags Endpoints</b>
|
|
116
199
|
</p>
|
|
117
200
|
<ul>
|
|
@@ -327,6 +410,14 @@ see LICENSE for more information.
|
|
|
327
410
|
|
|
328
411
|
## Client Commands (Operations List)
|
|
329
412
|
|
|
413
|
+
<details>
|
|
414
|
+
<summary>
|
|
415
|
+
CreateEncoderConfiguration
|
|
416
|
+
</summary>
|
|
417
|
+
|
|
418
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/createencoderconfigurationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/createencoderconfigurationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/createencoderconfigurationcommandoutput.html)
|
|
419
|
+
|
|
420
|
+
</details>
|
|
330
421
|
<details>
|
|
331
422
|
<summary>
|
|
332
423
|
CreateParticipantToken
|
|
@@ -342,6 +433,22 @@ CreateStage
|
|
|
342
433
|
|
|
343
434
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/createstagecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/createstagecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/createstagecommandoutput.html)
|
|
344
435
|
|
|
436
|
+
</details>
|
|
437
|
+
<details>
|
|
438
|
+
<summary>
|
|
439
|
+
CreateStorageConfiguration
|
|
440
|
+
</summary>
|
|
441
|
+
|
|
442
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/createstorageconfigurationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/createstorageconfigurationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/createstorageconfigurationcommandoutput.html)
|
|
443
|
+
|
|
444
|
+
</details>
|
|
445
|
+
<details>
|
|
446
|
+
<summary>
|
|
447
|
+
DeleteEncoderConfiguration
|
|
448
|
+
</summary>
|
|
449
|
+
|
|
450
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/deleteencoderconfigurationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/deleteencoderconfigurationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/deleteencoderconfigurationcommandoutput.html)
|
|
451
|
+
|
|
345
452
|
</details>
|
|
346
453
|
<details>
|
|
347
454
|
<summary>
|
|
@@ -350,6 +457,14 @@ DeleteStage
|
|
|
350
457
|
|
|
351
458
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/deletestagecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/deletestagecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/deletestagecommandoutput.html)
|
|
352
459
|
|
|
460
|
+
</details>
|
|
461
|
+
<details>
|
|
462
|
+
<summary>
|
|
463
|
+
DeleteStorageConfiguration
|
|
464
|
+
</summary>
|
|
465
|
+
|
|
466
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/deletestorageconfigurationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/deletestorageconfigurationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/deletestorageconfigurationcommandoutput.html)
|
|
467
|
+
|
|
353
468
|
</details>
|
|
354
469
|
<details>
|
|
355
470
|
<summary>
|
|
@@ -358,6 +473,22 @@ DisconnectParticipant
|
|
|
358
473
|
|
|
359
474
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/disconnectparticipantcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/disconnectparticipantcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/disconnectparticipantcommandoutput.html)
|
|
360
475
|
|
|
476
|
+
</details>
|
|
477
|
+
<details>
|
|
478
|
+
<summary>
|
|
479
|
+
GetComposition
|
|
480
|
+
</summary>
|
|
481
|
+
|
|
482
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/getcompositioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getcompositioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getcompositioncommandoutput.html)
|
|
483
|
+
|
|
484
|
+
</details>
|
|
485
|
+
<details>
|
|
486
|
+
<summary>
|
|
487
|
+
GetEncoderConfiguration
|
|
488
|
+
</summary>
|
|
489
|
+
|
|
490
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/getencoderconfigurationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getencoderconfigurationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getencoderconfigurationcommandoutput.html)
|
|
491
|
+
|
|
361
492
|
</details>
|
|
362
493
|
<details>
|
|
363
494
|
<summary>
|
|
@@ -382,6 +513,30 @@ GetStageSession
|
|
|
382
513
|
|
|
383
514
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/getstagesessioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getstagesessioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getstagesessioncommandoutput.html)
|
|
384
515
|
|
|
516
|
+
</details>
|
|
517
|
+
<details>
|
|
518
|
+
<summary>
|
|
519
|
+
GetStorageConfiguration
|
|
520
|
+
</summary>
|
|
521
|
+
|
|
522
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/getstorageconfigurationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getstorageconfigurationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/getstorageconfigurationcommandoutput.html)
|
|
523
|
+
|
|
524
|
+
</details>
|
|
525
|
+
<details>
|
|
526
|
+
<summary>
|
|
527
|
+
ListCompositions
|
|
528
|
+
</summary>
|
|
529
|
+
|
|
530
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/listcompositionscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/listcompositionscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/listcompositionscommandoutput.html)
|
|
531
|
+
|
|
532
|
+
</details>
|
|
533
|
+
<details>
|
|
534
|
+
<summary>
|
|
535
|
+
ListEncoderConfigurations
|
|
536
|
+
</summary>
|
|
537
|
+
|
|
538
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/listencoderconfigurationscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/listencoderconfigurationscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/listencoderconfigurationscommandoutput.html)
|
|
539
|
+
|
|
385
540
|
</details>
|
|
386
541
|
<details>
|
|
387
542
|
<summary>
|
|
@@ -414,6 +569,14 @@ ListStageSessions
|
|
|
414
569
|
|
|
415
570
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/liststagesessionscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/liststagesessionscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/liststagesessionscommandoutput.html)
|
|
416
571
|
|
|
572
|
+
</details>
|
|
573
|
+
<details>
|
|
574
|
+
<summary>
|
|
575
|
+
ListStorageConfigurations
|
|
576
|
+
</summary>
|
|
577
|
+
|
|
578
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/liststorageconfigurationscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/liststorageconfigurationscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/liststorageconfigurationscommandoutput.html)
|
|
579
|
+
|
|
417
580
|
</details>
|
|
418
581
|
<details>
|
|
419
582
|
<summary>
|
|
@@ -422,6 +585,22 @@ ListTagsForResource
|
|
|
422
585
|
|
|
423
586
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/listtagsforresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/listtagsforresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/listtagsforresourcecommandoutput.html)
|
|
424
587
|
|
|
588
|
+
</details>
|
|
589
|
+
<details>
|
|
590
|
+
<summary>
|
|
591
|
+
StartComposition
|
|
592
|
+
</summary>
|
|
593
|
+
|
|
594
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/startcompositioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/startcompositioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/startcompositioncommandoutput.html)
|
|
595
|
+
|
|
596
|
+
</details>
|
|
597
|
+
<details>
|
|
598
|
+
<summary>
|
|
599
|
+
StopComposition
|
|
600
|
+
</summary>
|
|
601
|
+
|
|
602
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/classes/stopcompositioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/stopcompositioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ivs-realtime/interfaces/stopcompositioncommandoutput.html)
|
|
603
|
+
|
|
425
604
|
</details>
|
|
426
605
|
<details>
|
|
427
606
|
<summary>
|
package/dist-cjs/IVSRealTime.js
CHANGED
|
@@ -2,35 +2,59 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IVSRealTime = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
const CreateEncoderConfigurationCommand_1 = require("./commands/CreateEncoderConfigurationCommand");
|
|
5
6
|
const CreateParticipantTokenCommand_1 = require("./commands/CreateParticipantTokenCommand");
|
|
6
7
|
const CreateStageCommand_1 = require("./commands/CreateStageCommand");
|
|
8
|
+
const CreateStorageConfigurationCommand_1 = require("./commands/CreateStorageConfigurationCommand");
|
|
9
|
+
const DeleteEncoderConfigurationCommand_1 = require("./commands/DeleteEncoderConfigurationCommand");
|
|
7
10
|
const DeleteStageCommand_1 = require("./commands/DeleteStageCommand");
|
|
11
|
+
const DeleteStorageConfigurationCommand_1 = require("./commands/DeleteStorageConfigurationCommand");
|
|
8
12
|
const DisconnectParticipantCommand_1 = require("./commands/DisconnectParticipantCommand");
|
|
13
|
+
const GetCompositionCommand_1 = require("./commands/GetCompositionCommand");
|
|
14
|
+
const GetEncoderConfigurationCommand_1 = require("./commands/GetEncoderConfigurationCommand");
|
|
9
15
|
const GetParticipantCommand_1 = require("./commands/GetParticipantCommand");
|
|
10
16
|
const GetStageCommand_1 = require("./commands/GetStageCommand");
|
|
11
17
|
const GetStageSessionCommand_1 = require("./commands/GetStageSessionCommand");
|
|
18
|
+
const GetStorageConfigurationCommand_1 = require("./commands/GetStorageConfigurationCommand");
|
|
19
|
+
const ListCompositionsCommand_1 = require("./commands/ListCompositionsCommand");
|
|
20
|
+
const ListEncoderConfigurationsCommand_1 = require("./commands/ListEncoderConfigurationsCommand");
|
|
12
21
|
const ListParticipantEventsCommand_1 = require("./commands/ListParticipantEventsCommand");
|
|
13
22
|
const ListParticipantsCommand_1 = require("./commands/ListParticipantsCommand");
|
|
14
23
|
const ListStagesCommand_1 = require("./commands/ListStagesCommand");
|
|
15
24
|
const ListStageSessionsCommand_1 = require("./commands/ListStageSessionsCommand");
|
|
25
|
+
const ListStorageConfigurationsCommand_1 = require("./commands/ListStorageConfigurationsCommand");
|
|
16
26
|
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
27
|
+
const StartCompositionCommand_1 = require("./commands/StartCompositionCommand");
|
|
28
|
+
const StopCompositionCommand_1 = require("./commands/StopCompositionCommand");
|
|
17
29
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
18
30
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
19
31
|
const UpdateStageCommand_1 = require("./commands/UpdateStageCommand");
|
|
20
32
|
const IVSRealTimeClient_1 = require("./IVSRealTimeClient");
|
|
21
33
|
const commands = {
|
|
34
|
+
CreateEncoderConfigurationCommand: CreateEncoderConfigurationCommand_1.CreateEncoderConfigurationCommand,
|
|
22
35
|
CreateParticipantTokenCommand: CreateParticipantTokenCommand_1.CreateParticipantTokenCommand,
|
|
23
36
|
CreateStageCommand: CreateStageCommand_1.CreateStageCommand,
|
|
37
|
+
CreateStorageConfigurationCommand: CreateStorageConfigurationCommand_1.CreateStorageConfigurationCommand,
|
|
38
|
+
DeleteEncoderConfigurationCommand: DeleteEncoderConfigurationCommand_1.DeleteEncoderConfigurationCommand,
|
|
24
39
|
DeleteStageCommand: DeleteStageCommand_1.DeleteStageCommand,
|
|
40
|
+
DeleteStorageConfigurationCommand: DeleteStorageConfigurationCommand_1.DeleteStorageConfigurationCommand,
|
|
25
41
|
DisconnectParticipantCommand: DisconnectParticipantCommand_1.DisconnectParticipantCommand,
|
|
42
|
+
GetCompositionCommand: GetCompositionCommand_1.GetCompositionCommand,
|
|
43
|
+
GetEncoderConfigurationCommand: GetEncoderConfigurationCommand_1.GetEncoderConfigurationCommand,
|
|
26
44
|
GetParticipantCommand: GetParticipantCommand_1.GetParticipantCommand,
|
|
27
45
|
GetStageCommand: GetStageCommand_1.GetStageCommand,
|
|
28
46
|
GetStageSessionCommand: GetStageSessionCommand_1.GetStageSessionCommand,
|
|
47
|
+
GetStorageConfigurationCommand: GetStorageConfigurationCommand_1.GetStorageConfigurationCommand,
|
|
48
|
+
ListCompositionsCommand: ListCompositionsCommand_1.ListCompositionsCommand,
|
|
49
|
+
ListEncoderConfigurationsCommand: ListEncoderConfigurationsCommand_1.ListEncoderConfigurationsCommand,
|
|
29
50
|
ListParticipantEventsCommand: ListParticipantEventsCommand_1.ListParticipantEventsCommand,
|
|
30
51
|
ListParticipantsCommand: ListParticipantsCommand_1.ListParticipantsCommand,
|
|
31
52
|
ListStagesCommand: ListStagesCommand_1.ListStagesCommand,
|
|
32
53
|
ListStageSessionsCommand: ListStageSessionsCommand_1.ListStageSessionsCommand,
|
|
54
|
+
ListStorageConfigurationsCommand: ListStorageConfigurationsCommand_1.ListStorageConfigurationsCommand,
|
|
33
55
|
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
56
|
+
StartCompositionCommand: StartCompositionCommand_1.StartCompositionCommand,
|
|
57
|
+
StopCompositionCommand: StopCompositionCommand_1.StopCompositionCommand,
|
|
34
58
|
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
35
59
|
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
36
60
|
UpdateStageCommand: UpdateStageCommand_1.UpdateStageCommand,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateEncoderConfigurationCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreateEncoderConfigurationCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateEncoderConfigurationCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IVSRealTimeClient";
|
|
29
|
+
const commandName = "CreateEncoderConfigurationCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonInteractiveVideoServiceRealTime",
|
|
38
|
+
operation: "CreateEncoderConfiguration",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreateEncoderConfigurationCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreateEncoderConfigurationCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreateEncoderConfigurationCommand = CreateEncoderConfigurationCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateStorageConfigurationCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreateStorageConfigurationCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateStorageConfigurationCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IVSRealTimeClient";
|
|
29
|
+
const commandName = "CreateStorageConfigurationCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonInteractiveVideoServiceRealTime",
|
|
38
|
+
operation: "CreateStorageConfiguration",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreateStorageConfigurationCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreateStorageConfigurationCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreateStorageConfigurationCommand = CreateStorageConfigurationCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteEncoderConfigurationCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeleteEncoderConfigurationCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteEncoderConfigurationCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IVSRealTimeClient";
|
|
29
|
+
const commandName = "DeleteEncoderConfigurationCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonInteractiveVideoServiceRealTime",
|
|
38
|
+
operation: "DeleteEncoderConfiguration",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeleteEncoderConfigurationCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeleteEncoderConfigurationCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeleteEncoderConfigurationCommand = DeleteEncoderConfigurationCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteStorageConfigurationCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeleteStorageConfigurationCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteStorageConfigurationCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IVSRealTimeClient";
|
|
29
|
+
const commandName = "DeleteStorageConfigurationCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonInteractiveVideoServiceRealTime",
|
|
38
|
+
operation: "DeleteStorageConfiguration",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeleteStorageConfigurationCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeleteStorageConfigurationCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeleteStorageConfigurationCommand = DeleteStorageConfigurationCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetCompositionCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class GetCompositionCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetCompositionCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IVSRealTimeClient";
|
|
29
|
+
const commandName = "GetCompositionCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonInteractiveVideoServiceRealTime",
|
|
38
|
+
operation: "GetComposition",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_GetCompositionCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_GetCompositionCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.GetCompositionCommand = GetCompositionCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetEncoderConfigurationCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class GetEncoderConfigurationCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetEncoderConfigurationCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IVSRealTimeClient";
|
|
29
|
+
const commandName = "GetEncoderConfigurationCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonInteractiveVideoServiceRealTime",
|
|
38
|
+
operation: "GetEncoderConfiguration",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_GetEncoderConfigurationCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_GetEncoderConfigurationCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.GetEncoderConfigurationCommand = GetEncoderConfigurationCommand;
|