networkinsights_get_findings
Retrieve findings for specified AWS network analysis, providing insights into access scope data. Input includes AWS region, analysis ID, and max results to return relevant JSON output.
Instructions
Retrieve all findings for a given analysis.
Parameters:
aws_region (str): The AWS region - use 'us-east-1' if not specified.
analysis_id (str): The ID of the analysis to retrieve findings for.
max_results (int): Maximum number of findings to return.
Returns:
JSON list of NetworkInsightsAccessScopeAnalysisFinding objects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_id | Yes | ||
aws_region | Yes | ||
max_results | No |
Input Schema (JSON Schema)
{
"properties": {
"analysis_id": {
"title": "Analysis Id",
"type": "string"
},
"aws_region": {
"title": "Aws Region",
"type": "string"
},
"max_results": {
"default": 1,
"title": "Max Results",
"type": "integer"
}
},
"required": [
"aws_region",
"analysis_id"
],
"title": "networkinsights_get_findingsArguments",
"type": "object"
}