Module Values.UserIdentitySource

Provides information about the type and other characteristics of an entity that performed an action on an affected resource.

Sourcetype nonrec t = {
  1. assumedRole : AssumedRole.t option;
    (*

    If the action was performed with temporary security credentials that were obtained using the AssumeRole operation of the Security Token Service (STS) API, the identifiers, session context, and other details about the identity.

    *)
  2. awsAccount : AwsAccount.t option;
    (*

    If the action was performed using the credentials for another Amazon Web Services account, the details of that account.

    *)
  3. awsService : AwsService.t option;
    (*

    If the action was performed by an Amazon Web Services account that belongs to an Amazon Web Services service, the name of the service.

    *)
  4. federatedUser : FederatedUser.t option;
    (*

    If the action was performed with temporary security credentials that were obtained using the GetFederationToken operation of the Security Token Service (STS) API, the identifiers, session context, and other details about the identity.

    *)
  5. iamUser : IamUser.t option;
    (*

    If the action was performed using the credentials for an Identity and Access Management (IAM) user, the name and other details about the user.

    *)
  6. root : UserIdentityRoot.t option;
    (*

    If the action was performed using the credentials for your Amazon Web Services account, the details of your account.

    *)
  7. type_ : UserIdentityType.t option;
    (*

    The type of entity that performed the action.

    *)
}
Sourceval make : ?assumedRole:??? -> ?awsAccount:??? -> ?awsService:??? -> ?federatedUser:??? -> ?iamUser:??? -> ?root:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of string | `Structure of (string * [> `Structure of (string * [> `Boolean of bool | `String of string | `Timestamp of string ]) list ]) list ]) list ]) 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