Show / Hide Table of Contents

Class CfnFilterPropsMixin.NumberFilterProperty

An object that describes the details of a number filter.

Inheritance
object
CfnFilterPropsMixin.NumberFilterProperty
Implements
CfnFilterPropsMixin.INumberFilterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFilterPropsMixin.NumberFilterProperty : CfnFilterPropsMixin.INumberFilterProperty
Syntax (vb)
Public Class CfnFilterPropsMixin.NumberFilterProperty Implements CfnFilterPropsMixin.INumberFilterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-numberfilter.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.Mixins.Preview.AWS.InspectorV2.Mixins;

             var numberFilterProperty = new NumberFilterProperty {
                 LowerInclusive = 123,
                 UpperInclusive = 123
             };

Synopsis

Constructors

NumberFilterProperty()

An object that describes the details of a number filter.

Properties

LowerInclusive

The lowest number to be included in the filter.

UpperInclusive

The highest number to be included in the filter.

Constructors

NumberFilterProperty()

An object that describes the details of a number filter.

public NumberFilterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-numberfilter.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.Mixins.Preview.AWS.InspectorV2.Mixins;

             var numberFilterProperty = new NumberFilterProperty {
                 LowerInclusive = 123,
                 UpperInclusive = 123
             };

Properties

LowerInclusive

The lowest number to be included in the filter.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-numberfilter.html#cfn-inspectorv2-filter-numberfilter-lowerinclusive

UpperInclusive

The highest number to be included in the filter.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-numberfilter.html#cfn-inspectorv2-filter-numberfilter-upperinclusive

Implements

CfnFilterPropsMixin.INumberFilterProperty
Back to top Generated by DocFX