Class: Aws::CloudFront::Types::CookieNames
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::CookieNames
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
When making an API call, you may pass CookieNames data as a hash:
{
quantity: 1, # required
items: ["string"],
}
A complex type that specifies whether you want CloudFront to forward cookies to the origin and, if so, which ones. For more information about forwarding cookies to the origin, see [ Caching Content Based on Request Headers] in the *Amazon CloudFront Developer Guide*.
[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html
Instance Attribute Summary collapse
-
#items ⇒ Array<String>
A complex type that contains one ‘Name` element for each cookie that you want CloudFront to forward to the origin for this cache behavior.
-
#quantity ⇒ Integer
The number of different cookies that you want CloudFront to forward to the origin for this cache behavior.
Instance Attribute Details
#items ⇒ Array<String>
A complex type that contains one ‘Name` element for each cookie that you want CloudFront to forward to the origin for this cache behavior.
991 992 993 994 995 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 991 class CookieNames < Struct.new( :quantity, :items) include Aws::Structure end |
#quantity ⇒ Integer
The number of different cookies that you want CloudFront to forward to the origin for this cache behavior.
991 992 993 994 995 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 991 class CookieNames < Struct.new( :quantity, :items) include Aws::Structure end |