Show / Hide Table of Contents

Class CfnResponseHeadersPolicy.RemoveHeadersConfigProperty

A list of HTTP header names that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.

Inheritance
object
CfnResponseHeadersPolicy.RemoveHeadersConfigProperty
Implements
CfnResponseHeadersPolicy.IRemoveHeadersConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResponseHeadersPolicy.RemoveHeadersConfigProperty : CfnResponseHeadersPolicy.IRemoveHeadersConfigProperty
Syntax (vb)
Public Class CfnResponseHeadersPolicy.RemoveHeadersConfigProperty Implements CfnResponseHeadersPolicy.IRemoveHeadersConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheadersconfig.html

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 removeHeadersConfigProperty = new RemoveHeadersConfigProperty {
                 Items = new [] { new RemoveHeaderProperty {
                     Header = "header"
                 } }
             };

Synopsis

Constructors

RemoveHeadersConfigProperty()

A list of HTTP header names that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.

Properties

Items

The list of HTTP header names.

Constructors

RemoveHeadersConfigProperty()

A list of HTTP header names that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.

public RemoveHeadersConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheadersconfig.html

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 removeHeadersConfigProperty = new RemoveHeadersConfigProperty {
                 Items = new [] { new RemoveHeaderProperty {
                     Header = "header"
                 } }
             };

Properties

Items

The list of HTTP header names.

public object Items { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheadersconfig.html#cfn-cloudfront-responseheaderspolicy-removeheadersconfig-items

Implements

CfnResponseHeadersPolicy.IRemoveHeadersConfigProperty
Back to top Generated by DocFX