UserDetail

Contains information about an IAM user, including all the user's policies and all the IAM groups the user is in.

This data type is used as a response element in the GetAccountAuthorizationDetails operation.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Path object
UserName object
UserId object
Arn object
CreateDate object
UserPolicyList object
GroupList object
AttachedManagedPolicies object
PermissionsBoundary object
Tags object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-userdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserDetail",
  "title": "UserDetail",
  "type": "object",
  "properties": {
    "Path": {
      "allOf": [
        {
          "$ref": "#/components/schemas/pathType"
        },
        {
          "description": "The path to the user. For more information about paths, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>."
        }
      ]
    },
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/userNameType"
        },
        {
          "description": "The friendly name identifying the user."
        }
      ]
    },
    "UserId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/idType"
        },
        {
          "description": "The stable and unique string identifying the user. For more information about IDs, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>."
        }
      ]
    },
    "Arn": {
      "$ref": "#/components/schemas/arnType"
    },
    "CreateDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": "The date and time, in <a href=\"http://www.iso.org/iso/iso8601\">ISO 8601 date-time format</a>, when the user was created."
        }
      ]
    },
    "UserPolicyList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyDetailListType"
        },
        {
          "description": "A list of the inline policies embedded in the user."
        }
      ]
    },
    "GroupList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/groupNameListType"
        },
        {
          "description": "A list of IAM groups that the user is in."
        }
      ]
    },
    "AttachedManagedPolicies": {
      "allOf": [
        {
          "$ref": "#/components/schemas/attachedPoliciesListType"
        },
        {
          "description": "A list of the managed policies attached to the user."
        }
      ]
    },
    "PermissionsBoundary": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AttachedPermissionsBoundary"
        },
        {
          "description": "<p>The ARN of the policy used to set the permissions boundary for the user.</p> <p>For more information about permissions boundaries, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html\">Permissions boundaries for IAM identities </a> in the <i>IAM User Guide</i>.</p>"
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/tagListType"
        },
        {
          "description": "A list of tags that are associated with the user. For more information about tagging, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html\">Tagging IAM resources</a> in the <i>IAM User Guide</i>."
        }
      ]
    }
  },
  "description": "<p>Contains information about an IAM user, including all the user's policies and all the IAM groups the user is in.</p> <p>This data type is used as a response element in the <a>GetAccountAuthorizationDetails</a> operation.</p>"
}