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