Class CfnOriginRequestPolicyPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnOriginRequestPolicyPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.090Z")
@Stability(Stable)
public class CfnOriginRequestPolicyPropsMixin
extends Mixin
implements software.constructs.IMixin
An origin request policy.
When it's attached to a cache behavior, the origin request policy determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following:
- The request body and the URL path (without the domain name) from the viewer request.
- The headers that CloudFront automatically includes in every origin request, including
Host,User-Agent, andX-Amz-Cf-Id. - All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront.
CloudFront sends a request when it can't find an object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use CachePolicy .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
import software.amazon.awscdk.*;
IMergeStrategy mergeStrategy;
CfnOriginRequestPolicyPropsMixin cfnOriginRequestPolicyPropsMixin = CfnOriginRequestPolicyPropsMixin.Builder.create(CfnOriginRequestPolicyMixinProps.builder()
.originRequestPolicyConfig(OriginRequestPolicyConfigProperty.builder()
.comment("comment")
.cookiesConfig(CookiesConfigProperty.builder()
.cookieBehavior("cookieBehavior")
.cookies(List.of("cookies"))
.build())
.headersConfig(HeadersConfigProperty.builder()
.headerBehavior("headerBehavior")
.headers(List.of("headers"))
.build())
.name("name")
.queryStringsConfig(QueryStringsConfigProperty.builder()
.queryStringBehavior("queryStringBehavior")
.queryStrings(List.of("queryStrings"))
.build())
.build())
.build())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnOriginRequestPolicyPropsMixin.static interfaceAn object that determines whether any cookies in viewer requests (and if so, which cookies) are included in requests that CloudFront sends to the origin.static interfaceAn object that determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.static interfaceAn origin request policy configuration.static interfaceAn object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in requests that CloudFront sends to the origin.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::CloudFront::OriginRequestPolicy.CfnOriginRequestPolicyPropsMixin(CfnOriginRequestPolicyMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::CloudFront::OriginRequestPolicy.protectedCfnOriginRequestPolicyPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnOriginRequestPolicyPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnOriginRequestPolicyMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnOriginRequestPolicyPropsMixin
protected CfnOriginRequestPolicyPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnOriginRequestPolicyPropsMixin
protected CfnOriginRequestPolicyPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnOriginRequestPolicyPropsMixin
@Stability(Stable) public CfnOriginRequestPolicyPropsMixin(@NotNull CfnOriginRequestPolicyMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::CloudFront::OriginRequestPolicy.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnOriginRequestPolicyPropsMixin
@Stability(Stable) public CfnOriginRequestPolicyPropsMixin(@NotNull CfnOriginRequestPolicyMixinProps props) Create a mixin to apply properties toAWS::CloudFront::OriginRequestPolicy.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-