Class: Aws::CloudFront::Types::ListStreamingDistributionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudfront/types.rb

Overview

Note:

When making an API call, you may pass ListStreamingDistributionsRequest data as a hash:

{
  marker: "string",
  max_items: 1,
}

The request to list your streaming distributions.

Instance Attribute Summary collapse

Instance Attribute Details

#markerString

The value that you provided for the ‘Marker` request parameter.

Returns:

  • (String)


5914
5915
5916
5917
5918
# File 'lib/aws-sdk-cloudfront/types.rb', line 5914

class ListStreamingDistributionsRequest < Struct.new(
  :marker,
  :max_items)
  include Aws::Structure
end

#max_itemsInteger

The value that you provided for the ‘MaxItems` request parameter.

Returns:

  • (Integer)


5914
5915
5916
5917
5918
# File 'lib/aws-sdk-cloudfront/types.rb', line 5914

class ListStreamingDistributionsRequest < Struct.new(
  :marker,
  :max_items)
  include Aws::Structure
end