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 IGatewayRouteMetadataMatchProperty
Syntax (vb)
Public Interface 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.
virtual string Exact { get; }
Property Value
System.String
Remarks
Prefix
The specified beginning characters of the method header to be matched on.
virtual string Prefix { get; }
Property Value
System.String
Remarks
Range
An object that represents the range of values to match on.
virtual object Range { get; }
Property Value
System.Object
Remarks
Regex
The regex used to match the method header.
virtual string Regex { get; }
Property Value
System.String
Remarks
Suffix
The specified ending characters of the method header to match on.
virtual string Suffix { get; }
Property Value
System.String