Show / Hide Table of Contents

Class CfnRoute.QueryParameterProperty

An object that represents the query parameter in the request.

Inheritance
object
CfnRoute.QueryParameterProperty
Implements
CfnRoute.IQueryParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRoute.QueryParameterProperty : CfnRoute.IQueryParameterProperty
Syntax (vb)
Public Class CfnRoute.QueryParameterProperty Implements CfnRoute.IQueryParameterProperty
Remarks

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

Constructors

QueryParameterProperty()

An object that represents the query parameter in the request.

Properties

Match

The query parameter to match on.

Name

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

Constructors

QueryParameterProperty()

An object that represents the query parameter in the request.

public QueryParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-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"
                 }
             };

Properties

Match

The query parameter to match on.

public object? Match { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnRoute.IHttpQueryParameterMatchProperty

Name

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

public string Name { get; set; }
Property Value

string

Remarks

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

Implements

CfnRoute.IQueryParameterProperty
Back to top Generated by DocFX