Skip to main content
FuseFuse
IntegrationsAwsActions

Get IAM credential report

Download the account credential report as UTF-8 CSV (max 2 MiB). Requires iam:GetCredentialReport.

Agent markdown

iam.credential_reports.get · AWS · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • iam:GetCredentialReport

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
generated_atstringYesminLength 1; maxLength 64
report_formatstringYesenum text/csv
content_csvstringYesminLength 1; maxLength 2097152

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "generated_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "report_format": {
      "type": "string",
      "enum": [
        "text/csv"
      ]
    },
    "content_csv": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2097152
    }
  },
  "required": [
    "generated_at",
    "report_format",
    "content_csv"
  ]
}