Class QueryParameterMatchConfig
Configuration for QueryParameterMatch.
Implements
Inherited Members
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 |
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