Method: Aws::KinesisVideoArchivedMedia::Types::GetImagesInput#height_pixels
- Defined in:
- lib/aws-sdk-kinesisvideoarchivedmedia/types.rb
#height_pixels ⇒ Integer
The height of the output image that is used in conjunction with the ‘WidthPixels` parameter. When both `HeightPixels` and `WidthPixels` parameters are provided, the image will be stretched to fit the specified aspect ratio. If only the `HeightPixels` parameter is provided, its original aspect ratio will be used to calculate the `WidthPixels` ratio. If neither parameter is provided, the original image size will be returned.
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 |
# File 'lib/aws-sdk-kinesisvideoarchivedmedia/types.rb', line 816 class GetImagesInput < Struct.new( :stream_name, :stream_arn, :image_selector_type, :start_timestamp, :end_timestamp, :sampling_interval, :format, :format_config, :width_pixels, :height_pixels, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |