Module Values.InvitationSource

Provides information about an Amazon Macie membership invitation.

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

    The Amazon Web Services account ID for the account that sent the invitation.

    *)
  2. invitationId : string option;
    (*

    The unique identifier for the invitation.

    *)
  3. invitedAt : string option;
    (*

    The date and time, in UTC and extended ISO 8601 format, when the invitation was sent.

    *)
  4. relationshipStatus : RelationshipStatus.t option;
    (*

    The status of the relationship between the account that sent the invitation and the account that received the invitation.

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