Module Values.ContactInformationSource

Contains the details of the primary contact information associated with an Amazon Web Services account.

Sourcetype nonrec t = {
  1. fullName : FullName.t;
    (*

    The full name of the primary contact address.

    *)
  2. addressLine1 : AddressLine.t;
    (*

    The first line of the primary contact address.

    *)
  3. addressLine2 : AddressLine.t option;
    (*

    The second line of the primary contact address, if any.

    *)
  4. addressLine3 : AddressLine.t option;
    (*

    The third line of the primary contact address, if any.

    *)
  5. city : City.t;
    (*

    The city of the primary contact address.

    *)
  6. stateOrRegion : StateOrRegion.t option;
    (*

    The state or region of the primary contact address. If the mailing address is within the United States (US), the value in this field can be either a two character state code (for example, NJ) or the full state name (for example, New Jersey). This field is required in the following countries: US, CA, GB, DE, JP, IN, and BR.

    *)
  7. districtOrCounty : DistrictOrCounty.t option;
    (*

    The district or county of the primary contact address, if any.

    *)
  8. postalCode : PostalCode.t;
    (*

    The postal code of the primary contact address.

    *)
  9. countryCode : CountryCode.t;
    (*

    The ISO-3166 two-letter country code for the primary contact address.

    *)
  10. phoneNumber : ContactInformationPhoneNumber.t;
    (*

    The phone number of the primary contact information. The number will be validated and, in some countries, checked for activation.

    *)
  11. companyName : CompanyName.t option;
    (*

    The name of the company associated with the primary contact information, if any.

    *)
  12. websiteUrl : WebsiteUrl.t option;
    (*

    The URL of the website associated with the primary contact information, if any.

    *)
}
Sourceval context_ : string
Sourceval make : ?addressLine2:??? -> ?addressLine3:??? -> ?stateOrRegion:??? -> ?districtOrCounty:??? -> ?companyName:??? -> ?websiteUrl:??? -> fullName:FullName.t -> addressLine1:AddressLine.t -> city:City.t -> postalCode:PostalCode.t -> countryCode:CountryCode.t -> phoneNumber:ContactInformationPhoneNumber.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FullName.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