AutomationRuleDateFilterArgs

data class AutomationRuleDateFilterArgs(val dateRange: Output<AutomationRuleDateRangeArgs>? = null, val end: Output<String>? = null, val start: Output<String>? = null) : ConvertibleToJava<AutomationRuleDateFilterArgs>

A date filter for querying findings.

Constructors

Link copied to clipboard
constructor(dateRange: Output<AutomationRuleDateRangeArgs>? = null, end: Output<String>? = null, start: Output<String>? = null)

Properties

Link copied to clipboard

A date range for the date filter.

Link copied to clipboard
val end: Output<String>? = null

A timestamp that provides the end date for the date filter. This field accepts only the specified formats. Timestamps can end with `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac after seconds is limited to a maximum of 9 digits. The offset is bounded by +/-18:00. Here are valid timestamp formats with examples:

Link copied to clipboard
val start: Output<String>? = null

A timestamp that provides the start date for the date filter. This field accepts only the specified formats. Timestamps can end with `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac after seconds is limited to a maximum of 9 digits. The offset is bounded by +/-18:00. Here are valid timestamp formats with examples:

Functions

Link copied to clipboard
open override fun toJava(): AutomationRuleDateFilterArgs