Show / Hide Table of Contents

Interface IResponseCustomHeader

An HTTP response header name and its value.

Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IResponseCustomHeader
Syntax (vb)
Public Interface IResponseCustomHeader
Remarks

CloudFront includes this header in HTTP responses that it sends for requests that match a cache behavior that’s associated with this response headers policy.

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.CloudFront;

             var responseCustomHeader = new ResponseCustomHeader {
                 Header = "header",
                 Override = false,
                 Value = "value"
             };

Synopsis

Properties

Header

The HTTP response header name.

Override

A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

Value

The value for the HTTP response header.

Properties

Header

The HTTP response header name.

string Header { get; }
Property Value

string

Remarks

CloudFront includes this header in HTTP responses that it sends for requests that match a cache behavior that’s associated with this response headers policy.

ExampleMetadata: fixture=_generated

Override

A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.

bool Override { get; }
Property Value

bool

Remarks

CloudFront includes this header in HTTP responses that it sends for requests that match a cache behavior that’s associated with this response headers policy.

ExampleMetadata: fixture=_generated

Value

The value for the HTTP response header.

string Value { get; }
Property Value

string

Remarks

CloudFront includes this header in HTTP responses that it sends for requests that match a cache behavior that’s associated with this response headers policy.

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX