Show / Hide Table of Contents

Class CfnRoutePropsMixin.QueryParameterProperty

An object that represents the query parameter in the request.

Inheritance
object
CfnRoutePropsMixin.QueryParameterProperty
Implements
CfnRoutePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnRoutePropsMixin.QueryParameterProperty : CfnRoutePropsMixin.IQueryParameterProperty
Syntax (vb)
Public Class CfnRoutePropsMixin.QueryParameterProperty Implements CfnRoutePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var queryParameterProperty = new QueryParameterProperty {
                 Match = new HttpQueryParameterMatchProperty {
                     Exact = "exact"
                 },
                 Name = "name"
             };

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.Mixins.Preview.AWS.AppMesh.Mixins;

             var queryParameterProperty = new QueryParameterProperty {
                 Match = new HttpQueryParameterMatchProperty {
                     Exact = "exact"
                 },
                 Name = "name"
             };

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

CfnRoutePropsMixin.IQueryParameterProperty
Back to top Generated by DocFX