You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::AwsIamUserDetails

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AwsIamUserDetails as input to an Aws::Client method, you can use a vanilla Hash:

{
  attached_managed_policies: [
    {
      policy_name: "NonEmptyString",
      policy_arn: "NonEmptyString",
    },
  ],
  create_date: "NonEmptyString",
  group_list: ["NonEmptyString"],
  path: "NonEmptyString",
  permissions_boundary: {
    permissions_boundary_arn: "NonEmptyString",
    permissions_boundary_type: "NonEmptyString",
  },
  user_id: "NonEmptyString",
  user_name: "NonEmptyString",
  user_policy_list: [
    {
      policy_name: "NonEmptyString",
    },
  ],
}

Information about an IAM user.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#attached_managed_policiesArray<Types::AwsIamAttachedManagedPolicy>

A list of the managed policies that are attached to the user.

Returns:

#create_dateString

Indicates when the user was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

Returns:

  • (String)

    Indicates when the user was created.

#group_listArray<String>

A list of IAM groups that the user belongs to.

Returns:

  • (Array<String>)

    A list of IAM groups that the user belongs to.

#pathString

The path to the user.

Returns:

  • (String)

    The path to the user.

#permissions_boundaryTypes::AwsIamPermissionsBoundary

The permissions boundary for the user.

Returns:

#user_idString

The unique identifier for the user.

Returns:

  • (String)

    The unique identifier for the user.

#user_nameString

The name of the user.

Returns:

  • (String)

    The name of the user.

#user_policy_listArray<Types::AwsIamUserPolicy>

The list of inline policies that are embedded in the user.

Returns: