Show / Hide Table of Contents

Class QueryParameterMatchConfig

Configuration for QueryParameterMatch.

Inheritance
object
QueryParameterMatchConfig
Implements
IQueryParameterMatchConfig
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 QueryParameterMatchConfig : IQueryParameterMatchConfig
Syntax (vb)
Public Class QueryParameterMatchConfig Implements IQueryParameterMatchConfig
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.AppMesh;

            var queryParameterMatchConfig = new QueryParameterMatchConfig {
                QueryParameterMatch = new QueryParameterProperty {
                    Name = "name",

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

Synopsis

Constructors

QueryParameterMatchConfig()

Configuration for QueryParameterMatch.

Properties

QueryParameterMatch

Route CFN configuration for route query parameter match.

Constructors

QueryParameterMatchConfig()

Configuration for QueryParameterMatch.

public QueryParameterMatchConfig()
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.AppMesh;

            var queryParameterMatchConfig = new QueryParameterMatchConfig {
                QueryParameterMatch = new QueryParameterProperty {
                    Name = "name",

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

Properties

QueryParameterMatch

Route CFN configuration for route query parameter match.

public CfnRoute.IQueryParameterProperty QueryParameterMatch { get; set; }
Property Value

CfnRoute.IQueryParameterProperty

Remarks

ExampleMetadata: fixture=_generated

Implements

IQueryParameterMatchConfig
Back to top Generated by DocFX