Show / Hide Table of Contents

Class RouteSpecHttpRouteMatchHeaderMatchArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RouteSpecHttpRouteMatchHeaderMatchArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.AppMesh.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class RouteSpecHttpRouteMatchHeaderMatchArgs : ResourceArgs

Constructors

View Source

RouteSpecHttpRouteMatchHeaderMatchArgs()

Declaration
public RouteSpecHttpRouteMatchHeaderMatchArgs()

Properties

View Source

Exact

The header value sent by the client must match the specified value exactly.

Declaration
public Input<string> Exact { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Prefix

Specifies the path with which to match requests. This parameter must always start with /, which by itself matches all requests to the virtual router service name.

Declaration
public Input<string> Prefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Range

The object that specifies the range of numbers that the header value sent by the client must be included in.

Declaration
public Input<RouteSpecHttpRouteMatchHeaderMatchRangeArgs> Range { get; set; }
Property Value
Type Description
Input<RouteSpecHttpRouteMatchHeaderMatchRangeArgs>
View Source

Regex

The header value sent by the client must include the specified characters.

Declaration
public Input<string> Regex { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Suffix

The header value sent by the client must end with the specified characters.

Declaration
public Input<string> Suffix { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.