{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetAccessKeyLastUsedResponse", "title": "GetAccessKeyLastUsedResponse", "type": "object", "properties": { "UserName": { "allOf": [ { "$ref": "#/components/schemas/existingUserNameType" }, { "description": "

The name of the IAM user that owns this access key.

" } ] }, "AccessKeyLastUsed": { "allOf": [ { "$ref": "#/components/schemas/AccessKeyLastUsed" }, { "description": "Contains information about the last time the access key was used." } ] } }, "description": "Contains the response to a successful GetAccessKeyLastUsed request. It is also returned as a member of the AccessKeyMetaData structure returned by the ListAccessKeys action." }