Show / Hide Table of Contents

Interface CfnOriginRequestPolicy.IQueryStringsConfigProperty

An 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.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-querystringsconfig.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 queryStringsConfigProperty = new QueryStringsConfigProperty {
                 QueryStringBehavior = "queryStringBehavior",

                 // the properties below are optional
                 QueryStrings = new [] { "queryStrings" }
             };

Synopsis

Properties

QueryStringBehavior

Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin.

QueryStrings

Contains a list of query string names.

Properties

QueryStringBehavior

Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin.

string QueryStringBehavior { get; }
Property Value

string

Remarks

Valid values are:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-querystringsconfig.html#cfn-cloudfront-originrequestpolicy-querystringsconfig-querystringbehavior

    QueryStrings

    Contains a list of query string names.

    string[]? QueryStrings { get; }
    Property Value

    string[]

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-querystringsconfig.html#cfn-cloudfront-originrequestpolicy-querystringsconfig-querystrings

    Back to top Generated by DocFX