Class: Aws::Lightsail::Types::CookieObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::CookieObject
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Describes whether an Amazon Lightsail content delivery network (CDN) distribution forwards cookies to the origin and, if so, which ones.
For the cookies that you specify, your distribution caches separate versions of the specified content based on the cookie values in viewer requests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cookies_allow_list ⇒ Array<String>
The specific cookies to forward to your distribution's origin.
-
#option ⇒ String
Specifies which cookies to forward to the distribution's origin for a cache behavior:
all
,none
, orallow-list
to forward only the cookies specified in thecookiesAllowList
parameter.
Instance Attribute Details
#cookies_allow_list ⇒ Array<String>
The specific cookies to forward to your distribution's origin.
2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 2654 class CookieObject < Struct.new( :option, :cookies_allow_list) SENSITIVE = [] include Aws::Structure end |
#option ⇒ String
Specifies which cookies to forward to the distribution's origin for
a cache behavior: all
, none
, or allow-list
to forward only the
cookies specified in the cookiesAllowList
parameter.
2654 2655 2656 2657 2658 2659 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 2654 class CookieObject < Struct.new( :option, :cookies_allow_list) SENSITIVE = [] include Aws::Structure end |