Class: Aws::CloudFront::Types::OriginCustomHeader

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

{
  header_name: "string", # required
  header_value: "string", # required
}

A complex type that contains ‘HeaderName` and `HeaderValue` elements, if any, for this distribution.

Instance Attribute Summary collapse

Instance Attribute Details

#header_nameString

The name of a header that you want CloudFront to forward to your origin. For more information, see [Forwarding Custom Headers to Your Origin (Web Distributions Only)] in the *Amazon Amazon CloudFront Developer Guide*.

[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/forward-custom-headers.html

Returns:

  • (String)


5584
5585
5586
5587
5588
# File 'lib/aws-sdk-cloudfront/types.rb', line 5584

class OriginCustomHeader < Struct.new(
  :header_name,
  :header_value)
  include Aws::Structure
end

#header_valueString

The value for the header that you specified in the ‘HeaderName` field.

Returns:

  • (String)


5584
5585
5586
5587
5588
# File 'lib/aws-sdk-cloudfront/types.rb', line 5584

class OriginCustomHeader < Struct.new(
  :header_name,
  :header_value)
  include Aws::Structure
end