Class CfnFilterPropsMixin.NumberFilterProperty
An object that describes the details of a number filter.
Implements
Inherited Members
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
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
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
Remarks
UpperInclusive
The highest number to be included in the filter.
public double? UpperInclusive { get; set; }