[][src]Struct rusoto_route53domains::DomainSummary

pub struct DomainSummary {
    pub auto_renew: Option<bool>,
    pub domain_name: String,
    pub expiry: Option<f64>,
    pub transfer_lock: Option<bool>,
}

Summary information about one domain.

Fields

auto_renew: Option<bool>

Indicates whether the domain is automatically renewed upon expiration.

domain_name: String

The name of the domain that the summary information applies to.

expiry: Option<f64>

Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).

transfer_lock: Option<bool>

Indicates whether a domain is locked from unauthorized transfer to another party.

Trait Implementations

impl Clone for DomainSummary[src]

impl Debug for DomainSummary[src]

impl Default for DomainSummary[src]

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

impl PartialEq<DomainSummary> for DomainSummary[src]

impl StructuralPartialEq for DomainSummary[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.