Interface CfnInsight.IDateFilterProperty
A date filter for querying findings.
Namespace: Amazon.CDK.AWS.SecurityHub
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDateFilterProperty
Syntax (vb)
Public Interface 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.SecurityHub;
var dateFilterProperty = new DateFilterProperty {
DateRange = new DateRangeProperty {
Unit = "unit",
Value = 123
},
End = "end",
Start = "start"
};
Synopsis
Properties
Date |
A date range for the date filter. |
End | A timestamp that provides the end date for the date filter. |
Start | A timestamp that provides the start date for the date filter. |
Properties
DateRange
A date range for the date filter.
virtual object DateRange { get; }
Property Value
System.
Remarks
End
A timestamp that provides the end date for the date filter.
virtual string End { get; }
Property Value
System.
Remarks
For more information about the validation and formatting of timestamp fields in AWS Security Hub , see Timestamps .
Start
A timestamp that provides the start date for the date filter.
virtual string Start { get; }
Property Value
System.
Remarks
For more information about the validation and formatting of timestamp fields in AWS Security Hub , see Timestamps .