Class CfnRoutePropsMixin.QueryParameterProperty
An object that represents the query parameter in the request.
Implements
Inherited Members
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
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
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
Remarks
Name
A name for the query parameter that will be matched on.
public string? Name { get; set; }