Class: Aws::CloudFront::Types::QueryStringCacheKeys
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::QueryStringCacheKeys
- 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"],
}
A complex type that contains information about the query string parameters that you want CloudFront to use for caching for a cache behavior.
Instance Attribute Summary collapse
-
#items ⇒ Array<String>
A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior.
-
#quantity ⇒ Integer
The number of ‘whitelisted` query string parameters for a cache behavior.
Instance Attribute Details
#items ⇒ Array<String>
A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If ‘Quantity` is 0, you can omit `Items`.
6926 6927 6928 6929 6930 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6926 class QueryStringCacheKeys < Struct.new( :quantity, :items) include Aws::Structure end |
#quantity ⇒ Integer
The number of ‘whitelisted` query string parameters for a cache behavior.
6926 6927 6928 6929 6930 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6926 class QueryStringCacheKeys < Struct.new( :quantity, :items) include Aws::Structure end |