[][src]Struct rusoto_storagegateway::JoinDomainOutput

pub struct JoinDomainOutput {
    pub active_directory_status: Option<String>,
    pub gateway_arn: Option<String>,
}

JoinDomainOutput

Fields

active_directory_status: Option<String>

Indicates the status of the gateway as a member of the Active Directory domain.

  • ACCESSDENIED: Indicates that the JoinDomain operation failed due to an authentication error.

  • DETACHED: Indicates that gateway is not joined to a domain.

  • JOINED: Indicates that the gateway has successfully joined a domain.

  • JOINING: Indicates that a JoinDomain operation is in progress.

  • NETWORKERROR: Indicates that JoinDomain operation failed due to a network or connectivity error.

  • TIMEOUT: Indicates that the JoinDomain operation failed because the operation didn't complete within the allotted time.

  • UNKNOWN_ERROR: Indicates that the JoinDomain operation failed due to another type of error.

gateway_arn: Option<String>

The unique Amazon Resource Name (ARN) of the gateway that joined the domain.

Trait Implementations

impl Clone for JoinDomainOutput[src]

impl Debug for JoinDomainOutput[src]

impl Default for JoinDomainOutput[src]

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

impl PartialEq<JoinDomainOutput> for JoinDomainOutput[src]

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