Module Values.AlternateContactSource

A structure that contains the details of an alternate contact associated with an Amazon Web Services account

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

    The name associated with this alternate contact.

    *)
  2. title : Title.t option;
    (*

    The title associated with this alternate contact.

    *)
  3. emailAddress : EmailAddress.t option;
    (*

    The email address associated with this alternate contact.

    *)
  4. phoneNumber : PhoneNumber.t option;
    (*

    The phone number associated with this alternate contact.

    *)
  5. alternateContactType : AlternateContactType.t option;
    (*

    The type of alternate contact.

    *)
}
Sourceval make : ?name:??? -> ?title:??? -> ?emailAddress:??? -> ?phoneNumber:??? -> ?alternateContactType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.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