IntegrationsAwsActions
Get IAM credential report
Download the account credential report as UTF-8 CSV (max 2 MiB). Requires iam:GetCredentialReport.
iam.credential_reports.get · AWS · v1
Details
Scopes
iam:GetCredentialReport
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
generated_at | string | Yes | minLength 1; maxLength 64 |
report_format | string | Yes | enum text/csv |
content_csv | string | Yes | minLength 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"
]
}