Values.ContactInformationSourceContains the details of the primary contact information associated with an Amazon Web Services account.
type nonrec t = {fullName : FullName.t;The full name of the primary contact address.
*)addressLine1 : AddressLine.t;The first line of the primary contact address.
*)addressLine2 : AddressLine.t option;The second line of the primary contact address, if any.
*)addressLine3 : AddressLine.t option;The third line of the primary contact address, if any.
*)city : City.t;The city of the primary contact address.
*)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.
*)districtOrCounty : DistrictOrCounty.t option;The district or county of the primary contact address, if any.
*)postalCode : PostalCode.t;The postal code of the primary contact address.
*)countryCode : CountryCode.t;The ISO-3166 two-letter country code for the primary contact address.
*)phoneNumber : ContactInformationPhoneNumber.t;The phone number of the primary contact information. The number will be validated and, in some countries, checked for activation.
*)companyName : CompanyName.t option;The name of the company associated with the primary contact information, if any.
*)websiteUrl : WebsiteUrl.t option;The URL of the website associated with the primary contact information, if any.
*)}val 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