Show / Hide Table of Contents

Class CfnFilter.DateFilterProperty

Contains details on the time range used to filter findings.

Inheritance
object
CfnFilter.DateFilterProperty
Implements
CfnFilter.IDateFilterProperty
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.InspectorV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFilter.DateFilterProperty : CfnFilter.IDateFilterProperty
Syntax (vb)
Public Class CfnFilter.DateFilterProperty Implements CfnFilter.IDateFilterProperty
Remarks

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

             var dateFilterProperty = new DateFilterProperty {
                 EndInclusive = 123,
                 StartInclusive = 123
             };

Synopsis

Constructors

DateFilterProperty()

Contains details on the time range used to filter findings.

Properties

EndInclusive

A timestamp representing the end of the time period filtered on.

StartInclusive

A timestamp representing the start of the time period filtered on.

Constructors

DateFilterProperty()

Contains details on the time range used to filter findings.

public DateFilterProperty()
Remarks

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

             var dateFilterProperty = new DateFilterProperty {
                 EndInclusive = 123,
                 StartInclusive = 123
             };

Properties

EndInclusive

A timestamp representing the end of the time period filtered on.

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

double?

Remarks

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

StartInclusive

A timestamp representing the start of the time period filtered on.

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

double?

Remarks

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

Implements

CfnFilter.IDateFilterProperty
Back to top Generated by DocFX