CreateRoleResponse

Contains the response to a successful CreateRole request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Role object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-createroleresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRoleResponse",
  "title": "CreateRoleResponse",
  "type": "object",
  "required": [
    "Role"
  ],
  "example": {
    "Role": {
      "Arn": "arn:aws:iam::123456789012:role/Test-Role",
      "AssumeRolePolicyDocument": "<URL-encoded-JSON>",
      "CreateDate": "2013-06-07 20:43:32.821000+00:00",
      "Path": "/",
      "RoleId": "AKIAIOSFODNN7EXAMPLE",
      "RoleName": "Test-Role"
    }
  },
  "properties": {
    "Role": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Role"
        },
        {
          "description": "A structure containing details about the new role."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>CreateRole</a> request. "
}