guardduty_get_finding_statistics
Retrieve JSON-formatted summary statistics for GuardDuty findings using a specified AWS region and detector ID. Analyze threat data efficiently.
Instructions
Get summary statistics for GuardDuty findings for a given detector.
Parameters:
aws_region (str): The AWS region - use 'us-east-1' if not specified.
detector_id (str): The GuardDuty detector ID.
Returns:
str: JSON-formatted statistics about the findings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aws_region | Yes | ||
detector_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"aws_region": {
"title": "Aws Region",
"type": "string"
},
"detector_id": {
"title": "Detector Id",
"type": "string"
}
},
"required": [
"aws_region",
"detector_id"
],
"title": "guardduty_get_finding_statisticsArguments",
"type": "object"
}