Class: Aws::CloudFront::Types::QueryStringCacheKeys

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 QueryStringCacheKeys data as a hash:

{
  quantity: 1, # required
  items: ["string"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#itemsArray<String>

(Optional) A list that contains the query string parameters that you want CloudFront to use as a basis for caching for this cache behavior. If ‘Quantity` is 0, you can omit `Items`.

Returns:

  • (Array<String>)


4470
4471
4472
4473
4474
# File 'lib/aws-sdk-cloudfront/types.rb', line 4470

class QueryStringCacheKeys < Struct.new(
  :quantity,
  :items)
  include Aws::Structure
end

#quantityInteger

The number of ‘whitelisted` query string parameters for this cache behavior.

Returns:

  • (Integer)


4470
4471
4472
4473
4474
# File 'lib/aws-sdk-cloudfront/types.rb', line 4470

class QueryStringCacheKeys < Struct.new(
  :quantity,
  :items)
  include Aws::Structure
end