Class CfnRoute.QueryParameterProperty
An object that represents the query parameter in the request.
Inheritance
System.Object
CfnRoute.QueryParameterProperty
Implements
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class QueryParameterProperty : Object, CfnRoute.IQueryParameterProperty
Syntax (vb)
Public Class QueryParameterProperty
Inherits Object
Implements CfnRoute.IQueryParameterProperty
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 queryParameterProperty = new QueryParameterProperty {
Name = "name",
// the properties below are optional
Match = new HttpQueryParameterMatchProperty {
Exact = "exact"
}
};
Synopsis
Constructors
QueryParameterProperty() |
Properties
Match | The query parameter to match on. |
Name | A name for the query parameter that will be matched on. |
Constructors
QueryParameterProperty()
public QueryParameterProperty()
Properties
Match
The query parameter to match on.
public object Match { get; set; }
Property Value
System.Object
Remarks
Name
A name for the query parameter that will be matched on.
public string Name { get; set; }
Property Value
System.String