GetAccessKeyLastUsedResponse

Contains the response to a successful GetAccessKeyLastUsed request. It is also returned as a member of the AccessKeyMetaData structure returned by the ListAccessKeys action.

APIs.ioEngineeringPlatform

Properties

Name Type Description
UserName object
AccessKeyLastUsed object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-getaccesskeylastusedresponse-schema.json Raw ↑
{
  "$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": "<p>The name of the IAM user that owns this access key.</p> <p/>"
        }
      ]
    },
    "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 <a>GetAccessKeyLastUsed</a> request. It is also returned as a member of the <a>AccessKeyMetaData</a> structure returned by the <a>ListAccessKeys</a> action."
}