Lists Amazon GuardDuty findings statistics for the specified detector ID.
guardduty_get_findings_statistics(DetectorId, FindingStatisticTypes,
FindingCriteria)
A list with the following syntax:
list(
FindingStatistics = list(
CountBySeverity = list(
123
)
)
)
[required] The ID of the detector that specifies the GuardDuty service whose findings' statistics you want to retrieve.
[required] The types of finding statistics to retrieve.
Represents the criteria that is used for querying findings.
svc$get_findings_statistics(
DetectorId = "string",
FindingStatisticTypes = list(
"COUNT_BY_SEVERITY"
),
FindingCriteria = list(
Criterion = list(
list(
Eq = list(
"string"
),
Neq = list(
"string"
),
Gt = 123,
Gte = 123,
Lt = 123,
Lte = 123,
Equals = list(
"string"
),
NotEquals = list(
"string"
),
GreaterThan = 123,
GreaterThanOrEqual = 123,
LessThan = 123,
LessThanOrEqual = 123
)
)
)
)