#[non_exhaustive]pub struct JoinDomainOutput {
pub gateway_arn: Option<String>,
pub active_directory_status: Option<ActiveDirectoryStatus>,
/* private fields */
}Expand description
JoinDomainOutput
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.gateway_arn: Option<String>The unique Amazon Resource Name (ARN) of the gateway that joined the domain.
active_directory_status: Option<ActiveDirectoryStatus>Indicates the status of the gateway as a member of the Active Directory domain.
-
ACCESS_DENIED: Indicates that theJoinDomainoperation 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 aJoinDomainoperation is in progress. -
NETWORK_ERROR: Indicates thatJoinDomainoperation failed due to a network or connectivity error. -
TIMEOUT: Indicates that theJoinDomainoperation failed because the operation didn't complete within the allotted time. -
UNKNOWN_ERROR: Indicates that theJoinDomainoperation failed due to another type of error.
Implementations§
source§impl JoinDomainOutput
impl JoinDomainOutput
sourcepub fn gateway_arn(&self) -> Option<&str>
pub fn gateway_arn(&self) -> Option<&str>
The unique Amazon Resource Name (ARN) of the gateway that joined the domain.
sourcepub fn active_directory_status(&self) -> Option<&ActiveDirectoryStatus>
pub fn active_directory_status(&self) -> Option<&ActiveDirectoryStatus>
Indicates the status of the gateway as a member of the Active Directory domain.
-
ACCESS_DENIED: Indicates that theJoinDomainoperation 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 aJoinDomainoperation is in progress. -
NETWORK_ERROR: Indicates thatJoinDomainoperation failed due to a network or connectivity error. -
TIMEOUT: Indicates that theJoinDomainoperation failed because the operation didn't complete within the allotted time. -
UNKNOWN_ERROR: Indicates that theJoinDomainoperation failed due to another type of error.
source§impl JoinDomainOutput
impl JoinDomainOutput
sourcepub fn builder() -> JoinDomainOutputBuilder
pub fn builder() -> JoinDomainOutputBuilder
Creates a new builder-style object to manufacture JoinDomainOutput.
Trait Implementations§
source§impl Clone for JoinDomainOutput
impl Clone for JoinDomainOutput
source§fn clone(&self) -> JoinDomainOutput
fn clone(&self) -> JoinDomainOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for JoinDomainOutput
impl Debug for JoinDomainOutput
source§impl PartialEq for JoinDomainOutput
impl PartialEq for JoinDomainOutput
source§fn eq(&self, other: &JoinDomainOutput) -> bool
fn eq(&self, other: &JoinDomainOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for JoinDomainOutput
impl RequestId for JoinDomainOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for JoinDomainOutput
Auto Trait Implementations§
impl Freeze for JoinDomainOutput
impl RefUnwindSafe for JoinDomainOutput
impl Send for JoinDomainOutput
impl Sync for JoinDomainOutput
impl Unpin for JoinDomainOutput
impl UnwindSafe for JoinDomainOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more