Module Values.IamUserSource

Provides information about an Identity and Access Management (IAM) user who performed an action on an affected resource.

Sourcetype nonrec t = {
  1. accountId : string option;
    (*

    The unique identifier for the Amazon Web Services account that's associated with the IAM user who performed the action.

    *)
  2. arn : string option;
    (*

    The Amazon Resource Name (ARN) of the principal that performed the action. The last section of the ARN contains the name of the user who performed the action.

    *)
  3. principalId : string option;
    (*

    The unique identifier for the IAM user who performed the action.

    *)
  4. userName : string option;
    (*

    The username of the IAM user who performed the action.

    *)
}
Sourceval make : ?accountId:??? -> ?arn:??? -> ?principalId:??? -> ?userName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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