Module Values.CreateInvitationsRequestSource

Sends an Amazon Macie membership invitation to one or more accounts.

Sourcetype nonrec t = {
  1. accountIds : string list;
    (*

    An array that lists Amazon Web Services account IDs, one for each account to send the invitation to.

    *)
  2. disableEmailNotification : bool option;
    (*

    Specifies whether to send the invitation as an email message. If this value is false, Amazon Macie sends the invitation (as an email message) to the email address that you specified for the recipient's account when you associated the account with your account. The default value is false.

    *)
  3. message : string option;
    (*

    Custom text to include in the email message that contains the invitation. The text can contain as many as 80 alphanumeric characters.

    *)
}
Sourceval context_ : string
Sourceval make : ?disableEmailNotification:??? -> ?message:??? -> accountIds:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `List of [> `String of string ] list | `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