You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-kinesis-video): Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API.
if(typeofoptionsOrCb!=="object")thrownewError(`Expect http options but get ${typeofoptionsOrCb}`);
309
+
this.send(command,optionsOrCb||{},cb);
310
+
}else{
311
+
returnthis.send(command,optionsOrCb);
312
+
}
313
+
}
314
+
231
315
/**
232
316
* <p>Returns the most current information about the signaling channel. You must specify
233
317
* either the name or the Amazon Resource Name (ARN) of the channel that you want to
@@ -351,8 +435,8 @@ export class KinesisVideo extends KinesisVideoClient {
351
435
* <code>Role</code> determines the messaging permissions. A <code>MASTER</code> role
352
436
* results in this API generating an endpoint that a client can use to communicate with any
353
437
* of the viewers on the channel. A <code>VIEWER</code> role results in this API generating
354
-
* an endpoint that a client can use to communicate only with a
355
-
* <code>MASTER</code>. </p>
438
+
* an endpoint that a client can use to communicate only with a <code>MASTER</code>.
439
+
* </p>
356
440
*/
357
441
publicgetSignalingChannelEndpoint(
358
442
args: GetSignalingChannelEndpointCommandInput,
@@ -385,8 +469,8 @@ export class KinesisVideo extends KinesisVideoClient {
385
469
386
470
/**
387
471
* <p>Returns an array of <code>ChannelInfo</code> objects. Each object describes a
388
-
* signaling channel. To retrieve only those channels that satisfy a specific condition, you can
389
-
* specify a <code>ChannelNameCondition</code>.</p>
472
+
* signaling channel. To retrieve only those channels that satisfy a specific condition,
473
+
* you can specify a <code>ChannelNameCondition</code>.</p>
390
474
*/
391
475
publiclistSignalingChannels(
392
476
args: ListSignalingChannelsCommandInput,
@@ -513,10 +597,10 @@ export class KinesisVideo extends KinesisVideoClient {
513
597
514
598
/**
515
599
* <p>Adds one or more tags to a signaling channel. A <i>tag</i> is a
516
-
* key-value pair (the value is optional) that you can define and assign to AWS resources.
600
+
* key-value pair (the value is optional) that you can define and assign to Amazon Web Services resources.
517
601
* If you specify a tag that already exists, the tag value is replaced with the value that
518
602
* you specify in the request. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation
519
-
* Tags</a> in the <i>AWS Billing and Cost Management User
603
+
* Tags</a> in the <i>Billing and Cost Management and Cost Management User
@@ -544,15 +628,15 @@ export class KinesisVideo extends KinesisVideoClient {
544
628
545
629
/**
546
630
* <p>Adds one or more tags to a stream. A <i>tag</i> is a key-value pair
547
-
* (the value is optional) that you can define and assign to AWS resources. If you specify
631
+
* (the value is optional) that you can define and assign to Amazon Web Services resources. If you specify
548
632
* a tag that already exists, the tag value is replaced with the value that you specify in
549
633
* the request. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation
550
-
* Tags</a> in the <i>AWS Billing and Cost Management User Guide</i>. </p>
634
+
* Tags</a> in the <i>Billing and Cost Management and Cost Management User Guide</i>. </p>
551
635
* <p>You must provide either the <code>StreamName</code> or the
552
636
* <code>StreamARN</code>.</p>
553
637
* <p>This operation requires permission for the <code>KinesisVideo:TagStream</code>
554
638
* action.</p>
555
-
* <p>Kinesis video streams support up to 50 tags.</p>
639
+
* <p>A Kinesis video stream can support up to 50 tags.</p>
0 commit comments