interface ReferrerPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnResponseHeadersPolicy.ReferrerPolicyProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnResponseHeadersPolicy.ReferrerPolicyProperty |
Python | aws_cdk.aws_cloudfront.CfnResponseHeadersPolicy.ReferrerPolicyProperty |
TypeScript | @aws-cdk/aws-cloudfront » CfnResponseHeadersPolicy » ReferrerPolicyProperty |
Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header's value.
For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloudfront from '@aws-cdk/aws-cloudfront';
const referrerPolicyProperty: cloudfront.CfnResponseHeadersPolicy.ReferrerPolicyProperty = {
override: false,
referrerPolicy: 'referrerPolicy',
};
Properties
| Name | Type | Description |
|---|---|---|
| override | boolean | IResolvable | A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy. |
| referrer | string | The value of the Referrer-Policy HTTP response header. Valid values are:. |
override
Type:
boolean | IResolvable
A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP response header received from the origin with the one specified in this response headers policy.
referrerPolicy
Type:
string
The value of the Referrer-Policy HTTP response header. Valid values are:.
no-referrerno-referrer-when-downgradeoriginorigin-when-cross-originsame-originstrict-originstrict-origin-when-cross-originunsafe-url
For more information about these values, see Referrer-Policy in the MDN Web Docs.

.NET
Java
Python
TypeScript