Module Values.CreateEmailContactRequestSource

Creates an email contact for the provided email address.

Sourcetype nonrec t = {
  1. name : EmailContactName.t;
    (*

    The name of the email contact.

    *)
  2. emailAddress : EmailContactAddress.t;
    (*

    The email address this email contact points to. The activation email and any subscribed emails are sent here. This email address can't receive emails until it's activated.

    *)
  3. tags : TagMap.t option;
    (*

    A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> name:EmailContactName.t -> emailAddress:EmailContactAddress.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of EmailContactName.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