Class: Aws::Lightsail::Types::HeaderObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::HeaderObject
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Describes the request headers that a Lightsail distribution bases caching on.
For the headers that you specify, your distribution caches separate
versions of the specified content based on the header values in viewer
requests. For example, suppose viewer requests for logo.jpg
contain
a custom product
header that has a value of either acme
or apex
,
and you configure your distribution to cache your content based on
values in the product
header. Your distribution forwards the
product
header to the origin and caches the response from the origin
once for each header value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#headers_allow_list ⇒ Array<String>
The specific headers to forward to your distribution's origin.
-
#option ⇒ String
The headers that you want your distribution to forward to your origin and base caching on.
Instance Attribute Details
#headers_allow_list ⇒ Array<String>
The specific headers to forward to your distribution's origin.
9689 9690 9691 9692 9693 9694 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9689 class HeaderObject < Struct.new( :option, :headers_allow_list) SENSITIVE = [] include Aws::Structure end |
#option ⇒ String
The headers that you want your distribution to forward to your origin and base caching on.
You can configure your distribution to do one of the following:
all
- Forward all headers to your origin.none
- Forward only the default headers.allow-list
- Forward only the headers you specify using theheadersAllowList
parameter.
9689 9690 9691 9692 9693 9694 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 9689 class HeaderObject < Struct.new( :option, :headers_allow_list) SENSITIVE = [] include Aws::Structure end |