@aws-sdk/client-kinesis-video 3.379.1 → 3.382.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.
@@ -91,6 +91,7 @@ export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType];
91
91
  */
92
92
  export interface SingleMasterConfiguration {
93
93
  /**
94
+ * @public
94
95
  * <p>The period of time a signaling channel retains undelivered messages before they are
95
96
  * discarded.</p>
96
97
  */
@@ -102,31 +103,38 @@ export interface SingleMasterConfiguration {
102
103
  */
103
104
  export interface ChannelInfo {
104
105
  /**
106
+ * @public
105
107
  * <p>The name of the signaling channel.</p>
106
108
  */
107
109
  ChannelName?: string;
108
110
  /**
111
+ * @public
109
112
  * <p>The Amazon Resource Name (ARN) of the signaling channel.</p>
110
113
  */
111
114
  ChannelARN?: string;
112
115
  /**
116
+ * @public
113
117
  * <p>The type of the signaling channel.</p>
114
118
  */
115
119
  ChannelType?: ChannelType | string;
116
120
  /**
121
+ * @public
117
122
  * <p>Current status of the signaling channel.</p>
118
123
  */
119
124
  ChannelStatus?: Status | string;
120
125
  /**
126
+ * @public
121
127
  * <p>The time at which the signaling channel was created.</p>
122
128
  */
123
129
  CreationTime?: Date;
124
130
  /**
131
+ * @public
125
132
  * <p>A structure that contains the configuration for the <code>SINGLE_MASTER</code> channel
126
133
  * type.</p>
127
134
  */
128
135
  SingleMasterConfiguration?: SingleMasterConfiguration;
129
136
  /**
137
+ * @public
130
138
  * <p>The current version of the signaling channel.</p>
131
139
  */
132
140
  Version?: string;
@@ -151,11 +159,13 @@ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof Compar
151
159
  */
152
160
  export interface ChannelNameCondition {
153
161
  /**
162
+ * @public
154
163
  * <p>A comparison operator. Currently, you can only specify the <code>BEGINS_WITH</code>
155
164
  * operator, which finds signaling channels whose names begin with a given prefix.</p>
156
165
  */
157
166
  ComparisonOperator?: ComparisonOperator | string;
158
167
  /**
168
+ * @public
159
169
  * <p>A value to compare.</p>
160
170
  */
161
171
  ComparisonValue?: string;
@@ -217,10 +227,12 @@ export type ConfigurationStatus = (typeof ConfigurationStatus)[keyof typeof Conf
217
227
  */
218
228
  export interface Tag {
219
229
  /**
230
+ * @public
220
231
  * <p>The key of the tag that is associated with the specified signaling channel.</p>
221
232
  */
222
233
  Key: string | undefined;
223
234
  /**
235
+ * @public
224
236
  * <p>The value of the tag that is associated with the specified signaling channel.</p>
225
237
  */
226
238
  Value: string | undefined;
@@ -230,20 +242,24 @@ export interface Tag {
230
242
  */
231
243
  export interface CreateSignalingChannelInput {
232
244
  /**
245
+ * @public
233
246
  * <p>A name for the signaling channel that you are creating. It must be unique for each Amazon Web Services account and Amazon Web Services Region.</p>
234
247
  */
235
248
  ChannelName: string | undefined;
236
249
  /**
250
+ * @public
237
251
  * <p>A type of the signaling channel that you are creating. Currently,
238
252
  * <code>SINGLE_MASTER</code> is the only supported channel type. </p>
239
253
  */
240
254
  ChannelType?: ChannelType | string;
241
255
  /**
256
+ * @public
242
257
  * <p>A structure containing the configuration for the <code>SINGLE_MASTER</code> channel
243
258
  * type. </p>
244
259
  */
245
260
  SingleMasterConfiguration?: SingleMasterConfiguration;
246
261
  /**
262
+ * @public
247
263
  * <p>A set of tags (key-value pairs) that you want to associate with this channel.</p>
248
264
  */
249
265
  Tags?: Tag[];
@@ -253,6 +269,7 @@ export interface CreateSignalingChannelInput {
253
269
  */
254
270
  export interface CreateSignalingChannelOutput {
255
271
  /**
272
+ * @public
256
273
  * <p>The Amazon Resource Name (ARN) of the created channel.</p>
257
274
  */
258
275
  ChannelARN?: string;
@@ -319,6 +336,7 @@ export declare class TagsPerResourceExceededLimitException extends __BaseExcepti
319
336
  */
320
337
  export interface CreateStreamInput {
321
338
  /**
339
+ * @public
322
340
  * <p>The name of the device that is writing to the stream. </p>
323
341
  * <note>
324
342
  * <p>In the current implementation, Kinesis Video Streams does not use this
@@ -327,12 +345,14 @@ export interface CreateStreamInput {
327
345
  */
328
346
  DeviceName?: string;
329
347
  /**
348
+ * @public
330
349
  * <p>A name for the stream that you are creating.</p>
331
350
  * <p>The stream name is an identifier for the stream, and must be unique for each
332
351
  * account and region.</p>
333
352
  */
334
353
  StreamName: string | undefined;
335
354
  /**
355
+ * @public
336
356
  * <p>The media type of the stream. Consumers of the stream can use this information when
337
357
  * processing the stream. For more information about media types, see <a href="http://www.iana.org/assignments/media-types/media-types.xhtml">Media
338
358
  * Types</a>. If you choose to specify the <code>MediaType</code>, see <a href="https://tools.ietf.org/html/rfc6838#section-4.2">Naming Requirements</a>
@@ -343,6 +363,7 @@ export interface CreateStreamInput {
343
363
  */
344
364
  MediaType?: string;
345
365
  /**
366
+ * @public
346
367
  * <p>The ID of the Key Management Service (KMS) key that you want Kinesis Video
347
368
  * Streams to use to encrypt stream data.</p>
348
369
  * <p>If no key ID is specified, the default, Kinesis Video-managed key
@@ -351,6 +372,7 @@ export interface CreateStreamInput {
351
372
  */
352
373
  KmsKeyId?: string;
353
374
  /**
375
+ * @public
354
376
  * <p>The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream.</p>
355
377
  * <p>The default value is 0, indicating that the stream does not persist data.</p>
356
378
  * <p>When the <code>DataRetentionInHours</code> value is 0, consumers can still consume
@@ -360,6 +382,7 @@ export interface CreateStreamInput {
360
382
  */
361
383
  DataRetentionInHours?: number;
362
384
  /**
385
+ * @public
363
386
  * <p>A list of tags to associate with the specified stream. Each tag is a key-value pair
364
387
  * (the value is optional).</p>
365
388
  */
@@ -370,6 +393,7 @@ export interface CreateStreamInput {
370
393
  */
371
394
  export interface CreateStreamOutput {
372
395
  /**
396
+ * @public
373
397
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
374
398
  */
375
399
  StreamARN?: string;
@@ -406,10 +430,12 @@ export declare class InvalidDeviceException extends __BaseException {
406
430
  */
407
431
  export interface DeleteEdgeConfigurationInput {
408
432
  /**
433
+ * @public
409
434
  * <p>The name of the stream from which to delete the edge configuration. Specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
410
435
  */
411
436
  StreamName?: string;
412
437
  /**
438
+ * @public
413
439
  * <p>The Amazon Resource Name (ARN) of the stream. Specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
414
440
  */
415
441
  StreamARN?: string;
@@ -451,11 +477,13 @@ export declare class StreamEdgeConfigurationNotFoundException extends __BaseExce
451
477
  */
452
478
  export interface DeleteSignalingChannelInput {
453
479
  /**
480
+ * @public
454
481
  * <p>The Amazon Resource Name (ARN) of the signaling channel that you want to
455
482
  * delete.</p>
456
483
  */
457
484
  ChannelARN: string | undefined;
458
485
  /**
486
+ * @public
459
487
  * <p>The current version of the signaling channel that you want to delete. You can obtain
460
488
  * the current version by invoking the <code>DescribeSignalingChannel</code> or
461
489
  * <code>ListSignalingChannels</code> API operations.</p>
@@ -487,10 +515,12 @@ export declare class VersionMismatchException extends __BaseException {
487
515
  */
488
516
  export interface DeleteStreamInput {
489
517
  /**
518
+ * @public
490
519
  * <p>The Amazon Resource Name (ARN) of the stream that you want to delete. </p>
491
520
  */
492
521
  StreamARN: string | undefined;
493
522
  /**
523
+ * @public
494
524
  * <p>Optional: The version of the stream that you want to delete. </p>
495
525
  * <p>Specify the version as a safeguard to ensure that your are deleting the correct
496
526
  * stream. To get the stream version, use the <code>DescribeStream</code> API.</p>
@@ -538,10 +568,12 @@ export type StrategyOnFullSize = (typeof StrategyOnFullSize)[keyof typeof Strate
538
568
  */
539
569
  export interface LocalSizeConfig {
540
570
  /**
571
+ * @public
541
572
  * <p>The overall maximum size of the media that you want to store for a stream on the Edge Agent. </p>
542
573
  */
543
574
  MaxLocalMediaSizeInMB?: number;
544
575
  /**
576
+ * @public
545
577
  * <p>The strategy to perform when a stream’s <code>MaxLocalMediaSizeInMB</code> limit is reached.</p>
546
578
  */
547
579
  StrategyOnFullSize?: StrategyOnFullSize | string;
@@ -552,15 +584,18 @@ export interface LocalSizeConfig {
552
584
  */
553
585
  export interface DeletionConfig {
554
586
  /**
587
+ * @public
555
588
  * <p>The number of hours that you want to retain the data in the stream on the Edge Agent. The default value of the retention
556
589
  * time is 720 hours, which translates to 30 days.</p>
557
590
  */
558
591
  EdgeRetentionInHours?: number;
559
592
  /**
593
+ * @public
560
594
  * <p>The value of the local size required in order to delete the edge configuration.</p>
561
595
  */
562
596
  LocalSizeConfig?: LocalSizeConfig;
563
597
  /**
598
+ * @public
564
599
  * <p>The <code>boolean</code> value used to indicate whether or not you want to mark the media for deletion, once it has been uploaded to
565
600
  * the Kinesis Video Stream cloud. The media files can be deleted if any of the deletion configuration values are
566
601
  * set to <code>true</code>, such as when the limit for the <code>EdgeRetentionInHours</code>, or the
@@ -576,12 +611,14 @@ export interface DeletionConfig {
576
611
  */
577
612
  export interface DescribeEdgeConfigurationInput {
578
613
  /**
614
+ * @public
579
615
  * <p>The name of the stream whose edge configuration you want to update. Specify either the <code>StreamName</code> or
580
616
  * the <code>StreamARN</code>.
581
617
  * </p>
582
618
  */
583
619
  StreamName?: string;
584
620
  /**
621
+ * @public
585
622
  * <p>The Amazon Resource Name (ARN) of the stream. Specify either the <code>StreamName</code>or the <code>StreamARN</code>.</p>
586
623
  */
587
624
  StreamARN?: string;
@@ -605,18 +642,22 @@ export type RecorderStatus = (typeof RecorderStatus)[keyof typeof RecorderStatus
605
642
  */
606
643
  export interface LastRecorderStatus {
607
644
  /**
645
+ * @public
608
646
  * <p>A description of a recorder job’s latest status.</p>
609
647
  */
610
648
  JobStatusDetails?: string;
611
649
  /**
650
+ * @public
612
651
  * <p>The timestamp at which the recorder job was last executed and media stored to local disk.</p>
613
652
  */
614
653
  LastCollectedTime?: Date;
615
654
  /**
655
+ * @public
616
656
  * <p>The timestamp at which the recorder status was last updated.</p>
617
657
  */
618
658
  LastUpdatedTime?: Date;
619
659
  /**
660
+ * @public
620
661
  * <p>The status of the latest recorder job.</p>
621
662
  */
622
663
  RecorderStatus?: RecorderStatus | string;
@@ -640,18 +681,22 @@ export type UploaderStatus = (typeof UploaderStatus)[keyof typeof UploaderStatus
640
681
  */
641
682
  export interface LastUploaderStatus {
642
683
  /**
684
+ * @public
643
685
  * <p>A description of an uploader job’s latest status.</p>
644
686
  */
645
687
  JobStatusDetails?: string;
646
688
  /**
689
+ * @public
647
690
  * <p>The timestamp at which the uploader job was last executed and media collected to the cloud.</p>
648
691
  */
649
692
  LastCollectedTime?: Date;
650
693
  /**
694
+ * @public
651
695
  * <p>The timestamp at which the uploader status was last updated.</p>
652
696
  */
653
697
  LastUpdatedTime?: Date;
654
698
  /**
699
+ * @public
655
700
  * <p>The status of the latest uploader job.</p>
656
701
  */
657
702
  UploaderStatus?: UploaderStatus | string;
@@ -662,10 +707,12 @@ export interface LastUploaderStatus {
662
707
  */
663
708
  export interface EdgeAgentStatus {
664
709
  /**
710
+ * @public
665
711
  * <p>The latest status of a stream’s edge recording job.</p>
666
712
  */
667
713
  LastRecorderStatus?: LastRecorderStatus;
668
714
  /**
715
+ * @public
669
716
  * <p>The latest status of a stream’s edge to cloud uploader job.</p>
670
717
  */
671
718
  LastUploaderStatus?: LastUploaderStatus;
@@ -690,10 +737,12 @@ export type MediaUriType = (typeof MediaUriType)[keyof typeof MediaUriType];
690
737
  */
691
738
  export interface MediaSourceConfig {
692
739
  /**
740
+ * @public
693
741
  * <p>The Amazon Web Services Secrets Manager ARN for the username and password of the camera, or a local media file location.</p>
694
742
  */
695
743
  MediaUriSecretArn: string | undefined;
696
744
  /**
745
+ * @public
697
746
  * <p>The Uniform Resource Identifier (URI) type. The <code>FILE_URI</code> value can be used to stream
698
747
  * local media files.</p>
699
748
  * <note>
@@ -714,6 +763,7 @@ export interface MediaSourceConfig {
714
763
  */
715
764
  export interface ScheduleConfig {
716
765
  /**
766
+ * @public
717
767
  * <p>The Quartz cron expression that takes care of scheduling jobs to record from the
718
768
  * camera, or local media file, onto the Edge Agent. If the <code>ScheduleExpression</code> is not provided for the <code>RecorderConfig</code>,
719
769
  * then the Edge Agent will always be set to recording mode.</p>
@@ -724,6 +774,7 @@ export interface ScheduleConfig {
724
774
  */
725
775
  ScheduleExpression: string | undefined;
726
776
  /**
777
+ * @public
727
778
  * <p>The total duration to record the media. If the <code>ScheduleExpression</code> attribute is provided, then the
728
779
  * <code>DurationInSeconds</code> attribute should also be specified.</p>
729
780
  */
@@ -736,6 +787,7 @@ export interface ScheduleConfig {
736
787
  */
737
788
  export interface RecorderConfig {
738
789
  /**
790
+ * @public
739
791
  * <p>The configuration details that consist of the credentials required
740
792
  * (<code>MediaUriSecretArn</code> and <code>MediaUriType</code>) to access the media files
741
793
  * streamed to the camera.
@@ -743,6 +795,7 @@ export interface RecorderConfig {
743
795
  */
744
796
  MediaSourceConfig: MediaSourceConfig | undefined;
745
797
  /**
798
+ * @public
746
799
  * <p>The configuration that consists of the <code>ScheduleExpression</code> and the
747
800
  * <code>DurationInMinutes</code> details that specify the scheduling to record from a camera, or
748
801
  * local media file, onto the Edge Agent. If the <code>ScheduleExpression</code> attribute is not provided,
@@ -760,6 +813,7 @@ export interface RecorderConfig {
760
813
  */
761
814
  export interface UploaderConfig {
762
815
  /**
816
+ * @public
763
817
  * <p>The configuration that consists of the <code>ScheduleExpression</code> and the
764
818
  * <code>DurationInMinutes</code> details that specify the scheduling to record from a camera, or
765
819
  * local media file, onto the Edge Agent. If the <code>ScheduleConfig</code> is not provided in this <code>UploaderConfig</code>,
@@ -775,20 +829,24 @@ export interface UploaderConfig {
775
829
  */
776
830
  export interface EdgeConfig {
777
831
  /**
832
+ * @public
778
833
  * <p>The "<b>Internet of Things (IoT) Thing</b>" Arn of the stream.</p>
779
834
  */
780
835
  HubDeviceArn: string | undefined;
781
836
  /**
837
+ * @public
782
838
  * <p>The recorder configuration consists of the local <code>MediaSourceConfig</code> details, that are used as
783
839
  * credentials to access the local media files streamed on the camera. </p>
784
840
  */
785
841
  RecorderConfig: RecorderConfig | undefined;
786
842
  /**
843
+ * @public
787
844
  * <p>The uploader configuration contains the <code>ScheduleExpression</code> details that are used to
788
845
  * schedule upload jobs for the recorded media files from the Edge Agent to a Kinesis Video Stream.</p>
789
846
  */
790
847
  UploaderConfig?: UploaderConfig;
791
848
  /**
849
+ * @public
792
850
  * <p>The deletion configuration is made up of the retention time (<code>EdgeRetentionInHours</code>) and local size configuration
793
851
  * (<code>LocalSizeConfig</code>) details that are used to make the deletion.</p>
794
852
  */
@@ -816,36 +874,44 @@ export type SyncStatus = (typeof SyncStatus)[keyof typeof SyncStatus];
816
874
  */
817
875
  export interface DescribeEdgeConfigurationOutput {
818
876
  /**
877
+ * @public
819
878
  * <p>The name of the stream from which the edge configuration was updated.</p>
820
879
  */
821
880
  StreamName?: string;
822
881
  /**
882
+ * @public
823
883
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
824
884
  */
825
885
  StreamARN?: string;
826
886
  /**
887
+ * @public
827
888
  * <p>The timestamp at which a stream’s edge configuration was first created.</p>
828
889
  */
829
890
  CreationTime?: Date;
830
891
  /**
892
+ * @public
831
893
  * <p>The timestamp at which a stream’s edge configuration was last updated.</p>
832
894
  */
833
895
  LastUpdatedTime?: Date;
834
896
  /**
897
+ * @public
835
898
  * <p>The latest status of the edge configuration update.</p>
836
899
  */
837
900
  SyncStatus?: SyncStatus | string;
838
901
  /**
902
+ * @public
839
903
  * <p>A description of the generated failure status.</p>
840
904
  */
841
905
  FailedStatusDetails?: string;
842
906
  /**
907
+ * @public
843
908
  * <p>A description of the stream's edge configuration that will be used to sync
844
909
  * with the Edge Agent IoT Greengrass component. The Edge Agent component will run
845
910
  * on an IoT Hub Device setup at your premise.</p>
846
911
  */
847
912
  EdgeConfig?: EdgeConfig;
848
913
  /**
914
+ * @public
849
915
  * <p>An object that contains the latest status details for an edge agent's recorder and uploader jobs. Use this information to determine the current health of an edge agent.</p>
850
916
  */
851
917
  EdgeAgentStatus?: EdgeAgentStatus;
@@ -855,10 +921,12 @@ export interface DescribeEdgeConfigurationOutput {
855
921
  */
856
922
  export interface DescribeImageGenerationConfigurationInput {
857
923
  /**
924
+ * @public
858
925
  * <p>The name of the stream from which to retrieve the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>. </p>
859
926
  */
860
927
  StreamName?: string;
861
928
  /**
929
+ * @public
862
930
  * <p>The Amazon Resource Name (ARN) of the Kinesis video stream from which to retrieve the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
863
931
  */
864
932
  StreamARN?: string;
@@ -869,10 +937,12 @@ export interface DescribeImageGenerationConfigurationInput {
869
937
  */
870
938
  export interface ImageGenerationDestinationConfig {
871
939
  /**
940
+ * @public
872
941
  * <p>The Uniform Resource Identifier (URI) that identifies where the images will be delivered.</p>
873
942
  */
874
943
  Uri: string | undefined;
875
944
  /**
945
+ * @public
876
946
  * <p>The Amazon Web Services Region of the S3 bucket where images will be delivered. This <code>DestinationRegion</code> must match the Region where the stream is located.</p>
877
947
  */
878
948
  DestinationRegion: string | undefined;
@@ -918,28 +988,34 @@ export type ImageSelectorType = (typeof ImageSelectorType)[keyof typeof ImageSel
918
988
  */
919
989
  export interface ImageGenerationConfiguration {
920
990
  /**
991
+ * @public
921
992
  * <p>Indicates whether the <code>ContinuousImageGenerationConfigurations</code> API is enabled or disabled.</p>
922
993
  */
923
994
  Status: ConfigurationStatus | string | undefined;
924
995
  /**
996
+ * @public
925
997
  * <p>The origin of the Server or Producer timestamps to use to generate the images.</p>
926
998
  */
927
999
  ImageSelectorType: ImageSelectorType | string | undefined;
928
1000
  /**
1001
+ * @public
929
1002
  * <p>The structure that contains the information required to deliver images to a customer.</p>
930
1003
  */
931
1004
  DestinationConfig: ImageGenerationDestinationConfig | undefined;
932
1005
  /**
1006
+ * @public
933
1007
  * <p>The time interval in milliseconds (ms) at which the images need to be generated from the stream. The minimum value that can be provided is 33 ms,
934
1008
  * because a camera that generates content at 30 FPS would create a frame every 33.3 ms. If the timestamp range is less than the sampling interval, the
935
1009
  * Image from the <code>StartTimestamp</code> will be returned if available. </p>
936
1010
  */
937
1011
  SamplingInterval: number | undefined;
938
1012
  /**
1013
+ * @public
939
1014
  * <p>The accepted image format.</p>
940
1015
  */
941
1016
  Format: Format | string | undefined;
942
1017
  /**
1018
+ * @public
943
1019
  * <p>The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated.
944
1020
  * The <code>FormatConfig</code> key is the <code>JPEGQuality</code>, which indicates the JPEG quality key to be used to generate the image.
945
1021
  * The <code>FormatConfig</code> value accepts ints from 1 to 100. If the value is 1, the image will be generated with less quality and the best compression.
@@ -948,12 +1024,14 @@ export interface ImageGenerationConfiguration {
948
1024
  */
949
1025
  FormatConfig?: Record<string, string>;
950
1026
  /**
1027
+ * @public
951
1028
  * <p>The width of the output image that is used in conjunction with the <code>HeightPixels</code> parameter. When both <code>WidthPixels</code> and
952
1029
  * <code>HeightPixels</code> parameters are provided, the image will be stretched to fit the specified aspect ratio. If only the <code>WidthPixels</code> parameter is
953
1030
  * provided, its original aspect ratio will be used to calculate the <code>HeightPixels</code> ratio. If neither parameter is provided, the original image size will be returned.</p>
954
1031
  */
955
1032
  WidthPixels?: number;
956
1033
  /**
1034
+ * @public
957
1035
  * <p>The height of the output image that is used in conjunction with the <code>WidthPixels</code> parameter. When both
958
1036
  * <code>HeightPixels</code> and <code>WidthPixels</code> parameters are provided, the image will be stretched to fit the specified aspect ratio.
959
1037
  * If only the <code>HeightPixels</code> parameter is provided, its original aspect ratio will be used to calculate the <code>WidthPixels</code> ratio.
@@ -966,6 +1044,7 @@ export interface ImageGenerationConfiguration {
966
1044
  */
967
1045
  export interface DescribeImageGenerationConfigurationOutput {
968
1046
  /**
1047
+ * @public
969
1048
  * <p>The structure that contains the information required for the Kinesis video stream (KVS) images delivery. If this structure is null, the configuration will be deleted from the stream.</p>
970
1049
  */
971
1050
  ImageGenerationConfiguration?: ImageGenerationConfiguration;
@@ -975,18 +1054,22 @@ export interface DescribeImageGenerationConfigurationOutput {
975
1054
  */
976
1055
  export interface DescribeMappedResourceConfigurationInput {
977
1056
  /**
1057
+ * @public
978
1058
  * <p>The name of the stream.</p>
979
1059
  */
980
1060
  StreamName?: string;
981
1061
  /**
1062
+ * @public
982
1063
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
983
1064
  */
984
1065
  StreamARN?: string;
985
1066
  /**
1067
+ * @public
986
1068
  * <p>The maximum number of results to return in the response.</p>
987
1069
  */
988
1070
  MaxResults?: number;
989
1071
  /**
1072
+ * @public
990
1073
  * <p>The token to provide in your next request, to get another batch of results.</p>
991
1074
  */
992
1075
  NextToken?: string;
@@ -997,10 +1080,12 @@ export interface DescribeMappedResourceConfigurationInput {
997
1080
  */
998
1081
  export interface MappedResourceConfigurationListItem {
999
1082
  /**
1083
+ * @public
1000
1084
  * <p>The type of the associated resource for the kinesis video stream.</p>
1001
1085
  */
1002
1086
  Type?: string;
1003
1087
  /**
1088
+ * @public
1004
1089
  * <p>The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, associated with the stream.</p>
1005
1090
  */
1006
1091
  ARN?: string;
@@ -1010,10 +1095,12 @@ export interface MappedResourceConfigurationListItem {
1010
1095
  */
1011
1096
  export interface DescribeMappedResourceConfigurationOutput {
1012
1097
  /**
1098
+ * @public
1013
1099
  * <p>A structure that encapsulates, or contains, the media storage configuration properties.</p>
1014
1100
  */
1015
1101
  MappedResourceConfigurationList?: MappedResourceConfigurationListItem[];
1016
1102
  /**
1103
+ * @public
1017
1104
  * <p>The token that was used in the <code>NextToken</code>request to fetch the next set of results. </p>
1018
1105
  */
1019
1106
  NextToken?: string;
@@ -1023,10 +1110,12 @@ export interface DescribeMappedResourceConfigurationOutput {
1023
1110
  */
1024
1111
  export interface DescribeMediaStorageConfigurationInput {
1025
1112
  /**
1113
+ * @public
1026
1114
  * <p>The name of the channel.</p>
1027
1115
  */
1028
1116
  ChannelName?: string;
1029
1117
  /**
1118
+ * @public
1030
1119
  * <p>The Amazon Resource Name (ARN) of the channel.</p>
1031
1120
  */
1032
1121
  ChannelARN?: string;
@@ -1049,10 +1138,12 @@ export type MediaStorageConfigurationStatus = (typeof MediaStorageConfigurationS
1049
1138
  */
1050
1139
  export interface MediaStorageConfiguration {
1051
1140
  /**
1141
+ * @public
1052
1142
  * <p>The Amazon Resource Name (ARN) of the stream </p>
1053
1143
  */
1054
1144
  StreamARN?: string;
1055
1145
  /**
1146
+ * @public
1056
1147
  * <p>The status of the media storage configuration.</p>
1057
1148
  */
1058
1149
  Status: MediaStorageConfigurationStatus | string | undefined;
@@ -1062,6 +1153,7 @@ export interface MediaStorageConfiguration {
1062
1153
  */
1063
1154
  export interface DescribeMediaStorageConfigurationOutput {
1064
1155
  /**
1156
+ * @public
1065
1157
  * <p>A structure that encapsulates, or contains, the media storage configuration properties.</p>
1066
1158
  */
1067
1159
  MediaStorageConfiguration?: MediaStorageConfiguration;
@@ -1071,10 +1163,12 @@ export interface DescribeMediaStorageConfigurationOutput {
1071
1163
  */
1072
1164
  export interface DescribeNotificationConfigurationInput {
1073
1165
  /**
1166
+ * @public
1074
1167
  * <p>The name of the stream from which to retrieve the notification configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
1075
1168
  */
1076
1169
  StreamName?: string;
1077
1170
  /**
1171
+ * @public
1078
1172
  * <p>The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to retrieve the notification configuration. You must specify either the <code>StreamName</code> or the StreamARN.</p>
1079
1173
  */
1080
1174
  StreamARN?: string;
@@ -1085,6 +1179,7 @@ export interface DescribeNotificationConfigurationInput {
1085
1179
  */
1086
1180
  export interface NotificationDestinationConfig {
1087
1181
  /**
1182
+ * @public
1088
1183
  * <p>The Uniform Resource Identifier (URI) that identifies where the images will be delivered.</p>
1089
1184
  */
1090
1185
  Uri: string | undefined;
@@ -1095,10 +1190,12 @@ export interface NotificationDestinationConfig {
1095
1190
  */
1096
1191
  export interface NotificationConfiguration {
1097
1192
  /**
1193
+ * @public
1098
1194
  * <p>Indicates if a notification configuration is enabled or disabled.</p>
1099
1195
  */
1100
1196
  Status: ConfigurationStatus | string | undefined;
1101
1197
  /**
1198
+ * @public
1102
1199
  * <p>The destination information required to deliver a notification to a customer.</p>
1103
1200
  */
1104
1201
  DestinationConfig: NotificationDestinationConfig | undefined;
@@ -1108,6 +1205,7 @@ export interface NotificationConfiguration {
1108
1205
  */
1109
1206
  export interface DescribeNotificationConfigurationOutput {
1110
1207
  /**
1208
+ * @public
1111
1209
  * <p>The structure that contains the information required for notifications. If the structure is null, the configuration will be deleted from the stream.</p>
1112
1210
  */
1113
1211
  NotificationConfiguration?: NotificationConfiguration;
@@ -1117,10 +1215,12 @@ export interface DescribeNotificationConfigurationOutput {
1117
1215
  */
1118
1216
  export interface DescribeSignalingChannelInput {
1119
1217
  /**
1218
+ * @public
1120
1219
  * <p>The name of the signaling channel that you want to describe.</p>
1121
1220
  */
1122
1221
  ChannelName?: string;
1123
1222
  /**
1223
+ * @public
1124
1224
  * <p>The ARN of the signaling channel that you want to describe.</p>
1125
1225
  */
1126
1226
  ChannelARN?: string;
@@ -1130,6 +1230,7 @@ export interface DescribeSignalingChannelInput {
1130
1230
  */
1131
1231
  export interface DescribeSignalingChannelOutput {
1132
1232
  /**
1233
+ * @public
1133
1234
  * <p>A structure that encapsulates the specified signaling channel's metadata and
1134
1235
  * properties.</p>
1135
1236
  */
@@ -1140,10 +1241,12 @@ export interface DescribeSignalingChannelOutput {
1140
1241
  */
1141
1242
  export interface DescribeStreamInput {
1142
1243
  /**
1244
+ * @public
1143
1245
  * <p>The name of the stream.</p>
1144
1246
  */
1145
1247
  StreamName?: string;
1146
1248
  /**
1249
+ * @public
1147
1250
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
1148
1251
  */
1149
1252
  StreamARN?: string;
@@ -1154,39 +1257,48 @@ export interface DescribeStreamInput {
1154
1257
  */
1155
1258
  export interface StreamInfo {
1156
1259
  /**
1260
+ * @public
1157
1261
  * <p>The name of the device that is associated with the stream.</p>
1158
1262
  */
1159
1263
  DeviceName?: string;
1160
1264
  /**
1265
+ * @public
1161
1266
  * <p>The name of the stream.</p>
1162
1267
  */
1163
1268
  StreamName?: string;
1164
1269
  /**
1270
+ * @public
1165
1271
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
1166
1272
  */
1167
1273
  StreamARN?: string;
1168
1274
  /**
1275
+ * @public
1169
1276
  * <p>The <code>MediaType</code> of the stream. </p>
1170
1277
  */
1171
1278
  MediaType?: string;
1172
1279
  /**
1280
+ * @public
1173
1281
  * <p>The ID of the Key Management Service (KMS) key that Kinesis Video Streams
1174
1282
  * uses to encrypt data on the stream.</p>
1175
1283
  */
1176
1284
  KmsKeyId?: string;
1177
1285
  /**
1286
+ * @public
1178
1287
  * <p>The version of the stream.</p>
1179
1288
  */
1180
1289
  Version?: string;
1181
1290
  /**
1291
+ * @public
1182
1292
  * <p>The status of the stream.</p>
1183
1293
  */
1184
1294
  Status?: Status | string;
1185
1295
  /**
1296
+ * @public
1186
1297
  * <p>A time stamp that indicates when the stream was created.</p>
1187
1298
  */
1188
1299
  CreationTime?: Date;
1189
1300
  /**
1301
+ * @public
1190
1302
  * <p>How long the stream retains data, in hours.</p>
1191
1303
  */
1192
1304
  DataRetentionInHours?: number;
@@ -1196,6 +1308,7 @@ export interface StreamInfo {
1196
1308
  */
1197
1309
  export interface DescribeStreamOutput {
1198
1310
  /**
1311
+ * @public
1199
1312
  * <p>An object that describes the stream.</p>
1200
1313
  */
1201
1314
  StreamInfo?: StreamInfo;
@@ -1205,17 +1318,20 @@ export interface DescribeStreamOutput {
1205
1318
  */
1206
1319
  export interface GetDataEndpointInput {
1207
1320
  /**
1321
+ * @public
1208
1322
  * <p>The name of the stream that you want to get the endpoint for. You must specify
1209
1323
  * either this parameter or a <code>StreamARN</code> in the request.</p>
1210
1324
  */
1211
1325
  StreamName?: string;
1212
1326
  /**
1327
+ * @public
1213
1328
  * <p>The Amazon Resource Name (ARN) of the stream that you want to get the endpoint for.
1214
1329
  * You must specify either this parameter or a <code>StreamName</code> in the request.
1215
1330
  * </p>
1216
1331
  */
1217
1332
  StreamARN?: string;
1218
1333
  /**
1334
+ * @public
1219
1335
  * <p>The name of the API action for which to get an endpoint.</p>
1220
1336
  */
1221
1337
  APIName: APIName | string | undefined;
@@ -1225,6 +1341,7 @@ export interface GetDataEndpointInput {
1225
1341
  */
1226
1342
  export interface GetDataEndpointOutput {
1227
1343
  /**
1344
+ * @public
1228
1345
  * <p>The endpoint value. To read data from the stream or to write data to it, specify
1229
1346
  * this endpoint in your application.</p>
1230
1347
  */
@@ -1237,6 +1354,7 @@ export interface GetDataEndpointOutput {
1237
1354
  */
1238
1355
  export interface SingleMasterChannelEndpointConfiguration {
1239
1356
  /**
1357
+ * @public
1240
1358
  * <p>This property is used to determine the nature of communication over this
1241
1359
  * <code>SINGLE_MASTER</code> signaling channel. If <code>WSS</code> is specified, this
1242
1360
  * API returns a websocket endpoint. If <code>HTTPS</code> is specified, this API returns
@@ -1244,6 +1362,7 @@ export interface SingleMasterChannelEndpointConfiguration {
1244
1362
  */
1245
1363
  Protocols?: (ChannelProtocol | string)[];
1246
1364
  /**
1365
+ * @public
1247
1366
  * <p>This property is used to determine messaging permissions in this
1248
1367
  * <code>SINGLE_MASTER</code> signaling channel. If <code>MASTER</code> is specified,
1249
1368
  * this API returns an endpoint that a client can use to receive offers from and send
@@ -1258,11 +1377,13 @@ export interface SingleMasterChannelEndpointConfiguration {
1258
1377
  */
1259
1378
  export interface GetSignalingChannelEndpointInput {
1260
1379
  /**
1380
+ * @public
1261
1381
  * <p>The Amazon Resource Name (ARN) of the signalling channel for which you want to get an
1262
1382
  * endpoint.</p>
1263
1383
  */
1264
1384
  ChannelARN: string | undefined;
1265
1385
  /**
1386
+ * @public
1266
1387
  * <p>A structure containing the endpoint configuration for the <code>SINGLE_MASTER</code>
1267
1388
  * channel type.</p>
1268
1389
  */
@@ -1276,11 +1397,13 @@ export interface GetSignalingChannelEndpointInput {
1276
1397
  */
1277
1398
  export interface ResourceEndpointListItem {
1278
1399
  /**
1400
+ * @public
1279
1401
  * <p>The protocol of the signaling channel returned by the
1280
1402
  * <code>GetSignalingChannelEndpoint</code> API.</p>
1281
1403
  */
1282
1404
  Protocol?: ChannelProtocol | string;
1283
1405
  /**
1406
+ * @public
1284
1407
  * <p>The endpoint of the signaling channel returned by the
1285
1408
  * <code>GetSignalingChannelEndpoint</code> API.</p>
1286
1409
  */
@@ -1291,6 +1414,7 @@ export interface ResourceEndpointListItem {
1291
1414
  */
1292
1415
  export interface GetSignalingChannelEndpointOutput {
1293
1416
  /**
1417
+ * @public
1294
1418
  * <p>A list of endpoints for the specified signaling channel.</p>
1295
1419
  */
1296
1420
  ResourceEndpointList?: ResourceEndpointListItem[];
@@ -1313,14 +1437,17 @@ export declare class InvalidResourceFormatException extends __BaseException {
1313
1437
  */
1314
1438
  export interface ListEdgeAgentConfigurationsInput {
1315
1439
  /**
1440
+ * @public
1316
1441
  * <p>The "Internet of Things (IoT) Thing" Arn of the edge agent.</p>
1317
1442
  */
1318
1443
  HubDeviceArn: string | undefined;
1319
1444
  /**
1445
+ * @public
1320
1446
  * <p>The maximum number of edge configurations to return in the response. The default is 5.</p>
1321
1447
  */
1322
1448
  MaxResults?: number;
1323
1449
  /**
1450
+ * @public
1324
1451
  * <p>If you specify this parameter, when the result of a <code>ListEdgeAgentConfigurations</code> operation is truncated, the call returns the <code>NextToken</code> in the response. To get another batch of edge configurations, provide this token in your next request.
1325
1452
  * </p>
1326
1453
  */
@@ -1332,30 +1459,37 @@ export interface ListEdgeAgentConfigurationsInput {
1332
1459
  */
1333
1460
  export interface ListEdgeAgentConfigurationsEdgeConfig {
1334
1461
  /**
1462
+ * @public
1335
1463
  * <p>The name of the stream.</p>
1336
1464
  */
1337
1465
  StreamName?: string;
1338
1466
  /**
1467
+ * @public
1339
1468
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
1340
1469
  */
1341
1470
  StreamARN?: string;
1342
1471
  /**
1472
+ * @public
1343
1473
  * <p>The timestamp when the stream first created the edge config.</p>
1344
1474
  */
1345
1475
  CreationTime?: Date;
1346
1476
  /**
1477
+ * @public
1347
1478
  * <p>The timestamp when the stream last updated the edge config.</p>
1348
1479
  */
1349
1480
  LastUpdatedTime?: Date;
1350
1481
  /**
1482
+ * @public
1351
1483
  * <p>The current sync status of the stream's edge configuration.</p>
1352
1484
  */
1353
1485
  SyncStatus?: SyncStatus | string;
1354
1486
  /**
1487
+ * @public
1355
1488
  * <p>A description of the generated failure status.</p>
1356
1489
  */
1357
1490
  FailedStatusDetails?: string;
1358
1491
  /**
1492
+ * @public
1359
1493
  * <p>A description of the stream's edge configuration that will be used to sync
1360
1494
  * with the Edge Agent IoT Greengrass component. The Edge Agent component will run
1361
1495
  * on an IoT Hub Device setup at your premise.</p>
@@ -1367,10 +1501,12 @@ export interface ListEdgeAgentConfigurationsEdgeConfig {
1367
1501
  */
1368
1502
  export interface ListEdgeAgentConfigurationsOutput {
1369
1503
  /**
1504
+ * @public
1370
1505
  * <p>A description of a single stream's edge configuration.</p>
1371
1506
  */
1372
1507
  EdgeConfigs?: ListEdgeAgentConfigurationsEdgeConfig[];
1373
1508
  /**
1509
+ * @public
1374
1510
  * <p>If the response is truncated, the call returns this element with a given token. To get the next batch of edge configurations, use this token in your next request.</p>
1375
1511
  */
1376
1512
  NextToken?: string;
@@ -1380,16 +1516,19 @@ export interface ListEdgeAgentConfigurationsOutput {
1380
1516
  */
1381
1517
  export interface ListSignalingChannelsInput {
1382
1518
  /**
1519
+ * @public
1383
1520
  * <p>The maximum number of channels to return in the response. The default is 500.</p>
1384
1521
  */
1385
1522
  MaxResults?: number;
1386
1523
  /**
1524
+ * @public
1387
1525
  * <p>If you specify this parameter, when the result of a <code>ListSignalingChannels</code>
1388
1526
  * operation is truncated, the call returns the <code>NextToken</code> in the response. To
1389
1527
  * get another batch of channels, provide this token in your next request.</p>
1390
1528
  */
1391
1529
  NextToken?: string;
1392
1530
  /**
1531
+ * @public
1393
1532
  * <p>Optional: Returns only the channels that satisfy a specific condition.</p>
1394
1533
  */
1395
1534
  ChannelNameCondition?: ChannelNameCondition;
@@ -1399,10 +1538,12 @@ export interface ListSignalingChannelsInput {
1399
1538
  */
1400
1539
  export interface ListSignalingChannelsOutput {
1401
1540
  /**
1541
+ * @public
1402
1542
  * <p>An array of <code>ChannelInfo</code> objects.</p>
1403
1543
  */
1404
1544
  ChannelInfoList?: ChannelInfo[];
1405
1545
  /**
1546
+ * @public
1406
1547
  * <p>If the response is truncated, the call returns this element with a token. To get the
1407
1548
  * next batch of streams, use this token in your next request.</p>
1408
1549
  */
@@ -1417,11 +1558,13 @@ export interface ListSignalingChannelsOutput {
1417
1558
  */
1418
1559
  export interface StreamNameCondition {
1419
1560
  /**
1561
+ * @public
1420
1562
  * <p>A comparison operator. Currently, you can specify only the <code>BEGINS_WITH</code>
1421
1563
  * operator, which finds streams whose names start with a given prefix.</p>
1422
1564
  */
1423
1565
  ComparisonOperator?: ComparisonOperator | string;
1424
1566
  /**
1567
+ * @public
1425
1568
  * <p>A value to compare.</p>
1426
1569
  */
1427
1570
  ComparisonValue?: string;
@@ -1431,17 +1574,20 @@ export interface StreamNameCondition {
1431
1574
  */
1432
1575
  export interface ListStreamsInput {
1433
1576
  /**
1577
+ * @public
1434
1578
  * <p>The maximum number of streams to return in the response. The default is
1435
1579
  * 10,000.</p>
1436
1580
  */
1437
1581
  MaxResults?: number;
1438
1582
  /**
1583
+ * @public
1439
1584
  * <p>If you specify this parameter, when the result of a <code>ListStreams</code>
1440
1585
  * operation is truncated, the call returns the <code>NextToken</code> in the response. To
1441
1586
  * get another batch of streams, provide this token in your next request.</p>
1442
1587
  */
1443
1588
  NextToken?: string;
1444
1589
  /**
1590
+ * @public
1445
1591
  * <p>Optional: Returns only streams that satisfy a specific condition. Currently, you
1446
1592
  * can specify only the prefix of a stream name as a condition. </p>
1447
1593
  */
@@ -1452,10 +1598,12 @@ export interface ListStreamsInput {
1452
1598
  */
1453
1599
  export interface ListStreamsOutput {
1454
1600
  /**
1601
+ * @public
1455
1602
  * <p>An array of <code>StreamInfo</code> objects.</p>
1456
1603
  */
1457
1604
  StreamInfoList?: StreamInfo[];
1458
1605
  /**
1606
+ * @public
1459
1607
  * <p>If the response is truncated, the call returns this element with a token. To get
1460
1608
  * the next batch of streams, use this token in your next request. </p>
1461
1609
  */
@@ -1466,12 +1614,14 @@ export interface ListStreamsOutput {
1466
1614
  */
1467
1615
  export interface ListTagsForResourceInput {
1468
1616
  /**
1617
+ * @public
1469
1618
  * <p>If you specify this parameter and the result of a <code>ListTagsForResource</code>
1470
1619
  * call is truncated, the response includes a token that you can use in the next request to
1471
1620
  * fetch the next batch of tags. </p>
1472
1621
  */
1473
1622
  NextToken?: string;
1474
1623
  /**
1624
+ * @public
1475
1625
  * <p>The Amazon Resource Name (ARN) of the signaling channel for which you want to list
1476
1626
  * tags.</p>
1477
1627
  */
@@ -1482,12 +1632,14 @@ export interface ListTagsForResourceInput {
1482
1632
  */
1483
1633
  export interface ListTagsForResourceOutput {
1484
1634
  /**
1635
+ * @public
1485
1636
  * <p>If you specify this parameter and the result of a <code>ListTagsForResource</code>
1486
1637
  * call is truncated, the response includes a token that you can use in the next request to
1487
1638
  * fetch the next set of tags. </p>
1488
1639
  */
1489
1640
  NextToken?: string;
1490
1641
  /**
1642
+ * @public
1491
1643
  * <p>A map of tag keys and values associated with the specified signaling channel.</p>
1492
1644
  */
1493
1645
  Tags?: Record<string, string>;
@@ -1497,17 +1649,20 @@ export interface ListTagsForResourceOutput {
1497
1649
  */
1498
1650
  export interface ListTagsForStreamInput {
1499
1651
  /**
1652
+ * @public
1500
1653
  * <p>If you specify this parameter and the result of a <code>ListTagsForStream</code>
1501
1654
  * call is truncated, the response includes a token that you can use in the next request to
1502
1655
  * fetch the next batch of tags.</p>
1503
1656
  */
1504
1657
  NextToken?: string;
1505
1658
  /**
1659
+ * @public
1506
1660
  * <p>The Amazon Resource Name (ARN) of the stream that you want to list tags
1507
1661
  * for.</p>
1508
1662
  */
1509
1663
  StreamARN?: string;
1510
1664
  /**
1665
+ * @public
1511
1666
  * <p>The name of the stream that you want to list tags for.</p>
1512
1667
  */
1513
1668
  StreamName?: string;
@@ -1517,12 +1672,14 @@ export interface ListTagsForStreamInput {
1517
1672
  */
1518
1673
  export interface ListTagsForStreamOutput {
1519
1674
  /**
1675
+ * @public
1520
1676
  * <p>If you specify this parameter and the result of a <code>ListTags</code> call is
1521
1677
  * truncated, the response includes a token that you can use in the next request to fetch
1522
1678
  * the next set of tags.</p>
1523
1679
  */
1524
1680
  NextToken?: string;
1525
1681
  /**
1682
+ * @public
1526
1683
  * <p>A map of tag keys and values associated with the specified stream.</p>
1527
1684
  */
1528
1685
  Tags?: Record<string, string>;
@@ -1545,16 +1702,19 @@ export declare class NoDataRetentionException extends __BaseException {
1545
1702
  */
1546
1703
  export interface StartEdgeConfigurationUpdateInput {
1547
1704
  /**
1705
+ * @public
1548
1706
  * <p>The name of the stream whose edge configuration you want to update. Specify either the <code>StreamName</code>
1549
1707
  * or the <code>StreamARN</code>.</p>
1550
1708
  */
1551
1709
  StreamName?: string;
1552
1710
  /**
1711
+ * @public
1553
1712
  * <p> The Amazon Resource Name (ARN) of the stream. Specify either the
1554
1713
  * <code>StreamName</code> or the <code>StreamARN</code>.</p>
1555
1714
  */
1556
1715
  StreamARN?: string;
1557
1716
  /**
1717
+ * @public
1558
1718
  * <p>The edge configuration details required to invoke the update process.</p>
1559
1719
  */
1560
1720
  EdgeConfig: EdgeConfig | undefined;
@@ -1564,32 +1724,39 @@ export interface StartEdgeConfigurationUpdateInput {
1564
1724
  */
1565
1725
  export interface StartEdgeConfigurationUpdateOutput {
1566
1726
  /**
1727
+ * @public
1567
1728
  * <p>The name of the stream from which the edge configuration was updated.</p>
1568
1729
  */
1569
1730
  StreamName?: string;
1570
1731
  /**
1732
+ * @public
1571
1733
  * <p>The Amazon Resource Name (ARN) of the stream.</p>
1572
1734
  */
1573
1735
  StreamARN?: string;
1574
1736
  /**
1737
+ * @public
1575
1738
  * <p>The timestamp at which a stream’s edge configuration was first created.</p>
1576
1739
  */
1577
1740
  CreationTime?: Date;
1578
1741
  /**
1742
+ * @public
1579
1743
  * <p>The timestamp at which a stream’s edge configuration was last updated.</p>
1580
1744
  */
1581
1745
  LastUpdatedTime?: Date;
1582
1746
  /**
1747
+ * @public
1583
1748
  * <p> The current sync status of the stream's edge configuration. When you invoke this API, the sync
1584
1749
  * status will be set to the <code>SYNCING</code> state. Use the <code>DescribeEdgeConfiguration</code> API
1585
1750
  * to get the latest status of the edge configuration.</p>
1586
1751
  */
1587
1752
  SyncStatus?: SyncStatus | string;
1588
1753
  /**
1754
+ * @public
1589
1755
  * <p>A description of the generated failure status.</p>
1590
1756
  */
1591
1757
  FailedStatusDetails?: string;
1592
1758
  /**
1759
+ * @public
1593
1760
  * <p>A description of the stream's edge configuration that will be used to sync
1594
1761
  * with the Edge Agent IoT Greengrass component. The Edge Agent component will run
1595
1762
  * on an IoT Hub Device setup at your premise.</p>
@@ -1601,11 +1768,13 @@ export interface StartEdgeConfigurationUpdateOutput {
1601
1768
  */
1602
1769
  export interface TagResourceInput {
1603
1770
  /**
1771
+ * @public
1604
1772
  * <p>The Amazon Resource Name (ARN) of the signaling channel to which you want to add
1605
1773
  * tags.</p>
1606
1774
  */
1607
1775
  ResourceARN: string | undefined;
1608
1776
  /**
1777
+ * @public
1609
1778
  * <p>A list of tags to associate with the specified signaling channel. Each tag is a
1610
1779
  * key-value pair.</p>
1611
1780
  */
@@ -1621,15 +1790,18 @@ export interface TagResourceOutput {
1621
1790
  */
1622
1791
  export interface TagStreamInput {
1623
1792
  /**
1793
+ * @public
1624
1794
  * <p>The Amazon Resource Name (ARN) of the resource that you want to add the tag or tags
1625
1795
  * to.</p>
1626
1796
  */
1627
1797
  StreamARN?: string;
1628
1798
  /**
1799
+ * @public
1629
1800
  * <p>The name of the stream that you want to add the tag or tags to.</p>
1630
1801
  */
1631
1802
  StreamName?: string;
1632
1803
  /**
1804
+ * @public
1633
1805
  * <p>A list of tags to associate with the specified stream. Each tag is a key-value pair
1634
1806
  * (the value is optional).</p>
1635
1807
  */
@@ -1645,11 +1817,13 @@ export interface TagStreamOutput {
1645
1817
  */
1646
1818
  export interface UntagResourceInput {
1647
1819
  /**
1820
+ * @public
1648
1821
  * <p>The Amazon Resource Name (ARN) of the signaling channel from which you want to remove
1649
1822
  * tags.</p>
1650
1823
  */
1651
1824
  ResourceARN: string | undefined;
1652
1825
  /**
1826
+ * @public
1653
1827
  * <p>A list of the keys of the tags that you want to remove.</p>
1654
1828
  */
1655
1829
  TagKeyList: string[] | undefined;
@@ -1664,15 +1838,18 @@ export interface UntagResourceOutput {
1664
1838
  */
1665
1839
  export interface UntagStreamInput {
1666
1840
  /**
1841
+ * @public
1667
1842
  * <p>The Amazon Resource Name (ARN) of the stream that you want to remove tags
1668
1843
  * from.</p>
1669
1844
  */
1670
1845
  StreamARN?: string;
1671
1846
  /**
1847
+ * @public
1672
1848
  * <p>The name of the stream that you want to remove tags from.</p>
1673
1849
  */
1674
1850
  StreamName?: string;
1675
1851
  /**
1852
+ * @public
1676
1853
  * <p>A list of the keys of the tags that you want to remove.</p>
1677
1854
  */
1678
1855
  TagKeyList: string[] | undefined;
@@ -1699,25 +1876,30 @@ export type UpdateDataRetentionOperation = (typeof UpdateDataRetentionOperation)
1699
1876
  */
1700
1877
  export interface UpdateDataRetentionInput {
1701
1878
  /**
1879
+ * @public
1702
1880
  * <p>The name of the stream whose retention period you want to change.</p>
1703
1881
  */
1704
1882
  StreamName?: string;
1705
1883
  /**
1884
+ * @public
1706
1885
  * <p>The Amazon Resource Name (ARN) of the stream whose retention period you want to
1707
1886
  * change.</p>
1708
1887
  */
1709
1888
  StreamARN?: string;
1710
1889
  /**
1890
+ * @public
1711
1891
  * <p>The version of the stream whose retention period you want to change. To get the
1712
1892
  * version, call either the <code>DescribeStream</code> or the <code>ListStreams</code>
1713
1893
  * API.</p>
1714
1894
  */
1715
1895
  CurrentVersion: string | undefined;
1716
1896
  /**
1897
+ * @public
1717
1898
  * <p>Indicates whether you want to increase or decrease the retention period.</p>
1718
1899
  */
1719
1900
  Operation: UpdateDataRetentionOperation | string | undefined;
1720
1901
  /**
1902
+ * @public
1721
1903
  * <p>The retention period, in hours. The value you specify replaces the current value.
1722
1904
  * The maximum value for this parameter is 87600 (ten years).</p>
1723
1905
  */
@@ -1733,15 +1915,18 @@ export interface UpdateDataRetentionOutput {
1733
1915
  */
1734
1916
  export interface UpdateImageGenerationConfigurationInput {
1735
1917
  /**
1918
+ * @public
1736
1919
  * <p>The name of the stream from which to update the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
1737
1920
  */
1738
1921
  StreamName?: string;
1739
1922
  /**
1923
+ * @public
1740
1924
  * <p>The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the image generation configuration. You must specify either the <code>StreamName</code>
1741
1925
  * or the <code>StreamARN</code>.</p>
1742
1926
  */
1743
1927
  StreamARN?: string;
1744
1928
  /**
1929
+ * @public
1745
1930
  * <p>The structure that contains the information required for the KVS images delivery. If the structure is null, the configuration will be deleted from the stream.</p>
1746
1931
  */
1747
1932
  ImageGenerationConfiguration?: ImageGenerationConfiguration;
@@ -1756,10 +1941,12 @@ export interface UpdateImageGenerationConfigurationOutput {
1756
1941
  */
1757
1942
  export interface UpdateMediaStorageConfigurationInput {
1758
1943
  /**
1944
+ * @public
1759
1945
  * <p>The Amazon Resource Name (ARN) of the channel.</p>
1760
1946
  */
1761
1947
  ChannelARN: string | undefined;
1762
1948
  /**
1949
+ * @public
1763
1950
  * <p>A structure that encapsulates, or contains, the media storage configuration properties.</p>
1764
1951
  */
1765
1952
  MediaStorageConfiguration: MediaStorageConfiguration | undefined;
@@ -1774,14 +1961,17 @@ export interface UpdateMediaStorageConfigurationOutput {
1774
1961
  */
1775
1962
  export interface UpdateNotificationConfigurationInput {
1776
1963
  /**
1964
+ * @public
1777
1965
  * <p>The name of the stream from which to update the notification configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
1778
1966
  */
1779
1967
  StreamName?: string;
1780
1968
  /**
1969
+ * @public
1781
1970
  * <p>The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the notification configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
1782
1971
  */
1783
1972
  StreamARN?: string;
1784
1973
  /**
1974
+ * @public
1785
1975
  * <p>The structure containing the information required for notifications. If the structure is null, the configuration will be deleted from the stream.</p>
1786
1976
  */
1787
1977
  NotificationConfiguration?: NotificationConfiguration;
@@ -1796,15 +1986,18 @@ export interface UpdateNotificationConfigurationOutput {
1796
1986
  */
1797
1987
  export interface UpdateSignalingChannelInput {
1798
1988
  /**
1989
+ * @public
1799
1990
  * <p>The Amazon Resource Name (ARN) of the signaling channel that you want to
1800
1991
  * update.</p>
1801
1992
  */
1802
1993
  ChannelARN: string | undefined;
1803
1994
  /**
1995
+ * @public
1804
1996
  * <p>The current version of the signaling channel that you want to update.</p>
1805
1997
  */
1806
1998
  CurrentVersion: string | undefined;
1807
1999
  /**
2000
+ * @public
1808
2001
  * <p>The structure containing the configuration for the <code>SINGLE_MASTER</code> type of
1809
2002
  * the signaling channel that you want to update. </p>
1810
2003
  */
@@ -1820,20 +2013,24 @@ export interface UpdateSignalingChannelOutput {
1820
2013
  */
1821
2014
  export interface UpdateStreamInput {
1822
2015
  /**
2016
+ * @public
1823
2017
  * <p>The name of the stream whose metadata you want to update.</p>
1824
2018
  * <p>The stream name is an identifier for the stream, and must be unique for each
1825
2019
  * account and region.</p>
1826
2020
  */
1827
2021
  StreamName?: string;
1828
2022
  /**
2023
+ * @public
1829
2024
  * <p>The ARN of the stream whose metadata you want to update.</p>
1830
2025
  */
1831
2026
  StreamARN?: string;
1832
2027
  /**
2028
+ * @public
1833
2029
  * <p>The version of the stream whose metadata you want to update.</p>
1834
2030
  */
1835
2031
  CurrentVersion: string | undefined;
1836
2032
  /**
2033
+ * @public
1837
2034
  * <p>The name of the device that is writing to the stream. </p>
1838
2035
  * <note>
1839
2036
  * <p> In the current implementation, Kinesis Video Streams does not use this name.
@@ -1842,6 +2039,7 @@ export interface UpdateStreamInput {
1842
2039
  */
1843
2040
  DeviceName?: string;
1844
2041
  /**
2042
+ * @public
1845
2043
  * <p>The stream's media type. Use <code>MediaType</code> to specify the type of content
1846
2044
  * that the stream contains to the consumers of the stream. For more information about
1847
2045
  * media types, see <a href="http://www.iana.org/assignments/media-types/media-types.xhtml">Media
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",