Module Values.EmailContactSource

An email contact.

Sourcetype nonrec t = {
  1. arn : EmailContactArn.t option;
    (*

    The Amazon Resource Name (ARN) of the email contact.

    *)
  2. name : EmailContactName.t option;
    (*

    The name of the email contact.

    *)
  3. address : SensitiveEmailContactAddress.t option;
    (*

    The email address this email contact points to. The activation email and any subscribed emails are sent here.

    *)
  4. status : EmailContactStatus.t option;
    (*

    The status of the email contact. Only activated email contacts receive emails.

    *)
  5. creationTime : CreationTime.t option;
    (*

    The creation time of the resource.

    *)
  6. updateTime : UpdateTime.t option;
    (*

    The time the resource was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?address:??? -> ?status:??? -> ?creationTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EmailContactArn.t | `Timestamp of CreationTime.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