Method: Aws::KinesisVideoArchivedMedia::Types::GetImagesInput#max_results

Defined in:
lib/aws-sdk-kinesisvideoarchivedmedia/types.rb

#max_resultsInteger

The maximum number of images to be returned by the API.

<note markdown=“1”> The default limit is 25 images per API response. Providing a ‘MaxResults` greater than this value will result in a page size of

  1. Any additional results will be paginated.

</note>

Returns:

  • (Integer)


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