CreateAccessKeyResponse

Contains the response to a successful CreateAccessKey request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
AccessKey object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-createaccesskeyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAccessKeyResponse",
  "title": "CreateAccessKeyResponse",
  "type": "object",
  "required": [
    "AccessKey"
  ],
  "example": {
    "AccessKey": {
      "AccessKeyId": "AKIAIOSFODNN7EXAMPLE",
      "CreateDate": "2015-03-09 18:39:23.411000+00:00",
      "SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY",
      "Status": "Active",
      "UserName": "Bob"
    }
  },
  "properties": {
    "AccessKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccessKey"
        },
        {
          "description": "A structure with details about the access key."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>CreateAccessKey</a> request. "
}