Module Values.AwsAccountSource

Provides information about an Amazon Web Services account and entity that performed an action on an affected resource. The action was performed using the credentials for an Amazon Web Services account other than your own account.

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

    The unique identifier for the Amazon Web Services account.

    *)
  2. principalId : string option;
    (*

    The unique identifier for the entity that performed the action.

    *)
}
Sourceval make : ?accountId:??? -> ?principalId:??? -> 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