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

Class: Aws::SecurityHub::Types::AwsIamGroupDetails

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

Overview

Note:

When passing AwsIamGroupDetails 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_id: "NonEmptyString",
  group_name: "NonEmptyString",
  group_policy_list: [
    {
      policy_name: "NonEmptyString",
    },
  ],
  path: "NonEmptyString",
}

Contains details about an IAM group.

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 IAM group.

Returns:

#create_dateString

Indicates when the IAM group 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 IAM group was created.

#group_idString

The identifier of the IAM group.

Returns:

  • (String)

    The identifier of the IAM group.

#group_nameString

The name of the IAM group.

Returns:

  • (String)

    The name of the IAM group.

#group_policy_listArray<Types::AwsIamGroupPolicy>

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

Returns:

#pathString

The path to the group.

Returns:

  • (String)

    The path to the group.