Module Values.InvitationSource

Details about an invitation.

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

    The account ID of the Security Hub CSPM administrator account that the invitation was sent from.

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

    The ID of the invitation sent to the member account.

    *)
  3. invitedAt : Timestamp.t option;
    (*

    The timestamp of when the invitation was sent.

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

    The current status of the association between the member and administrator accounts.

    *)
}
Sourceval make : ?accountId:??? -> ?invitationId:??? -> ?invitedAt:??? -> ?memberStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.t | `Timestamp of Timestamp.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