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 IQueryStringsConfigProperty
Syntax (vb)
Public Interface IQueryStringsConfigProperty
Remarks
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
System.String
Remarks
QueryStrings
Contains a list of query string names.
virtual string[] QueryStrings { get; }
Property Value
System.String[]