Show / Hide Table of Contents

Class CfnRoutePropsMixin.MatchRangeProperty

An object that represents the range of values to match on.

Inheritance
object
CfnRoutePropsMixin.MatchRangeProperty
Implements
CfnRoutePropsMixin.IMatchRangeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppMesh
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRoutePropsMixin.MatchRangeProperty : CfnRoutePropsMixin.IMatchRangeProperty
Syntax (vb)
Public Class CfnRoutePropsMixin.MatchRangeProperty Implements CfnRoutePropsMixin.IMatchRangeProperty
Remarks

The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-matchrange.html

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.CfnPropertyMixins.AWS.AppMesh;

             var matchRangeProperty = new MatchRangeProperty {
                 End = 123,
                 Start = 123
             };

Synopsis

Constructors

MatchRangeProperty()

An object that represents the range of values to match on.

Properties

End

The end of the range.

Start

The start of the range.

Constructors

MatchRangeProperty()

An object that represents the range of values to match on.

public MatchRangeProperty()
Remarks

The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-matchrange.html

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.CfnPropertyMixins.AWS.AppMesh;

             var matchRangeProperty = new MatchRangeProperty {
                 End = 123,
                 Start = 123
             };

Properties

End

The end of the range.

public double? End { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-matchrange.html#cfn-appmesh-route-matchrange-end

Start

The start of the range.

public double? Start { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-matchrange.html#cfn-appmesh-route-matchrange-start

Implements

CfnRoutePropsMixin.IMatchRangeProperty
Back to top Generated by DocFX