@aws-sdk/client-kinesis-video-archived-media 3.686.0 → 3.691.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.
@@ -8,7 +8,7 @@ import { KinesisVideoArchivedMediaServiceException as __BaseException } from "./
8
8
  export declare class ClientLimitExceededException extends __BaseException {
9
9
  readonly name: "ClientLimitExceededException";
10
10
  readonly $fault: "client";
11
- Message?: string;
11
+ Message?: string | undefined;
12
12
  /**
13
13
  * @internal
14
14
  */
@@ -85,13 +85,13 @@ export interface GetClipInput {
85
85
  * <p>You must specify either the StreamName or the StreamARN. </p>
86
86
  * @public
87
87
  */
88
- StreamName?: string;
88
+ StreamName?: string | undefined;
89
89
  /**
90
90
  * <p>The Amazon Resource Name (ARN) of the stream for which to retrieve the media clip. </p>
91
91
  * <p>You must specify either the StreamName or the StreamARN. </p>
92
92
  * @public
93
93
  */
94
- StreamARN?: string;
94
+ StreamARN?: string | undefined;
95
95
  /**
96
96
  * <p>The time range of the requested clip and the source of the timestamps.</p>
97
97
  * @public
@@ -106,7 +106,7 @@ export interface GetClipOutput {
106
106
  * <p>The content type of the media in the requested clip.</p>
107
107
  * @public
108
108
  */
109
- ContentType?: string;
109
+ ContentType?: string | undefined;
110
110
  /**
111
111
  * <p>Traditional MP4 file that contains the media clip from the specified video stream. The
112
112
  * output will contain the first 100 MB or the first 200 fragments from the specified start
@@ -114,7 +114,7 @@ export interface GetClipOutput {
114
114
  * Video Streams Limits</a>. </p>
115
115
  * @public
116
116
  */
117
- Payload?: StreamingBlobTypes;
117
+ Payload?: StreamingBlobTypes | undefined;
118
118
  }
119
119
  /**
120
120
  * <p>A specified parameter exceeds its restrictions, is not supported, or can't be
@@ -124,7 +124,7 @@ export interface GetClipOutput {
124
124
  export declare class InvalidArgumentException extends __BaseException {
125
125
  readonly name: "InvalidArgumentException";
126
126
  readonly $fault: "client";
127
- Message?: string;
127
+ Message?: string | undefined;
128
128
  /**
129
129
  * @internal
130
130
  */
@@ -138,7 +138,7 @@ export declare class InvalidArgumentException extends __BaseException {
138
138
  export declare class InvalidCodecPrivateDataException extends __BaseException {
139
139
  readonly name: "InvalidCodecPrivateDataException";
140
140
  readonly $fault: "client";
141
- Message?: string;
141
+ Message?: string | undefined;
142
142
  /**
143
143
  * @internal
144
144
  */
@@ -152,7 +152,7 @@ export declare class InvalidCodecPrivateDataException extends __BaseException {
152
152
  export declare class InvalidMediaFrameException extends __BaseException {
153
153
  readonly name: "InvalidMediaFrameException";
154
154
  readonly $fault: "client";
155
- Message?: string;
155
+ Message?: string | undefined;
156
156
  /**
157
157
  * @internal
158
158
  */
@@ -165,7 +165,7 @@ export declare class InvalidMediaFrameException extends __BaseException {
165
165
  export declare class MissingCodecPrivateDataException extends __BaseException {
166
166
  readonly name: "MissingCodecPrivateDataException";
167
167
  readonly $fault: "client";
168
- Message?: string;
168
+ Message?: string | undefined;
169
169
  /**
170
170
  * @internal
171
171
  */
@@ -180,7 +180,7 @@ export declare class MissingCodecPrivateDataException extends __BaseException {
180
180
  export declare class NoDataRetentionException extends __BaseException {
181
181
  readonly name: "NoDataRetentionException";
182
182
  readonly $fault: "client";
183
- Message?: string;
183
+ Message?: string | undefined;
184
184
  /**
185
185
  * @internal
186
186
  */
@@ -194,7 +194,7 @@ export declare class NoDataRetentionException extends __BaseException {
194
194
  export declare class NotAuthorizedException extends __BaseException {
195
195
  readonly name: "NotAuthorizedException";
196
196
  readonly $fault: "client";
197
- Message?: string;
197
+ Message?: string | undefined;
198
198
  /**
199
199
  * @internal
200
200
  */
@@ -216,7 +216,7 @@ export declare class NotAuthorizedException extends __BaseException {
216
216
  export declare class ResourceNotFoundException extends __BaseException {
217
217
  readonly name: "ResourceNotFoundException";
218
218
  readonly $fault: "client";
219
- Message?: string;
219
+ Message?: string | undefined;
220
220
  /**
221
221
  * @internal
222
222
  */
@@ -232,7 +232,7 @@ export declare class ResourceNotFoundException extends __BaseException {
232
232
  export declare class UnsupportedStreamMediaTypeException extends __BaseException {
233
233
  readonly name: "UnsupportedStreamMediaTypeException";
234
234
  readonly $fault: "client";
235
- Message?: string;
235
+ Message?: string | undefined;
236
236
  /**
237
237
  * @internal
238
238
  */
@@ -271,7 +271,7 @@ export interface DASHTimestampRange {
271
271
  * the stream head. </p>
272
272
  * @public
273
273
  */
274
- StartTimestamp?: Date;
274
+ StartTimestamp?: Date | undefined;
275
275
  /**
276
276
  * <p>The end of the timestamp range for the requested media. This value must be within 24
277
277
  * hours of the specified <code>StartTimestamp</code>, and it must be later than the
@@ -290,7 +290,7 @@ export interface DASHTimestampRange {
290
290
  * </note>
291
291
  * @public
292
292
  */
293
- EndTimestamp?: Date;
293
+ EndTimestamp?: Date | undefined;
294
294
  }
295
295
  /**
296
296
  * <p>Contains the range of timestamps for the requested media, and the source of the
@@ -322,14 +322,14 @@ export interface DASHFragmentSelector {
322
322
  * <p>The default is <code>SERVER_TIMESTAMP</code>.</p>
323
323
  * @public
324
324
  */
325
- FragmentSelectorType?: DASHFragmentSelectorType;
325
+ FragmentSelectorType?: DASHFragmentSelectorType | undefined;
326
326
  /**
327
327
  * <p>The start and end of the timestamp range for the requested media.</p>
328
328
  * <p>This value should not be present if <code>PlaybackType</code> is
329
329
  * <code>LIVE</code>.</p>
330
330
  * @public
331
331
  */
332
- TimestampRange?: DASHTimestampRange;
332
+ TimestampRange?: DASHTimestampRange | undefined;
333
333
  }
334
334
  /**
335
335
  * @public
@@ -378,7 +378,7 @@ export interface GetDASHStreamingSessionURLInput {
378
378
  * <code>StreamARN</code>.</p>
379
379
  * @public
380
380
  */
381
- StreamName?: string;
381
+ StreamName?: string | undefined;
382
382
  /**
383
383
  * <p>The Amazon Resource Name (ARN) of the stream for which to retrieve the MPEG-DASH
384
384
  * manifest URL.</p>
@@ -386,7 +386,7 @@ export interface GetDASHStreamingSessionURLInput {
386
386
  * <code>StreamARN</code>.</p>
387
387
  * @public
388
388
  */
389
- StreamARN?: string;
389
+ StreamARN?: string | undefined;
390
390
  /**
391
391
  * <p>Whether to retrieve live, live replay, or archived, on-demand data.</p>
392
392
  * <p>Features of the three types of sessions include the following:</p>
@@ -450,7 +450,7 @@ export interface GetDASHStreamingSessionURLInput {
450
450
  * <p>The default is <code>LIVE</code>.</p>
451
451
  * @public
452
452
  */
453
- PlaybackMode?: DASHPlaybackMode;
453
+ PlaybackMode?: DASHPlaybackMode | undefined;
454
454
  /**
455
455
  * <p>Per the MPEG-DASH specification, the wall-clock time of fragments in the manifest file
456
456
  * can be derived using attributes in the manifest itself. However, typically, MPEG-DASH
@@ -468,7 +468,7 @@ export interface GetDASHStreamingSessionURLInput {
468
468
  * timestamps. </p>
469
469
  * @public
470
470
  */
471
- DisplayFragmentTimestamp?: DASHDisplayFragmentTimestamp;
471
+ DisplayFragmentTimestamp?: DASHDisplayFragmentTimestamp | undefined;
472
472
  /**
473
473
  * <p>Fragments are identified in the manifest file based on their sequence number in the
474
474
  * session. If DisplayFragmentNumber is set to <code>ALWAYS</code>, the Kinesis Video
@@ -480,7 +480,7 @@ export interface GetDASHStreamingSessionURLInput {
480
480
  * <p>The default value is <code>NEVER</code>.</p>
481
481
  * @public
482
482
  */
483
- DisplayFragmentNumber?: DASHDisplayFragmentNumber;
483
+ DisplayFragmentNumber?: DASHDisplayFragmentNumber | undefined;
484
484
  /**
485
485
  * <p>The time range of the requested fragment and the source of the timestamps.</p>
486
486
  * <p>This parameter is required if <code>PlaybackMode</code> is <code>ON_DEMAND</code> or
@@ -492,7 +492,7 @@ export interface GetDASHStreamingSessionURLInput {
492
492
  * <code>TimestampRange</code> must be set.</p>
493
493
  * @public
494
494
  */
495
- DASHFragmentSelector?: DASHFragmentSelector;
495
+ DASHFragmentSelector?: DASHFragmentSelector | undefined;
496
496
  /**
497
497
  * <p>The time in seconds until the requested session expires. This value can be between 300
498
498
  * (5 minutes) and 43200 (12 hours).</p>
@@ -502,7 +502,7 @@ export interface GetDASHStreamingSessionURLInput {
502
502
  * <p>The default is 300 (5 minutes).</p>
503
503
  * @public
504
504
  */
505
- Expires?: number;
505
+ Expires?: number | undefined;
506
506
  /**
507
507
  * <p>The maximum number of fragments that are returned in the MPEG-DASH manifest.</p>
508
508
  * <p>When the <code>PlaybackMode</code> is <code>LIVE</code>, the most recent fragments are
@@ -521,7 +521,7 @@ export interface GetDASHStreamingSessionURLInput {
521
521
  * 10-second fragments.</p>
522
522
  * @public
523
523
  */
524
- MaxManifestFragmentResults?: number;
524
+ MaxManifestFragmentResults?: number | undefined;
525
525
  }
526
526
  /**
527
527
  * @public
@@ -532,7 +532,7 @@ export interface GetDASHStreamingSessionURLOutput {
532
532
  * MPEG-DASH manifest.</p>
533
533
  * @public
534
534
  */
535
- DASHStreamingSessionURL?: string;
535
+ DASHStreamingSessionURL?: string | undefined;
536
536
  }
537
537
  /**
538
538
  * @public
@@ -601,7 +601,7 @@ export interface HLSTimestampRange {
601
601
  * the stream head. </p>
602
602
  * @public
603
603
  */
604
- StartTimestamp?: Date;
604
+ StartTimestamp?: Date | undefined;
605
605
  /**
606
606
  * <p>The end of the timestamp range for the requested media. This value must be within 24
607
607
  * hours of the specified <code>StartTimestamp</code>, and it must be later than the
@@ -620,7 +620,7 @@ export interface HLSTimestampRange {
620
620
  * </note>
621
621
  * @public
622
622
  */
623
- EndTimestamp?: Date;
623
+ EndTimestamp?: Date | undefined;
624
624
  }
625
625
  /**
626
626
  * <p>Contains the range of timestamps for the requested media, and the source of the
@@ -652,14 +652,14 @@ export interface HLSFragmentSelector {
652
652
  * <p>The default is <code>SERVER_TIMESTAMP</code>.</p>
653
653
  * @public
654
654
  */
655
- FragmentSelectorType?: HLSFragmentSelectorType;
655
+ FragmentSelectorType?: HLSFragmentSelectorType | undefined;
656
656
  /**
657
657
  * <p>The start and end of the timestamp range for the requested media.</p>
658
658
  * <p>This value should not be present if <code>PlaybackType</code> is
659
659
  * <code>LIVE</code>.</p>
660
660
  * @public
661
661
  */
662
- TimestampRange?: HLSTimestampRange;
662
+ TimestampRange?: HLSTimestampRange | undefined;
663
663
  }
664
664
  /**
665
665
  * @public
@@ -684,7 +684,7 @@ export interface GetHLSStreamingSessionURLInput {
684
684
  * <code>StreamARN</code>.</p>
685
685
  * @public
686
686
  */
687
- StreamName?: string;
687
+ StreamName?: string | undefined;
688
688
  /**
689
689
  * <p>The Amazon Resource Name (ARN) of the stream for which to retrieve the HLS master
690
690
  * playlist URL.</p>
@@ -692,7 +692,7 @@ export interface GetHLSStreamingSessionURLInput {
692
692
  * <code>StreamARN</code>.</p>
693
693
  * @public
694
694
  */
695
- StreamARN?: string;
695
+ StreamARN?: string | undefined;
696
696
  /**
697
697
  * <p>Whether to retrieve live, live replay, or archived, on-demand data.</p>
698
698
  * <p>Features of the three types of sessions include the following:</p>
@@ -756,7 +756,7 @@ export interface GetHLSStreamingSessionURLInput {
756
756
  * <p>The default is <code>LIVE</code>.</p>
757
757
  * @public
758
758
  */
759
- PlaybackMode?: HLSPlaybackMode;
759
+ PlaybackMode?: HLSPlaybackMode | undefined;
760
760
  /**
761
761
  * <p>The time range of the requested fragment and the source of the timestamps.</p>
762
762
  * <p>This parameter is required if <code>PlaybackMode</code> is <code>ON_DEMAND</code> or
@@ -768,7 +768,7 @@ export interface GetHLSStreamingSessionURLInput {
768
768
  * <code>TimestampRange</code> must be set.</p>
769
769
  * @public
770
770
  */
771
- HLSFragmentSelector?: HLSFragmentSelector;
771
+ HLSFragmentSelector?: HLSFragmentSelector | undefined;
772
772
  /**
773
773
  * <p>Specifies which format should be used for packaging the media. Specifying the
774
774
  * <code>FRAGMENTED_MP4</code> container format packages the media into MP4 fragments
@@ -780,7 +780,7 @@ export interface GetHLSStreamingSessionURLInput {
780
780
  * <p>The default is <code>FRAGMENTED_MP4</code>.</p>
781
781
  * @public
782
782
  */
783
- ContainerFormat?: ContainerFormat;
783
+ ContainerFormat?: ContainerFormat | undefined;
784
784
  /**
785
785
  * <p>Specifies when flags marking discontinuities between fragments are added to the media
786
786
  * playlists.</p>
@@ -822,7 +822,7 @@ export interface GetHLSStreamingSessionURLInput {
822
822
  * <code>PRODUCER_TIMESTAMP</code>.</p>
823
823
  * @public
824
824
  */
825
- DiscontinuityMode?: HLSDiscontinuityMode;
825
+ DiscontinuityMode?: HLSDiscontinuityMode | undefined;
826
826
  /**
827
827
  * <p>Specifies when the fragment start timestamps should be included in the HLS media
828
828
  * playlist. Typically, media players report the playhead position as a time relative to
@@ -838,7 +838,7 @@ export interface GetHLSStreamingSessionURLInput {
838
838
  * </p>
839
839
  * @public
840
840
  */
841
- DisplayFragmentTimestamp?: HLSDisplayFragmentTimestamp;
841
+ DisplayFragmentTimestamp?: HLSDisplayFragmentTimestamp | undefined;
842
842
  /**
843
843
  * <p>The time in seconds until the requested session expires. This value can be between 300
844
844
  * (5 minutes) and 43200 (12 hours).</p>
@@ -849,7 +849,7 @@ export interface GetHLSStreamingSessionURLInput {
849
849
  * <p>The default is 300 (5 minutes).</p>
850
850
  * @public
851
851
  */
852
- Expires?: number;
852
+ Expires?: number | undefined;
853
853
  /**
854
854
  * <p>The maximum number of fragments that are returned in the HLS media playlists.</p>
855
855
  * <p>When the <code>PlaybackMode</code> is <code>LIVE</code>, the most recent fragments are
@@ -868,7 +868,7 @@ export interface GetHLSStreamingSessionURLInput {
868
868
  * 10-second fragments.</p>
869
869
  * @public
870
870
  */
871
- MaxMediaPlaylistFragmentResults?: number;
871
+ MaxMediaPlaylistFragmentResults?: number | undefined;
872
872
  }
873
873
  /**
874
874
  * @public
@@ -879,7 +879,7 @@ export interface GetHLSStreamingSessionURLOutput {
879
879
  * master playlist.</p>
880
880
  * @public
881
881
  */
882
- HLSStreamingSessionURL?: string;
882
+ HLSStreamingSessionURL?: string | undefined;
883
883
  }
884
884
  /**
885
885
  * @public
@@ -924,12 +924,12 @@ export interface GetImagesInput {
924
924
  * <p>The name of the stream from which to retrieve the images. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
925
925
  * @public
926
926
  */
927
- StreamName?: string;
927
+ StreamName?: string | undefined;
928
928
  /**
929
929
  * <p>The Amazon Resource Name (ARN) of the stream from which to retrieve the images. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>.</p>
930
930
  * @public
931
931
  */
932
- StreamARN?: string;
932
+ StreamARN?: string | undefined;
933
933
  /**
934
934
  * <p>The origin of the Server or Producer timestamps to use to generate the images.</p>
935
935
  * @public
@@ -950,7 +950,7 @@ export interface GetImagesInput {
950
950
  * </p>
951
951
  * @public
952
952
  */
953
- SamplingInterval?: number;
953
+ SamplingInterval?: number | undefined;
954
954
  /**
955
955
  * <p>The format that will be used to encode the image.</p>
956
956
  * @public
@@ -962,21 +962,21 @@ export interface GetImagesInput {
962
962
  * If the value is 100, the image will be generated with the best quality and less compression. If no value is provided, the default value of the <code>JPEGQuality</code> key will be set to 80.</p>
963
963
  * @public
964
964
  */
965
- FormatConfig?: Partial<Record<FormatConfigKey, string>>;
965
+ FormatConfig?: Partial<Record<FormatConfigKey, string>> | undefined;
966
966
  /**
967
967
  * <p>The width of the output image that is used in conjunction with the <code>HeightPixels</code> parameter. When both <code>WidthPixels</code> and <code>HeightPixels</code> parameters are provided,
968
968
  * the image will be stretched to fit the specified aspect ratio. If only the <code>WidthPixels</code> parameter is provided or if only the <code>HeightPixels</code> is provided, a <code>ValidationException</code> will be thrown.
969
969
  * If neither parameter is provided, the original image size from the stream will be returned.</p>
970
970
  * @public
971
971
  */
972
- WidthPixels?: number;
972
+ WidthPixels?: number | undefined;
973
973
  /**
974
974
  * <p>The height of the output image that is used in conjunction with the <code>WidthPixels</code> parameter. When both <code>HeightPixels</code> and <code>WidthPixels</code> parameters are provided, the image will be stretched to fit the
975
975
  * specified aspect ratio. If only the <code>HeightPixels</code> parameter is provided, its original aspect ratio will be used to calculate the <code>WidthPixels</code> ratio. If neither parameter is provided,
976
976
  * the original image size will be returned.</p>
977
977
  * @public
978
978
  */
979
- HeightPixels?: number;
979
+ HeightPixels?: number | undefined;
980
980
  /**
981
981
  * <p>The maximum number of images to be returned by the API. </p>
982
982
  * <note>
@@ -984,12 +984,12 @@ export interface GetImagesInput {
984
984
  * </note>
985
985
  * @public
986
986
  */
987
- MaxResults?: number;
987
+ MaxResults?: number | undefined;
988
988
  /**
989
989
  * <p>A token that specifies where to start paginating the next set of Images. This is the <code>GetImages:NextToken</code> from a previously truncated response.</p>
990
990
  * @public
991
991
  */
992
- NextToken?: string;
992
+ NextToken?: string | undefined;
993
993
  }
994
994
  /**
995
995
  * @public
@@ -1013,7 +1013,7 @@ export interface Image {
1013
1013
  * window.</p>
1014
1014
  * @public
1015
1015
  */
1016
- TimeStamp?: Date;
1016
+ TimeStamp?: Date | undefined;
1017
1017
  /**
1018
1018
  * <p>The error message shown when the image for the provided timestamp was not extracted due to a non-tryable error. An error will be returned if: </p>
1019
1019
  * <ul>
@@ -1029,12 +1029,12 @@ export interface Image {
1029
1029
  * </ul>
1030
1030
  * @public
1031
1031
  */
1032
- Error?: ImageError;
1032
+ Error?: ImageError | undefined;
1033
1033
  /**
1034
1034
  * <p>An attribute of the <code>Image</code> object that is Base64 encoded.</p>
1035
1035
  * @public
1036
1036
  */
1037
- ImageContent?: string;
1037
+ ImageContent?: string | undefined;
1038
1038
  }
1039
1039
  /**
1040
1040
  * @public
@@ -1045,12 +1045,12 @@ export interface GetImagesOutput {
1045
1045
  * If an error occurs while the image is being generated, the <code>MEDIA_ERROR</code> will be listed in the output as the cause of the missing image. </p>
1046
1046
  * @public
1047
1047
  */
1048
- Images?: Image[];
1048
+ Images?: Image[] | undefined;
1049
1049
  /**
1050
1050
  * <p>The encrypted token that was used in the request to get more images.</p>
1051
1051
  * @public
1052
1052
  */
1053
- NextToken?: string;
1053
+ NextToken?: string | undefined;
1054
1054
  }
1055
1055
  /**
1056
1056
  * @public
@@ -1060,12 +1060,12 @@ export interface GetMediaForFragmentListInput {
1060
1060
  * <p>The name of the stream from which to retrieve fragment media. Specify either this parameter or the <code>StreamARN</code> parameter.</p>
1061
1061
  * @public
1062
1062
  */
1063
- StreamName?: string;
1063
+ StreamName?: string | undefined;
1064
1064
  /**
1065
1065
  * <p>The Amazon Resource Name (ARN) of the stream from which to retrieve fragment media. Specify either this parameter or the <code>StreamName</code> parameter.</p>
1066
1066
  * @public
1067
1067
  */
1068
- StreamARN?: string;
1068
+ StreamARN?: string | undefined;
1069
1069
  /**
1070
1070
  * <p>A list of the numbers of fragments for which to retrieve media. You retrieve these
1071
1071
  * values with <a>ListFragments</a>.</p>
@@ -1081,7 +1081,7 @@ export interface GetMediaForFragmentListOutput {
1081
1081
  * <p>The content type of the requested media.</p>
1082
1082
  * @public
1083
1083
  */
1084
- ContentType?: string;
1084
+ ContentType?: string | undefined;
1085
1085
  /**
1086
1086
  * <p>The payload that Kinesis Video Streams returns is a sequence of chunks from the
1087
1087
  * specified stream. For information about the chunks, see <a href="http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_PutMedia.html">PutMedia</a>. The chunks that Kinesis Video Streams returns in the
@@ -1118,7 +1118,7 @@ export interface GetMediaForFragmentListOutput {
1118
1118
  * </ul>
1119
1119
  * @public
1120
1120
  */
1121
- Payload?: StreamingBlobTypes;
1121
+ Payload?: StreamingBlobTypes | undefined;
1122
1122
  }
1123
1123
  /**
1124
1124
  * @public
@@ -1192,25 +1192,25 @@ export interface ListFragmentsInput {
1192
1192
  * <p>The name of the stream from which to retrieve a fragment list. Specify either this parameter or the <code>StreamARN</code> parameter.</p>
1193
1193
  * @public
1194
1194
  */
1195
- StreamName?: string;
1195
+ StreamName?: string | undefined;
1196
1196
  /**
1197
1197
  * <p>The Amazon Resource Name (ARN) of the stream from which to retrieve a fragment list. Specify either this parameter or the <code>StreamName</code> parameter.</p>
1198
1198
  * @public
1199
1199
  */
1200
- StreamARN?: string;
1200
+ StreamARN?: string | undefined;
1201
1201
  /**
1202
1202
  * <p>The total number of fragments to return. If the total number of fragments available is
1203
1203
  * more than the value specified in <code>max-results</code>, then a <a>ListFragmentsOutput$NextToken</a> is provided in the output that you can use
1204
1204
  * to resume pagination.</p>
1205
1205
  * @public
1206
1206
  */
1207
- MaxResults?: number;
1207
+ MaxResults?: number | undefined;
1208
1208
  /**
1209
1209
  * <p>A token to specify where to start paginating. This is the <a>ListFragmentsOutput$NextToken</a> from a previously truncated
1210
1210
  * response.</p>
1211
1211
  * @public
1212
1212
  */
1213
- NextToken?: string;
1213
+ NextToken?: string | undefined;
1214
1214
  /**
1215
1215
  * <p>Describes the timestamp range and timestamp origin for the range of fragments to
1216
1216
  * return.</p>
@@ -1219,7 +1219,7 @@ export interface ListFragmentsInput {
1219
1219
  * </note>
1220
1220
  * @public
1221
1221
  */
1222
- FragmentSelector?: FragmentSelector;
1222
+ FragmentSelector?: FragmentSelector | undefined;
1223
1223
  }
1224
1224
  /**
1225
1225
  * <p>Represents a segment of video or other time-delimited data.</p>
@@ -1231,28 +1231,28 @@ export interface Fragment {
1231
1231
  * ingestion order.</p>
1232
1232
  * @public
1233
1233
  */
1234
- FragmentNumber?: string;
1234
+ FragmentNumber?: string | undefined;
1235
1235
  /**
1236
1236
  * <p>The total fragment size, including information about the fragment and contained media
1237
1237
  * data.</p>
1238
1238
  * @public
1239
1239
  */
1240
- FragmentSizeInBytes?: number;
1240
+ FragmentSizeInBytes?: number | undefined;
1241
1241
  /**
1242
1242
  * <p>The timestamp from the producer corresponding to the fragment.</p>
1243
1243
  * @public
1244
1244
  */
1245
- ProducerTimestamp?: Date;
1245
+ ProducerTimestamp?: Date | undefined;
1246
1246
  /**
1247
1247
  * <p>The timestamp from the Amazon Web Services server corresponding to the fragment.</p>
1248
1248
  * @public
1249
1249
  */
1250
- ServerTimestamp?: Date;
1250
+ ServerTimestamp?: Date | undefined;
1251
1251
  /**
1252
1252
  * <p>The playback duration or other time value associated with the fragment.</p>
1253
1253
  * @public
1254
1254
  */
1255
- FragmentLengthInMilliseconds?: number;
1255
+ FragmentLengthInMilliseconds?: number | undefined;
1256
1256
  }
1257
1257
  /**
1258
1258
  * @public
@@ -1263,14 +1263,14 @@ export interface ListFragmentsOutput {
1263
1263
  * selector criteria. Results are in no specific order, even across pages.</p>
1264
1264
  * @public
1265
1265
  */
1266
- Fragments?: Fragment[];
1266
+ Fragments?: Fragment[] | undefined;
1267
1267
  /**
1268
1268
  * <p>If the returned list is truncated, the operation returns this token to use to retrieve
1269
1269
  * the next page of results. This value is <code>null</code> when there are no more results
1270
1270
  * to return.</p>
1271
1271
  * @public
1272
1272
  */
1273
- NextToken?: string;
1273
+ NextToken?: string | undefined;
1274
1274
  }
1275
1275
  /**
1276
1276
  * @internal
@@ -4,7 +4,7 @@ import { KinesisVideoArchivedMediaServiceException as __BaseException } from "./
4
4
  export declare class ClientLimitExceededException extends __BaseException {
5
5
  readonly name: "ClientLimitExceededException";
6
6
  readonly $fault: "client";
7
- Message?: string;
7
+ Message?: string | undefined;
8
8
  constructor(
9
9
  opts: __ExceptionOptionType<ClientLimitExceededException, __BaseException>
10
10
  );
@@ -24,18 +24,18 @@ export interface ClipFragmentSelector {
24
24
  TimestampRange: ClipTimestampRange | undefined;
25
25
  }
26
26
  export interface GetClipInput {
27
- StreamName?: string;
28
- StreamARN?: string;
27
+ StreamName?: string | undefined;
28
+ StreamARN?: string | undefined;
29
29
  ClipFragmentSelector: ClipFragmentSelector | undefined;
30
30
  }
31
31
  export interface GetClipOutput {
32
- ContentType?: string;
33
- Payload?: StreamingBlobTypes;
32
+ ContentType?: string | undefined;
33
+ Payload?: StreamingBlobTypes | undefined;
34
34
  }
35
35
  export declare class InvalidArgumentException extends __BaseException {
36
36
  readonly name: "InvalidArgumentException";
37
37
  readonly $fault: "client";
38
- Message?: string;
38
+ Message?: string | undefined;
39
39
  constructor(
40
40
  opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
41
41
  );
@@ -43,7 +43,7 @@ export declare class InvalidArgumentException extends __BaseException {
43
43
  export declare class InvalidCodecPrivateDataException extends __BaseException {
44
44
  readonly name: "InvalidCodecPrivateDataException";
45
45
  readonly $fault: "client";
46
- Message?: string;
46
+ Message?: string | undefined;
47
47
  constructor(
48
48
  opts: __ExceptionOptionType<
49
49
  InvalidCodecPrivateDataException,
@@ -54,7 +54,7 @@ export declare class InvalidCodecPrivateDataException extends __BaseException {
54
54
  export declare class InvalidMediaFrameException extends __BaseException {
55
55
  readonly name: "InvalidMediaFrameException";
56
56
  readonly $fault: "client";
57
- Message?: string;
57
+ Message?: string | undefined;
58
58
  constructor(
59
59
  opts: __ExceptionOptionType<InvalidMediaFrameException, __BaseException>
60
60
  );
@@ -62,7 +62,7 @@ export declare class InvalidMediaFrameException extends __BaseException {
62
62
  export declare class MissingCodecPrivateDataException extends __BaseException {
63
63
  readonly name: "MissingCodecPrivateDataException";
64
64
  readonly $fault: "client";
65
- Message?: string;
65
+ Message?: string | undefined;
66
66
  constructor(
67
67
  opts: __ExceptionOptionType<
68
68
  MissingCodecPrivateDataException,
@@ -73,7 +73,7 @@ export declare class MissingCodecPrivateDataException extends __BaseException {
73
73
  export declare class NoDataRetentionException extends __BaseException {
74
74
  readonly name: "NoDataRetentionException";
75
75
  readonly $fault: "client";
76
- Message?: string;
76
+ Message?: string | undefined;
77
77
  constructor(
78
78
  opts: __ExceptionOptionType<NoDataRetentionException, __BaseException>
79
79
  );
@@ -81,7 +81,7 @@ export declare class NoDataRetentionException extends __BaseException {
81
81
  export declare class NotAuthorizedException extends __BaseException {
82
82
  readonly name: "NotAuthorizedException";
83
83
  readonly $fault: "client";
84
- Message?: string;
84
+ Message?: string | undefined;
85
85
  constructor(
86
86
  opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
87
87
  );
@@ -89,7 +89,7 @@ export declare class NotAuthorizedException extends __BaseException {
89
89
  export declare class ResourceNotFoundException extends __BaseException {
90
90
  readonly name: "ResourceNotFoundException";
91
91
  readonly $fault: "client";
92
- Message?: string;
92
+ Message?: string | undefined;
93
93
  constructor(
94
94
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
95
95
  );
@@ -97,7 +97,7 @@ export declare class ResourceNotFoundException extends __BaseException {
97
97
  export declare class UnsupportedStreamMediaTypeException extends __BaseException {
98
98
  readonly name: "UnsupportedStreamMediaTypeException";
99
99
  readonly $fault: "client";
100
- Message?: string;
100
+ Message?: string | undefined;
101
101
  constructor(
102
102
  opts: __ExceptionOptionType<
103
103
  UnsupportedStreamMediaTypeException,
@@ -112,12 +112,12 @@ export declare const DASHFragmentSelectorType: {
112
112
  export type DASHFragmentSelectorType =
113
113
  (typeof DASHFragmentSelectorType)[keyof typeof DASHFragmentSelectorType];
114
114
  export interface DASHTimestampRange {
115
- StartTimestamp?: Date;
116
- EndTimestamp?: Date;
115
+ StartTimestamp?: Date | undefined;
116
+ EndTimestamp?: Date | undefined;
117
117
  }
118
118
  export interface DASHFragmentSelector {
119
- FragmentSelectorType?: DASHFragmentSelectorType;
120
- TimestampRange?: DASHTimestampRange;
119
+ FragmentSelectorType?: DASHFragmentSelectorType | undefined;
120
+ TimestampRange?: DASHTimestampRange | undefined;
121
121
  }
122
122
  export declare const DASHDisplayFragmentNumber: {
123
123
  readonly ALWAYS: "ALWAYS";
@@ -139,17 +139,17 @@ export declare const DASHPlaybackMode: {
139
139
  export type DASHPlaybackMode =
140
140
  (typeof DASHPlaybackMode)[keyof typeof DASHPlaybackMode];
141
141
  export interface GetDASHStreamingSessionURLInput {
142
- StreamName?: string;
143
- StreamARN?: string;
144
- PlaybackMode?: DASHPlaybackMode;
145
- DisplayFragmentTimestamp?: DASHDisplayFragmentTimestamp;
146
- DisplayFragmentNumber?: DASHDisplayFragmentNumber;
147
- DASHFragmentSelector?: DASHFragmentSelector;
148
- Expires?: number;
149
- MaxManifestFragmentResults?: number;
142
+ StreamName?: string | undefined;
143
+ StreamARN?: string | undefined;
144
+ PlaybackMode?: DASHPlaybackMode | undefined;
145
+ DisplayFragmentTimestamp?: DASHDisplayFragmentTimestamp | undefined;
146
+ DisplayFragmentNumber?: DASHDisplayFragmentNumber | undefined;
147
+ DASHFragmentSelector?: DASHFragmentSelector | undefined;
148
+ Expires?: number | undefined;
149
+ MaxManifestFragmentResults?: number | undefined;
150
150
  }
151
151
  export interface GetDASHStreamingSessionURLOutput {
152
- DASHStreamingSessionURL?: string;
152
+ DASHStreamingSessionURL?: string | undefined;
153
153
  }
154
154
  export declare const ContainerFormat: {
155
155
  readonly FRAGMENTED_MP4: "FRAGMENTED_MP4";
@@ -177,12 +177,12 @@ export declare const HLSFragmentSelectorType: {
177
177
  export type HLSFragmentSelectorType =
178
178
  (typeof HLSFragmentSelectorType)[keyof typeof HLSFragmentSelectorType];
179
179
  export interface HLSTimestampRange {
180
- StartTimestamp?: Date;
181
- EndTimestamp?: Date;
180
+ StartTimestamp?: Date | undefined;
181
+ EndTimestamp?: Date | undefined;
182
182
  }
183
183
  export interface HLSFragmentSelector {
184
- FragmentSelectorType?: HLSFragmentSelectorType;
185
- TimestampRange?: HLSTimestampRange;
184
+ FragmentSelectorType?: HLSFragmentSelectorType | undefined;
185
+ TimestampRange?: HLSTimestampRange | undefined;
186
186
  }
187
187
  export declare const HLSPlaybackMode: {
188
188
  readonly LIVE: "LIVE";
@@ -192,18 +192,18 @@ export declare const HLSPlaybackMode: {
192
192
  export type HLSPlaybackMode =
193
193
  (typeof HLSPlaybackMode)[keyof typeof HLSPlaybackMode];
194
194
  export interface GetHLSStreamingSessionURLInput {
195
- StreamName?: string;
196
- StreamARN?: string;
197
- PlaybackMode?: HLSPlaybackMode;
198
- HLSFragmentSelector?: HLSFragmentSelector;
199
- ContainerFormat?: ContainerFormat;
200
- DiscontinuityMode?: HLSDiscontinuityMode;
201
- DisplayFragmentTimestamp?: HLSDisplayFragmentTimestamp;
202
- Expires?: number;
203
- MaxMediaPlaylistFragmentResults?: number;
195
+ StreamName?: string | undefined;
196
+ StreamARN?: string | undefined;
197
+ PlaybackMode?: HLSPlaybackMode | undefined;
198
+ HLSFragmentSelector?: HLSFragmentSelector | undefined;
199
+ ContainerFormat?: ContainerFormat | undefined;
200
+ DiscontinuityMode?: HLSDiscontinuityMode | undefined;
201
+ DisplayFragmentTimestamp?: HLSDisplayFragmentTimestamp | undefined;
202
+ Expires?: number | undefined;
203
+ MaxMediaPlaylistFragmentResults?: number | undefined;
204
204
  }
205
205
  export interface GetHLSStreamingSessionURLOutput {
206
- HLSStreamingSessionURL?: string;
206
+ HLSStreamingSessionURL?: string | undefined;
207
207
  }
208
208
  export declare const Format: {
209
209
  readonly JPEG: "JPEG";
@@ -222,18 +222,18 @@ export declare const ImageSelectorType: {
222
222
  export type ImageSelectorType =
223
223
  (typeof ImageSelectorType)[keyof typeof ImageSelectorType];
224
224
  export interface GetImagesInput {
225
- StreamName?: string;
226
- StreamARN?: string;
225
+ StreamName?: string | undefined;
226
+ StreamARN?: string | undefined;
227
227
  ImageSelectorType: ImageSelectorType | undefined;
228
228
  StartTimestamp: Date | undefined;
229
229
  EndTimestamp: Date | undefined;
230
- SamplingInterval?: number;
230
+ SamplingInterval?: number | undefined;
231
231
  Format: Format | undefined;
232
- FormatConfig?: Partial<Record<FormatConfigKey, string>>;
233
- WidthPixels?: number;
234
- HeightPixels?: number;
235
- MaxResults?: number;
236
- NextToken?: string;
232
+ FormatConfig?: Partial<Record<FormatConfigKey, string>> | undefined;
233
+ WidthPixels?: number | undefined;
234
+ HeightPixels?: number | undefined;
235
+ MaxResults?: number | undefined;
236
+ NextToken?: string | undefined;
237
237
  }
238
238
  export declare const ImageError: {
239
239
  readonly MEDIA_ERROR: "MEDIA_ERROR";
@@ -241,22 +241,22 @@ export declare const ImageError: {
241
241
  };
242
242
  export type ImageError = (typeof ImageError)[keyof typeof ImageError];
243
243
  export interface Image {
244
- TimeStamp?: Date;
245
- Error?: ImageError;
246
- ImageContent?: string;
244
+ TimeStamp?: Date | undefined;
245
+ Error?: ImageError | undefined;
246
+ ImageContent?: string | undefined;
247
247
  }
248
248
  export interface GetImagesOutput {
249
- Images?: Image[];
250
- NextToken?: string;
249
+ Images?: Image[] | undefined;
250
+ NextToken?: string | undefined;
251
251
  }
252
252
  export interface GetMediaForFragmentListInput {
253
- StreamName?: string;
254
- StreamARN?: string;
253
+ StreamName?: string | undefined;
254
+ StreamARN?: string | undefined;
255
255
  Fragments: string[] | undefined;
256
256
  }
257
257
  export interface GetMediaForFragmentListOutput {
258
- ContentType?: string;
259
- Payload?: StreamingBlobTypes;
258
+ ContentType?: string | undefined;
259
+ Payload?: StreamingBlobTypes | undefined;
260
260
  }
261
261
  export declare const FragmentSelectorType: {
262
262
  readonly PRODUCER_TIMESTAMP: "PRODUCER_TIMESTAMP";
@@ -273,22 +273,22 @@ export interface FragmentSelector {
273
273
  TimestampRange: TimestampRange | undefined;
274
274
  }
275
275
  export interface ListFragmentsInput {
276
- StreamName?: string;
277
- StreamARN?: string;
278
- MaxResults?: number;
279
- NextToken?: string;
280
- FragmentSelector?: FragmentSelector;
276
+ StreamName?: string | undefined;
277
+ StreamARN?: string | undefined;
278
+ MaxResults?: number | undefined;
279
+ NextToken?: string | undefined;
280
+ FragmentSelector?: FragmentSelector | undefined;
281
281
  }
282
282
  export interface Fragment {
283
- FragmentNumber?: string;
284
- FragmentSizeInBytes?: number;
285
- ProducerTimestamp?: Date;
286
- ServerTimestamp?: Date;
287
- FragmentLengthInMilliseconds?: number;
283
+ FragmentNumber?: string | undefined;
284
+ FragmentSizeInBytes?: number | undefined;
285
+ ProducerTimestamp?: Date | undefined;
286
+ ServerTimestamp?: Date | undefined;
287
+ FragmentLengthInMilliseconds?: number | undefined;
288
288
  }
289
289
  export interface ListFragmentsOutput {
290
- Fragments?: Fragment[];
291
- NextToken?: string;
290
+ Fragments?: Fragment[] | undefined;
291
+ NextToken?: string | undefined;
292
292
  }
293
293
  export declare const GetClipOutputFilterSensitiveLog: (
294
294
  obj: GetClipOutput
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-video-archived-media",
3
3
  "description": "AWS SDK for JavaScript Kinesis Video Archived Media Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kinesis-video-archived-media",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",