CreateUserResponse

Contains the response to a successful CreateUser request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
User object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-createuserresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUserResponse",
  "title": "CreateUserResponse",
  "type": "object",
  "example": {
    "User": {
      "Arn": "arn:aws:iam::123456789012:user/Bob",
      "CreateDate": "2013-06-08 03:20:41.270000+00:00",
      "Path": "/",
      "UserId": "AKIAIOSFODNN7EXAMPLE",
      "UserName": "Bob"
    }
  },
  "properties": {
    "User": {
      "allOf": [
        {
          "$ref": "#/components/schemas/User"
        },
        {
          "description": "A structure with details about the new IAM user."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>CreateUser</a> request. "
}