Module Values.EmailConfigurationSource

Contains the configuration information of email notifications.

Sourcetype nonrec t = {
  1. from : FromEmail.t;
    (*

    The email address that sends emails. If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES.

    *)
  2. content : EmailContent.t option;
    (*

    Contains the subject and message of an email.

    *)
  3. recipients : EmailRecipients.t;
    (*

    Contains the information of one or more recipients who receive the emails. You must add the users that receive emails to your AWS SSO store.

    *)
}
Sourceval context_ : string
Sourceval make : ?content:??? -> from:FromEmail.t -> recipients:EmailRecipients.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FromEmail.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `String of IdentityStoreId.t ]) list ]) list ] list | `String of EmailSubject.t ]) 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