accessanalyzer_get_analyzer
Retrieve JSON-formatted details of a specific AWS IAM Access Analyzer by name and region to assess permissions and access configurations.
Instructions
Retrieve details of a specific analyzer by name.
Parameters:
aws_region (str): The AWS region - use 'us-east-1' if not specified.
analyzer_name (str): The name of the analyzer to retrieve.
Returns:
str: JSON-formatted details of the analyzer.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analyzer_name | Yes | ||
aws_region | Yes |
Input Schema (JSON Schema)
{
"properties": {
"analyzer_name": {
"title": "Analyzer Name",
"type": "string"
},
"aws_region": {
"title": "Aws Region",
"type": "string"
}
},
"required": [
"aws_region",
"analyzer_name"
],
"title": "accessanalyzer_get_analyzerArguments",
"type": "object"
}