Show / Hide Table of Contents

Interface CfnGatewayRoute.IQueryParameterProperty

An object that represents the query parameter in the request.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnGatewayRoute.IQueryParameterProperty
Syntax (vb)
Public Interface CfnGatewayRoute.IQueryParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-queryparameter.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.AppMesh;

             var queryParameterProperty = new QueryParameterProperty {
                 Name = "name",

                 // the properties below are optional
                 Match = new HttpQueryParameterMatchProperty {
                     Exact = "exact"
                 }
             };

Synopsis

Properties

Match

The query parameter to match on.

Name

A name for the query parameter that will be matched on.

Properties

Match

The query parameter to match on.

object? Match { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-queryparameter.html#cfn-appmesh-gatewayroute-queryparameter-match

Type union: either IResolvable or CfnGatewayRoute.IHttpQueryParameterMatchProperty

Name

A name for the query parameter that will be matched on.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-queryparameter.html#cfn-appmesh-gatewayroute-queryparameter-name

Back to top Generated by DocFX