Class: Aws::CloudFront::Types::CustomHeaders

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 CustomHeaders data as a hash:

{
  quantity: 1, # required
  items: [
    {
      header_name: "string", # required
      header_value: "string", # required
    },
  ],
}

A complex type that contains the list of Custom Headers for each origin.

Instance Attribute Summary collapse

Instance Attribute Details

#itemsArray<Types::OriginCustomHeader>

Optional: A list that contains one ‘OriginCustomHeader` element for each custom header that you want CloudFront to forward to the origin. If Quantity is `0`, omit `Items`.

Returns:



2072
2073
2074
2075
2076
# File 'lib/aws-sdk-cloudfront/types.rb', line 2072

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

#quantityInteger

The number of custom headers, if any, for this distribution.

Returns:

  • (Integer)


2072
2073
2074
2075
2076
# File 'lib/aws-sdk-cloudfront/types.rb', line 2072

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