IntegrationsAwsActions
Get IAM access key last used
Get last-used metadata for an access key id. Requires iam:GetAccessKeyLastUsed.
iam.access_keys.last_used.get · AWS · v1
Details
Scopes
iam:GetAccessKeyLastUsed
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
access_key_id | string | Yes | minLength 16; maxLength 128; pattern ^[A-Z0-9]+$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
access_key_id | string | Yes | minLength 16; maxLength 128; pattern ^[A-Z0-9]+$ |
user_name | string | Yes | minLength 1; maxLength 64; pattern ^[A-Za-z0-9_+=,.@-]+$ |
last_used_at | string | No | minLength 1; maxLength 64 |
service_name | string | No | minLength 1; maxLength 128 |
region | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"access_key_id": {
"type": "string",
"minLength": 16,
"maxLength": 128,
"pattern": "^[A-Z0-9]+$"
}
},
"required": [
"access_key_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"access_key_id": {
"type": "string",
"minLength": 16,
"maxLength": 128,
"pattern": "^[A-Z0-9]+$"
},
"user_name": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[A-Za-z0-9_+=,.@-]+$"
},
"last_used_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"service_name": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"region": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"access_key_id",
"user_name"
]
}