/** *

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

*/ export interface _OriginCustomHeader { /** *

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 CloudFront Developer Guide.

*/ HeaderName: string; /** *

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

*/ HeaderValue: string; } export declare type _UnmarshalledOriginCustomHeader = _OriginCustomHeader;