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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[:header_value]

Instance Attribute Summary collapse

Instance Attribute Details

#header_nameString

The name of a header that you want CloudFront to send to your origin. For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

Returns:

  • (String)


8495
8496
8497
8498
8499
8500
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 8495

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

#header_valueString

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

Returns:

  • (String)


8495
8496
8497
8498
8499
8500
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 8495

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