Class CfnFilter.DateFilterProperty
Contains details on the time range used to filter findings.
Implements
Inherited Members
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
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
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
Remarks
StartInclusive
A timestamp representing the start of the time period filtered on.
public double? StartInclusive { get; set; }