@aws-sdk/client-ivs 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist-types/Ivs.d.ts +29 -0
  2. package/dist-types/IvsClient.d.ts +24 -4
  3. package/dist-types/commands/BatchGetChannelCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetStreamKeyCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateChannelCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateRecordingConfigurationCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateStreamKeyCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteChannelCommand.d.ts +16 -0
  9. package/dist-types/commands/DeletePlaybackKeyPairCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteRecordingConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteStreamKeyCommand.d.ts +16 -0
  12. package/dist-types/commands/GetChannelCommand.d.ts +16 -0
  13. package/dist-types/commands/GetPlaybackKeyPairCommand.d.ts +16 -0
  14. package/dist-types/commands/GetRecordingConfigurationCommand.d.ts +16 -0
  15. package/dist-types/commands/GetStreamCommand.d.ts +16 -0
  16. package/dist-types/commands/GetStreamKeyCommand.d.ts +16 -0
  17. package/dist-types/commands/GetStreamSessionCommand.d.ts +16 -0
  18. package/dist-types/commands/ImportPlaybackKeyPairCommand.d.ts +16 -0
  19. package/dist-types/commands/ListChannelsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListPlaybackKeyPairsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListRecordingConfigurationsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListStreamKeysCommand.d.ts +16 -0
  23. package/dist-types/commands/ListStreamSessionsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListStreamsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/PutMetadataCommand.d.ts +16 -0
  27. package/dist-types/commands/StopStreamCommand.d.ts +16 -0
  28. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateChannelCommand.d.ts +16 -0
  31. package/dist-types/models/IvsServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +205 -0
  33. package/dist-types/pagination/Interfaces.d.ts +3 -0
  34. package/dist-types/pagination/ListChannelsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListPlaybackKeyPairsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListRecordingConfigurationsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListStreamKeysPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListStreamSessionsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListStreamsPaginator.d.ts +3 -0
  40. package/package.json +3 -3
@@ -29,6 +29,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
29
29
  import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
30
30
  import { IvsClient } from "./IvsClient";
31
31
  /**
32
+ * @public
32
33
  * <p>
33
34
  * <b>Introduction</b>
34
35
  * </p>
@@ -355,24 +356,28 @@ import { IvsClient } from "./IvsClient";
355
356
  */
356
357
  export declare class Ivs extends IvsClient {
357
358
  /**
359
+ * @public
358
360
  * <p>Performs <a>GetChannel</a> on multiple ARNs simultaneously.</p>
359
361
  */
360
362
  batchGetChannel(args: BatchGetChannelCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetChannelCommandOutput>;
361
363
  batchGetChannel(args: BatchGetChannelCommandInput, cb: (err: any, data?: BatchGetChannelCommandOutput) => void): void;
362
364
  batchGetChannel(args: BatchGetChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetChannelCommandOutput) => void): void;
363
365
  /**
366
+ * @public
364
367
  * <p>Performs <a>GetStreamKey</a> on multiple ARNs simultaneously.</p>
365
368
  */
366
369
  batchGetStreamKey(args: BatchGetStreamKeyCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetStreamKeyCommandOutput>;
367
370
  batchGetStreamKey(args: BatchGetStreamKeyCommandInput, cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void): void;
368
371
  batchGetStreamKey(args: BatchGetStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetStreamKeyCommandOutput) => void): void;
369
372
  /**
373
+ * @public
370
374
  * <p>Creates a new channel and an associated stream key to start streaming.</p>
371
375
  */
372
376
  createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
373
377
  createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
374
378
  createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
375
379
  /**
380
+ * @public
376
381
  * <p>Creates a new recording configuration, used to enable recording to Amazon S3.</p>
377
382
  * <p>
378
383
  * <b>Known issue:</b> In the us-east-1 region, if you use the
@@ -390,6 +395,7 @@ export declare class Ivs extends IvsClient {
390
395
  createRecordingConfiguration(args: CreateRecordingConfigurationCommandInput, cb: (err: any, data?: CreateRecordingConfigurationCommandOutput) => void): void;
391
396
  createRecordingConfiguration(args: CreateRecordingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecordingConfigurationCommandOutput) => void): void;
392
397
  /**
398
+ * @public
393
399
  * <p>Creates a stream key, used to initiate a stream, for the specified channel ARN.</p>
394
400
  * <p>Note that <a>CreateChannel</a> creates a stream key. If you subsequently use
395
401
  * CreateStreamKey on the same channel, it will fail because a stream key already exists and
@@ -399,6 +405,7 @@ export declare class Ivs extends IvsClient {
399
405
  createStreamKey(args: CreateStreamKeyCommandInput, cb: (err: any, data?: CreateStreamKeyCommandOutput) => void): void;
400
406
  createStreamKey(args: CreateStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStreamKeyCommandOutput) => void): void;
401
407
  /**
408
+ * @public
402
409
  * <p>Deletes the specified channel and its associated stream keys.</p>
403
410
  * <p>If you try to delete a live channel, you will get an error (409 ConflictException). To
404
411
  * delete a channel that is live, call <a>StopStream</a>, wait for the Amazon
@@ -409,6 +416,7 @@ export declare class Ivs extends IvsClient {
409
416
  deleteChannel(args: DeleteChannelCommandInput, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
410
417
  deleteChannel(args: DeleteChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
411
418
  /**
419
+ * @public
412
420
  * <p>Deletes a specified authorization key pair. This invalidates future viewer tokens
413
421
  * generated using the key pair’s <code>privateKey</code>. For more information, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Setting Up Private
414
422
  * Channels</a> in the <i>Amazon IVS User Guide</i>.</p>
@@ -417,6 +425,7 @@ export declare class Ivs extends IvsClient {
417
425
  deletePlaybackKeyPair(args: DeletePlaybackKeyPairCommandInput, cb: (err: any, data?: DeletePlaybackKeyPairCommandOutput) => void): void;
418
426
  deletePlaybackKeyPair(args: DeletePlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePlaybackKeyPairCommandOutput) => void): void;
419
427
  /**
428
+ * @public
420
429
  * <p>Deletes the recording configuration for the specified ARN.</p>
421
430
  * <p>If you try to delete a recording configuration that is associated with a channel, you will
422
431
  * get an error (409 ConflictException). To avoid this, for all channels that reference the
@@ -428,6 +437,7 @@ export declare class Ivs extends IvsClient {
428
437
  deleteRecordingConfiguration(args: DeleteRecordingConfigurationCommandInput, cb: (err: any, data?: DeleteRecordingConfigurationCommandOutput) => void): void;
429
438
  deleteRecordingConfiguration(args: DeleteRecordingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecordingConfigurationCommandOutput) => void): void;
430
439
  /**
440
+ * @public
431
441
  * <p>Deletes the stream key for the specified ARN, so it can no longer be used to
432
442
  * stream.</p>
433
443
  */
@@ -435,12 +445,14 @@ export declare class Ivs extends IvsClient {
435
445
  deleteStreamKey(args: DeleteStreamKeyCommandInput, cb: (err: any, data?: DeleteStreamKeyCommandOutput) => void): void;
436
446
  deleteStreamKey(args: DeleteStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStreamKeyCommandOutput) => void): void;
437
447
  /**
448
+ * @public
438
449
  * <p>Gets the channel configuration for the specified channel ARN. See also <a>BatchGetChannel</a>.</p>
439
450
  */
440
451
  getChannel(args: GetChannelCommandInput, options?: __HttpHandlerOptions): Promise<GetChannelCommandOutput>;
441
452
  getChannel(args: GetChannelCommandInput, cb: (err: any, data?: GetChannelCommandOutput) => void): void;
442
453
  getChannel(args: GetChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChannelCommandOutput) => void): void;
443
454
  /**
455
+ * @public
444
456
  * <p>Gets a specified playback authorization key pair and returns the <code>arn</code> and
445
457
  * <code>fingerprint</code>. The <code>privateKey</code> held by the caller can be used to
446
458
  * generate viewer authorization tokens, to grant viewers access to private channels. For more
@@ -451,30 +463,35 @@ export declare class Ivs extends IvsClient {
451
463
  getPlaybackKeyPair(args: GetPlaybackKeyPairCommandInput, cb: (err: any, data?: GetPlaybackKeyPairCommandOutput) => void): void;
452
464
  getPlaybackKeyPair(args: GetPlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPlaybackKeyPairCommandOutput) => void): void;
453
465
  /**
466
+ * @public
454
467
  * <p>Gets the recording configuration for the specified ARN.</p>
455
468
  */
456
469
  getRecordingConfiguration(args: GetRecordingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetRecordingConfigurationCommandOutput>;
457
470
  getRecordingConfiguration(args: GetRecordingConfigurationCommandInput, cb: (err: any, data?: GetRecordingConfigurationCommandOutput) => void): void;
458
471
  getRecordingConfiguration(args: GetRecordingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecordingConfigurationCommandOutput) => void): void;
459
472
  /**
473
+ * @public
460
474
  * <p>Gets information about the active (live) stream on a specified channel.</p>
461
475
  */
462
476
  getStream(args: GetStreamCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamCommandOutput>;
463
477
  getStream(args: GetStreamCommandInput, cb: (err: any, data?: GetStreamCommandOutput) => void): void;
464
478
  getStream(args: GetStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamCommandOutput) => void): void;
465
479
  /**
480
+ * @public
466
481
  * <p>Gets stream-key information for a specified ARN.</p>
467
482
  */
468
483
  getStreamKey(args: GetStreamKeyCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamKeyCommandOutput>;
469
484
  getStreamKey(args: GetStreamKeyCommandInput, cb: (err: any, data?: GetStreamKeyCommandOutput) => void): void;
470
485
  getStreamKey(args: GetStreamKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamKeyCommandOutput) => void): void;
471
486
  /**
487
+ * @public
472
488
  * <p>Gets metadata on a specified stream.</p>
473
489
  */
474
490
  getStreamSession(args: GetStreamSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetStreamSessionCommandOutput>;
475
491
  getStreamSession(args: GetStreamSessionCommandInput, cb: (err: any, data?: GetStreamSessionCommandOutput) => void): void;
476
492
  getStreamSession(args: GetStreamSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStreamSessionCommandOutput) => void): void;
477
493
  /**
494
+ * @public
478
495
  * <p>Imports the public portion of a new key pair and returns its <code>arn</code> and
479
496
  * <code>fingerprint</code>. The <code>privateKey</code> can then be used to generate viewer
480
497
  * authorization tokens, to grant viewers access to private channels. For more information, see
@@ -485,6 +502,7 @@ export declare class Ivs extends IvsClient {
485
502
  importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void): void;
486
503
  importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void): void;
487
504
  /**
505
+ * @public
488
506
  * <p>Gets summary information about all channels in your account, in the Amazon Web Services
489
507
  * region where the API request is processed. This list can be filtered to match a specified name
490
508
  * or recording-configuration ARN. Filters are mutually exclusive and cannot be used together. If
@@ -494,6 +512,7 @@ export declare class Ivs extends IvsClient {
494
512
  listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
495
513
  listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
496
514
  /**
515
+ * @public
497
516
  * <p>Gets summary information about playback key pairs. For more information, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Setting Up Private
498
517
  * Channels</a> in the <i>Amazon IVS User Guide</i>.</p>
499
518
  */
@@ -501,6 +520,7 @@ export declare class Ivs extends IvsClient {
501
520
  listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void): void;
502
521
  listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void): void;
503
522
  /**
523
+ * @public
504
524
  * <p>Gets summary information about all recording configurations in your account, in the
505
525
  * Amazon Web Services region where the API request is processed.</p>
506
526
  */
@@ -508,12 +528,14 @@ export declare class Ivs extends IvsClient {
508
528
  listRecordingConfigurations(args: ListRecordingConfigurationsCommandInput, cb: (err: any, data?: ListRecordingConfigurationsCommandOutput) => void): void;
509
529
  listRecordingConfigurations(args: ListRecordingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecordingConfigurationsCommandOutput) => void): void;
510
530
  /**
531
+ * @public
511
532
  * <p>Gets summary information about stream keys for the specified channel.</p>
512
533
  */
513
534
  listStreamKeys(args: ListStreamKeysCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamKeysCommandOutput>;
514
535
  listStreamKeys(args: ListStreamKeysCommandInput, cb: (err: any, data?: ListStreamKeysCommandOutput) => void): void;
515
536
  listStreamKeys(args: ListStreamKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamKeysCommandOutput) => void): void;
516
537
  /**
538
+ * @public
517
539
  * <p>Gets summary information about live streams in your account, in the Amazon Web Services
518
540
  * region where the API request is processed.</p>
519
541
  */
@@ -521,6 +543,7 @@ export declare class Ivs extends IvsClient {
521
543
  listStreams(args: ListStreamsCommandInput, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
522
544
  listStreams(args: ListStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
523
545
  /**
546
+ * @public
524
547
  * <p>Gets a summary of current and previous streams for a specified channel in your account, in
525
548
  * the AWS region where the API request is processed.</p>
526
549
  */
@@ -528,12 +551,14 @@ export declare class Ivs extends IvsClient {
528
551
  listStreamSessions(args: ListStreamSessionsCommandInput, cb: (err: any, data?: ListStreamSessionsCommandOutput) => void): void;
529
552
  listStreamSessions(args: ListStreamSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamSessionsCommandOutput) => void): void;
530
553
  /**
554
+ * @public
531
555
  * <p>Gets information about Amazon Web Services tags for the specified ARN.</p>
532
556
  */
533
557
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
534
558
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
535
559
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
536
560
  /**
561
+ * @public
537
562
  * <p>Inserts metadata into the active stream of the specified channel. At most 5 requests per
538
563
  * second per channel are allowed, each with a maximum 1 KB payload. (If 5 TPS is not sufficient
539
564
  * for your needs, we recommend batching your data into a single PutMetadata call.) At most 155
@@ -544,6 +569,7 @@ export declare class Ivs extends IvsClient {
544
569
  putMetadata(args: PutMetadataCommandInput, cb: (err: any, data?: PutMetadataCommandOutput) => void): void;
545
570
  putMetadata(args: PutMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMetadataCommandOutput) => void): void;
546
571
  /**
572
+ * @public
547
573
  * <p>Disconnects the incoming RTMPS stream for the specified channel. Can be used in
548
574
  * conjunction with <a>DeleteStreamKey</a> to prevent further streaming to a
549
575
  * channel.</p>
@@ -557,18 +583,21 @@ export declare class Ivs extends IvsClient {
557
583
  stopStream(args: StopStreamCommandInput, cb: (err: any, data?: StopStreamCommandOutput) => void): void;
558
584
  stopStream(args: StopStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopStreamCommandOutput) => void): void;
559
585
  /**
586
+ * @public
560
587
  * <p>Adds or updates tags for the Amazon Web Services resource with the specified ARN.</p>
561
588
  */
562
589
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
563
590
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
564
591
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
565
592
  /**
593
+ * @public
566
594
  * <p>Removes tags from the resource with the specified ARN.</p>
567
595
  */
568
596
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
569
597
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
570
598
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
571
599
  /**
600
+ * @public
572
601
  * <p>Updates a channel's configuration. This does not affect an ongoing stream of this channel.
573
602
  * You must stop and restart the stream for the changes to take effect.</p>
574
603
  */
@@ -36,15 +36,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
36
36
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
37
37
  import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
38
38
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
39
+ /**
40
+ * @public
41
+ */
39
42
  export type ServiceInputTypes = BatchGetChannelCommandInput | BatchGetStreamKeyCommandInput | CreateChannelCommandInput | CreateRecordingConfigurationCommandInput | CreateStreamKeyCommandInput | DeleteChannelCommandInput | DeletePlaybackKeyPairCommandInput | DeleteRecordingConfigurationCommandInput | DeleteStreamKeyCommandInput | GetChannelCommandInput | GetPlaybackKeyPairCommandInput | GetRecordingConfigurationCommandInput | GetStreamCommandInput | GetStreamKeyCommandInput | GetStreamSessionCommandInput | ImportPlaybackKeyPairCommandInput | ListChannelsCommandInput | ListPlaybackKeyPairsCommandInput | ListRecordingConfigurationsCommandInput | ListStreamKeysCommandInput | ListStreamSessionsCommandInput | ListStreamsCommandInput | ListTagsForResourceCommandInput | PutMetadataCommandInput | StopStreamCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput;
43
+ /**
44
+ * @public
45
+ */
40
46
  export type ServiceOutputTypes = BatchGetChannelCommandOutput | BatchGetStreamKeyCommandOutput | CreateChannelCommandOutput | CreateRecordingConfigurationCommandOutput | CreateStreamKeyCommandOutput | DeleteChannelCommandOutput | DeletePlaybackKeyPairCommandOutput | DeleteRecordingConfigurationCommandOutput | DeleteStreamKeyCommandOutput | GetChannelCommandOutput | GetPlaybackKeyPairCommandOutput | GetRecordingConfigurationCommandOutput | GetStreamCommandOutput | GetStreamKeyCommandOutput | GetStreamSessionCommandOutput | ImportPlaybackKeyPairCommandOutput | ListChannelsCommandOutput | ListPlaybackKeyPairsCommandOutput | ListRecordingConfigurationsCommandOutput | ListStreamKeysCommandOutput | ListStreamSessionsCommandOutput | ListStreamsCommandOutput | ListTagsForResourceCommandOutput | PutMetadataCommandOutput | StopStreamCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput;
47
+ /**
48
+ * @public
49
+ */
41
50
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
42
51
  /**
43
52
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
44
53
  */
45
54
  requestHandler?: __HttpHandler;
46
55
  /**
47
- * A constructor for a class implementing the {@link __Checksum} interface
56
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
48
57
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
49
58
  * @internal
50
59
  */
@@ -134,23 +143,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
134
143
  */
135
144
  logger?: __Logger;
136
145
  /**
137
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
146
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
138
147
  */
139
148
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
140
149
  }
150
+ /**
151
+ * @public
152
+ */
141
153
  type IvsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
142
154
  /**
143
- * The configuration interface of IvsClient class constructor that set the region, credentials and other options.
155
+ * @public
156
+ *
157
+ * The configuration interface of IvsClient class constructor that set the region, credentials and other options.
144
158
  */
145
159
  export interface IvsClientConfig extends IvsClientConfigType {
146
160
  }
161
+ /**
162
+ * @public
163
+ */
147
164
  type IvsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
148
165
  /**
149
- * The resolved configuration interface of IvsClient class. This is resolved and normalized from the {@link IvsClientConfig | constructor configuration interface}.
166
+ * @public
167
+ *
168
+ * The resolved configuration interface of IvsClient class. This is resolved and normalized from the {@link IvsClientConfig | constructor configuration interface}.
150
169
  */
151
170
  export interface IvsClientResolvedConfig extends IvsClientResolvedConfigType {
152
171
  }
153
172
  /**
173
+ * @public
154
174
  * <p>
155
175
  * <b>Introduction</b>
156
176
  * </p>
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { BatchGetChannelRequest, BatchGetChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchGetChannelCommand}.
8
10
  */
9
11
  export interface BatchGetChannelCommandInput extends BatchGetChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchGetChannelCommand}.
13
17
  */
14
18
  export interface BatchGetChannelCommandOutput extends BatchGetChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Performs <a>GetChannel</a> on multiple ARNs simultaneously.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchGetChannelCommandOutput extends BatchGetChannelResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchGetChannelCommandInput - {@link BatchGetChannelCommandInput}
34
+ * @returns {@link BatchGetChannelCommandOutput}
28
35
  * @see {@link BatchGetChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchGetChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -34,11 +41,20 @@ export interface BatchGetChannelCommandOutput extends BatchGetChannelResponse, _
34
41
  export declare class BatchGetChannelCommand extends $Command<BatchGetChannelCommandInput, BatchGetChannelCommandOutput, IvsClientResolvedConfig> {
35
42
  readonly input: BatchGetChannelCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: BatchGetChannelCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetChannelCommandInput, BatchGetChannelCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { BatchGetStreamKeyRequest, BatchGetStreamKeyResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchGetStreamKeyCommand}.
8
10
  */
9
11
  export interface BatchGetStreamKeyCommandInput extends BatchGetStreamKeyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchGetStreamKeyCommand}.
13
17
  */
14
18
  export interface BatchGetStreamKeyCommandOutput extends BatchGetStreamKeyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Performs <a>GetStreamKey</a> on multiple ARNs simultaneously.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface BatchGetStreamKeyCommandOutput extends BatchGetStreamKeyRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param BatchGetStreamKeyCommandInput - {@link BatchGetStreamKeyCommandInput}
34
+ * @returns {@link BatchGetStreamKeyCommandOutput}
28
35
  * @see {@link BatchGetStreamKeyCommandInput} for command's `input` shape.
29
36
  * @see {@link BatchGetStreamKeyCommandOutput} for command's `response` shape.
30
37
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -34,11 +41,20 @@ export interface BatchGetStreamKeyCommandOutput extends BatchGetStreamKeyRespons
34
41
  export declare class BatchGetStreamKeyCommand extends $Command<BatchGetStreamKeyCommandInput, BatchGetStreamKeyCommandOutput, IvsClientResolvedConfig> {
35
42
  readonly input: BatchGetStreamKeyCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: BatchGetStreamKeyCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetStreamKeyCommandInput, BatchGetStreamKeyCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateChannelCommand}.
8
10
  */
9
11
  export interface CreateChannelCommandInput extends CreateChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateChannelCommand}.
13
17
  */
14
18
  export interface CreateChannelCommandOutput extends CreateChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new channel and an associated stream key to start streaming.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateChannelCommandInput - {@link CreateChannelCommandInput}
34
+ * @returns {@link CreateChannelCommandOutput}
28
35
  * @see {@link CreateChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
49
56
  export declare class CreateChannelCommand extends $Command<CreateChannelCommandInput, CreateChannelCommandOutput, IvsClientResolvedConfig> {
50
57
  readonly input: CreateChannelCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateChannelCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateChannelCommandInput, CreateChannelCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { CreateRecordingConfigurationRequest, CreateRecordingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateRecordingConfigurationCommand}.
8
10
  */
9
11
  export interface CreateRecordingConfigurationCommandInput extends CreateRecordingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateRecordingConfigurationCommand}.
13
17
  */
14
18
  export interface CreateRecordingConfigurationCommandOutput extends CreateRecordingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new recording configuration, used to enable recording to Amazon S3.</p>
18
23
  * <p>
19
24
  * <b>Known issue:</b> In the us-east-1 region, if you use the
@@ -36,6 +41,8 @@ export interface CreateRecordingConfigurationCommandOutput extends CreateRecordi
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param CreateRecordingConfigurationCommandInput - {@link CreateRecordingConfigurationCommandInput}
45
+ * @returns {@link CreateRecordingConfigurationCommandOutput}
39
46
  * @see {@link CreateRecordingConfigurationCommandInput} for command's `input` shape.
40
47
  * @see {@link CreateRecordingConfigurationCommandOutput} for command's `response` shape.
41
48
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -63,11 +70,20 @@ export interface CreateRecordingConfigurationCommandOutput extends CreateRecordi
63
70
  export declare class CreateRecordingConfigurationCommand extends $Command<CreateRecordingConfigurationCommandInput, CreateRecordingConfigurationCommandOutput, IvsClientResolvedConfig> {
64
71
  readonly input: CreateRecordingConfigurationCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: CreateRecordingConfigurationCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRecordingConfigurationCommandInput, CreateRecordingConfigurationCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { CreateStreamKeyRequest, CreateStreamKeyResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateStreamKeyCommand}.
8
10
  */
9
11
  export interface CreateStreamKeyCommandInput extends CreateStreamKeyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateStreamKeyCommand}.
13
17
  */
14
18
  export interface CreateStreamKeyCommandOutput extends CreateStreamKeyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a stream key, used to initiate a stream, for the specified channel ARN.</p>
18
23
  * <p>Note that <a>CreateChannel</a> creates a stream key. If you subsequently use
19
24
  * CreateStreamKey on the same channel, it will fail because a stream key already exists and
@@ -28,6 +33,8 @@ export interface CreateStreamKeyCommandOutput extends CreateStreamKeyResponse, _
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param CreateStreamKeyCommandInput - {@link CreateStreamKeyCommandInput}
37
+ * @returns {@link CreateStreamKeyCommandOutput}
31
38
  * @see {@link CreateStreamKeyCommandInput} for command's `input` shape.
32
39
  * @see {@link CreateStreamKeyCommandOutput} for command's `response` shape.
33
40
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateStreamKeyCommandOutput extends CreateStreamKeyResponse, _
52
59
  export declare class CreateStreamKeyCommand extends $Command<CreateStreamKeyCommandInput, CreateStreamKeyCommandOutput, IvsClientResolvedConfig> {
53
60
  readonly input: CreateStreamKeyCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateStreamKeyCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateStreamKeyCommandInput, CreateStreamKeyCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { DeleteChannelRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteChannelCommand}.
8
10
  */
9
11
  export interface DeleteChannelCommandInput extends DeleteChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteChannelCommand}.
13
17
  */
14
18
  export interface DeleteChannelCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified channel and its associated stream keys.</p>
18
23
  * <p>If you try to delete a live channel, you will get an error (409 ConflictException). To
19
24
  * delete a channel that is live, call <a>StopStream</a>, wait for the Amazon
@@ -29,6 +34,8 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DeleteChannelCommandInput - {@link DeleteChannelCommandInput}
38
+ * @returns {@link DeleteChannelCommandOutput}
32
39
  * @see {@link DeleteChannelCommandInput} for command's `input` shape.
33
40
  * @see {@link DeleteChannelCommandOutput} for command's `response` shape.
34
41
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -53,11 +60,20 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {
53
60
  export declare class DeleteChannelCommand extends $Command<DeleteChannelCommandInput, DeleteChannelCommandOutput, IvsClientResolvedConfig> {
54
61
  readonly input: DeleteChannelCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: DeleteChannelCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteChannelCommandInput, DeleteChannelCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
5
5
  import { DeletePlaybackKeyPairRequest, DeletePlaybackKeyPairResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePlaybackKeyPairCommand}.
8
10
  */
9
11
  export interface DeletePlaybackKeyPairCommandInput extends DeletePlaybackKeyPairRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePlaybackKeyPairCommand}.
13
17
  */
14
18
  export interface DeletePlaybackKeyPairCommandOutput extends DeletePlaybackKeyPairResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a specified authorization key pair. This invalidates future viewer tokens
18
23
  * generated using the key pair’s <code>privateKey</code>. For more information, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Setting Up Private
19
24
  * Channels</a> in the <i>Amazon IVS User Guide</i>.</p>
@@ -27,6 +32,8 @@ export interface DeletePlaybackKeyPairCommandOutput extends DeletePlaybackKeyPai
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeletePlaybackKeyPairCommandInput - {@link DeletePlaybackKeyPairCommandInput}
36
+ * @returns {@link DeletePlaybackKeyPairCommandOutput}
30
37
  * @see {@link DeletePlaybackKeyPairCommandInput} for command's `input` shape.
31
38
  * @see {@link DeletePlaybackKeyPairCommandOutput} for command's `response` shape.
32
39
  * @see {@link IvsClientResolvedConfig | config} for IvsClient's `config` shape.
@@ -48,11 +55,20 @@ export interface DeletePlaybackKeyPairCommandOutput extends DeletePlaybackKeyPai
48
55
  export declare class DeletePlaybackKeyPairCommand extends $Command<DeletePlaybackKeyPairCommandInput, DeletePlaybackKeyPairCommandOutput, IvsClientResolvedConfig> {
49
56
  readonly input: DeletePlaybackKeyPairCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: DeletePlaybackKeyPairCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePlaybackKeyPairCommandInput, DeletePlaybackKeyPairCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }