Show / Hide Table of Contents

Class CfnInsight.NumberFilterProperty

A number filter for querying findings.

Inheritance
object
CfnInsight.NumberFilterProperty
Implements
CfnInsight.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.AWS.SecurityHub
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInsight.NumberFilterProperty : CfnInsight.INumberFilterProperty
Syntax (vb)
Public Class CfnInsight.NumberFilterProperty Implements CfnInsight.INumberFilterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-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.AWS.SecurityHub;

             var numberFilterProperty = new NumberFilterProperty {
                 Eq = 123,
                 Gte = 123,
                 Lte = 123
             };

Synopsis

Constructors

NumberFilterProperty()

A number filter for querying findings.

Properties

Eq

The equal-to condition to be applied to a single field when querying for findings.

Gte

The greater-than-equal condition to be applied to a single field when querying for findings.

Lte

The less-than-equal condition to be applied to a single field when querying for findings.

Constructors

NumberFilterProperty()

A number filter for querying findings.

public NumberFilterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-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.AWS.SecurityHub;

             var numberFilterProperty = new NumberFilterProperty {
                 Eq = 123,
                 Gte = 123,
                 Lte = 123
             };

Properties

Eq

The equal-to condition to be applied to a single field when querying for findings.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-numberfilter.html#cfn-securityhub-insight-numberfilter-eq

Gte

The greater-than-equal condition to be applied to a single field when querying for findings.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-numberfilter.html#cfn-securityhub-insight-numberfilter-gte

Lte

The less-than-equal condition to be applied to a single field when querying for findings.

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-numberfilter.html#cfn-securityhub-insight-numberfilter-lte

Implements

CfnInsight.INumberFilterProperty
Back to top Generated by DocFX