[][src]Struct rusoto_route53domains::ContactDetail

pub struct ContactDetail {
    pub address_line_1: Option<String>,
    pub address_line_2: Option<String>,
    pub city: Option<String>,
    pub contact_type: Option<String>,
    pub country_code: Option<String>,
    pub email: Option<String>,
    pub extra_params: Option<Vec<ExtraParam>>,
    pub fax: Option<String>,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub organization_name: Option<String>,
    pub phone_number: Option<String>,
    pub state: Option<String>,
    pub zip_code: Option<String>,
}

ContactDetail includes the following elements.

Fields

address_line_1: Option<String>

First line of the contact's address.

address_line_2: Option<String>

Second line of contact's address, if any.

city: Option<String>

The city of the contact's address.

contact_type: Option<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 ESLEGALFORM.

country_code: Option<String>

Code for the country of the contact's address.

email: Option<String>

Email address of the contact.

extra_params: Option<Vec<ExtraParam>>

A list of name-value pairs for parameters required by certain top-level domains.

fax: Option<String>

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".

first_name: Option<String>

First name of contact.

last_name: Option<String>

Last name of contact.

organization_name: Option<String>

Name of the organization for contact types other than PERSON.

phone_number: Option<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".

state: Option<String>

The state or province of the contact's city.

zip_code: Option<String>

The zip or postal code of the contact's address.

Trait Implementations

impl Clone for ContactDetail[src]

impl Debug for ContactDetail[src]

impl Default for ContactDetail[src]

impl<'de> Deserialize<'de> for ContactDetail[src]

impl PartialEq<ContactDetail> for ContactDetail[src]

impl Serialize for ContactDetail[src]

impl StructuralPartialEq for ContactDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.