Module Values.AwsIamGroupDetailsSource

Contains details about an IAM group.

Sourcetype nonrec t = {
  1. attachedManagedPolicies : AwsIamAttachedManagedPolicyList.t option;
    (*

    A list of the managed policies that are attached to the IAM group.

    *)
  2. createDate : NonEmptyString.t option;
    (*

    Indicates when the IAM group was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  3. groupId : NonEmptyString.t option;
    (*

    The identifier of the IAM group.

    *)
  4. groupName : NonEmptyString.t option;
    (*

    The name of the IAM group.

    *)
  5. groupPolicyList : AwsIamGroupPolicyList.t option;
    (*

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

    *)
  6. path : NonEmptyString.t option;
    (*

    The path to the group.

    *)
}
Sourceval make : ?attachedManagedPolicies:??? -> ?createDate:??? -> ?groupId:??? -> ?groupName:??? -> ?groupPolicyList:??? -> ?path:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t