Interface CfnGatewayRoute.IGatewayRouteMetadataMatchProperty
An object representing the method header to be matched.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnGatewayRoute.IGatewayRouteMetadataMatchProperty
Syntax (vb)
Public Interface CfnGatewayRoute.IGatewayRouteMetadataMatchProperty
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 gatewayRouteMetadataMatchProperty = new GatewayRouteMetadataMatchProperty {
Exact = "exact",
Prefix = "prefix",
Range = new GatewayRouteRangeMatchProperty {
End = 123,
Start = 123
},
Regex = "regex",
Suffix = "suffix"
};
Synopsis
Properties
| Exact | The exact method header to be matched on. |
| Prefix | The specified beginning characters of the method header to be matched on. |
| Range | An object that represents the range of values to match on. |
| Regex | The regex used to match the method header. |
| Suffix | The specified ending characters of the method header to match on. |
Properties
Exact
The exact method header to be matched on.
string? Exact { get; }
Property Value
Remarks
Prefix
The specified beginning characters of the method header to be matched on.
string? Prefix { get; }
Property Value
Remarks
Range
An object that represents the range of values to match on.
object? Range { get; }
Property Value
Remarks
Regex
The regex used to match the method header.
string? Regex { get; }
Property Value
Remarks
Suffix
The specified ending characters of the method header to match on.
string? Suffix { get; }