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>)


6135
6136
6137
6138
6139
# File 'lib/aws-sdk-cloudfront/types.rb', line 6135

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

#quantityInteger

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

Returns:

  • (Integer)


6135
6136
6137
6138
6139
# File 'lib/aws-sdk-cloudfront/types.rb', line 6135

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