You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <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>
990
+
*/
991
+
StreamName?: string;
992
+
993
+
/**
994
+
* <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>
995
+
*/
996
+
StreamARN?: string;
997
+
998
+
/**
999
+
* <p>The origin of the Server or Producer timestamps to use to generate the images.</p>
* <p>The starting point from which the images should be generated. This <code>StartTimestamp</code> must be within an inclusive range of timestamps for an image to be returned.</p>
1005
+
*/
1006
+
StartTimestamp: Date|undefined;
1007
+
1008
+
/**
1009
+
* <p>The end timestamp for the range of images to be generated.</p>
1010
+
*/
1011
+
EndTimestamp: Date|undefined;
1012
+
1013
+
/**
1014
+
* <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 3000 ms. If the timestamp range is less than the sampling interval, the Image from the <code>startTimestamp</code> will be returned if available.
1015
+
* </p>
1016
+
* <note>
1017
+
* <p>The minimum value of 3000 ms is a soft limit. If needed, a lower sampling frequency can be requested.</p>
1018
+
* </note>
1019
+
*/
1020
+
SamplingInterval: number|undefined;
1021
+
1022
+
/**
1023
+
* <p>The format that will be used to encode the image.</p>
1024
+
*/
1025
+
Format: Format|string|undefined;
1026
+
1027
+
/**
1028
+
* <p>The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated. The <code>FormatConfig</code> key is the <code>JPEGQuality</code>, which indicates the JPEG quality key to be used to generate the image.
1029
+
* 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.
1030
+
* 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>
1031
+
*/
1032
+
FormatConfig?: {[key: string]: string};
1033
+
1034
+
/**
1035
+
* <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,
1036
+
* 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.
1037
+
* If neither parameter is provided, the original image size from the stream will be returned.</p>
1038
+
*/
1039
+
WidthPixels?: number;
1040
+
1041
+
/**
1042
+
* <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
1043
+
* 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,
1044
+
* the original image size will be returned.</p>
1045
+
*/
1046
+
HeightPixels?: number;
1047
+
1048
+
/**
1049
+
* <p>The maximum number of images to be returned by the API. </p>
1050
+
* <note>
1051
+
* <p>The default limit is 100 images per API response. The additional results will be paginated. </p>
1052
+
* </note>
1053
+
*/
1054
+
MaxResults?: number;
1055
+
1056
+
/**
1057
+
* <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>
* <p>A structure that contains the <code>Timestamp</code>, <code>Error</code>, and <code>ImageContent</code>.</p>
1078
+
*/
1079
+
exportinterfaceImage{
1080
+
/**
1081
+
* <p>An attribute of the <code>Image</code> object that is used to extract an image from the video stream. This field is used to manage gaps on images or to better understand the pagination
1082
+
* window.</p>
1083
+
*/
1084
+
TimeStamp?: Date;
1085
+
1086
+
/**
1087
+
* <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>
1088
+
* <ul>
1089
+
* <li>
1090
+
* <p>There is no media that exists for the specified <code>Timestamp</code>.</p>
1091
+
* </li>
1092
+
* </ul>
1093
+
* <ul>
1094
+
* <li>
1095
+
* <p>The media for the specified time does not allow an image to be extracted. In this case the media is audio only, or the incorrect
1096
+
* media has been ingested.</p>
1097
+
* </li>
1098
+
* </ul>
1099
+
*/
1100
+
Error?: ImageError|string;
1101
+
1102
+
/**
1103
+
* <p>An attribute of the <code>Image</code> object that is Base64 encoded.</p>
* <p>The list of images generated from the video stream. If there is no media available for the given timestamp, the <code>NO_MEDIA</code> error will be listed in the output.
1120
+
* 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>
1121
+
*/
1122
+
Images?: Image[];
1123
+
1124
+
/**
1125
+
* <p>The encrypted token that was used in the request to get more images.</p>
0 commit comments