ContactDetail

public struct ContactDetail : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • First line of the contact’s address.

    Declaration

    Swift

    public let addressLine1: String?
  • Second line of contact’s address, if any.

    Declaration

    Swift

    public let addressLine2: String?
  • The city of the contact’s address.

    Declaration

    Swift

    public let city: String?
  • Indicates whether the contact is a person, company, association, or public organization. Note the following: If you specify a value other than PERSON, you must also specify a value for OrganizationName. For some TLDs, the privacy protection available depends on the value that you specify for Contact Type. For the privacy protection settings for your TLD, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide For .es domains, if you specify PERSON, you must specify INDIVIDUAL for the value of ES_LEGAL_FORM.

    Declaration

    Swift

    public let contactType: ContactType?
  • Code for the country of the contact’s address.

    Declaration

    Swift

    public let countryCode: CountryCode?
  • Email address of the contact.

    Declaration

    Swift

    public let email: String?
  • A list of name-value pairs for parameters required by certain top-level domains.

    Declaration

    Swift

    public let extraParams: [ExtraParam]?
  • fax

    Fax number of the contact. Constraints: Phone number must be specified in the format “+[country dialing code].[number including any area code]”. For example, a US phone number might appear as “+1.1234567890”.

    Declaration

    Swift

    public let fax: String?
  • First name of contact.

    Declaration

    Swift

    public let firstName: String?
  • Last name of contact.

    Declaration

    Swift

    public let lastName: String?
  • Name of the organization for contact types other than PERSON.

    Declaration

    Swift

    public let organizationName: String?
  • The phone number of the contact. Constraints: Phone number must be specified in the format “+[country dialing code].[number including any area code>]”. For example, a US phone number might appear as “+1.1234567890”.

    Declaration

    Swift

    public let phoneNumber: String?
  • The state or province of the contact’s city.

    Declaration

    Swift

    public let state: String?
  • The zip or postal code of the contact’s address.

    Declaration

    Swift

    public let zipCode: String?
  • Undocumented

    Declaration

    Swift

    public init(addressLine1: String? = nil, addressLine2: String? = nil, city: String? = nil, contactType: ContactType? = nil, countryCode: CountryCode? = nil, email: String? = nil, extraParams: [ExtraParam]? = nil, fax: String? = nil, firstName: String? = nil, lastName: String? = nil, organizationName: String? = nil, phoneNumber: String? = nil, state: String? = nil, zipCode: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws