interface CustomHeadersConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnResponseHeadersPolicyPropsMixin.CustomHeadersConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnResponseHeadersPolicyPropsMixin_CustomHeadersConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnResponseHeadersPolicyPropsMixin.CustomHeadersConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnResponseHeadersPolicyPropsMixin.CustomHeadersConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnResponseHeadersPolicyPropsMixin » CustomHeadersConfigProperty |
A list of HTTP response header names and their values.
CloudFront includes these headers in HTTP responses that it sends for requests that match a cache behavior that's associated with this response headers policy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const customHeadersConfigProperty: cloudfront.CfnResponseHeadersPolicyPropsMixin.CustomHeadersConfigProperty = {
items: [{
header: 'header',
override: false,
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| items? | IResolvable | (IResolvable | Custom)[] | The list of HTTP response headers and their values. |
items?
Type:
IResolvable | (IResolvable | Custom)[]
(optional)
The list of HTTP response headers and their values.

.NET
Go
Java
Python
TypeScript