Struct aws_sdk_directory::model::DomainController
source · [−]#[non_exhaustive]pub struct DomainController {
pub directory_id: Option<String>,
pub domain_controller_id: Option<String>,
pub dns_ip_addr: Option<String>,
pub vpc_id: Option<String>,
pub subnet_id: Option<String>,
pub availability_zone: Option<String>,
pub status: Option<DomainControllerStatus>,
pub status_reason: Option<String>,
pub launch_time: Option<DateTime>,
pub status_last_updated_date_time: Option<DateTime>,
}
Expand description
Contains information about the domain controllers for a specified directory.
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.directory_id: Option<String>
Identifier of the directory where the domain controller resides.
domain_controller_id: Option<String>
Identifies a specific domain controller in the directory.
dns_ip_addr: Option<String>
The IP address of the domain controller.
vpc_id: Option<String>
The identifier of the VPC that contains the domain controller.
subnet_id: Option<String>
Identifier of the subnet in the VPC that contains the domain controller.
availability_zone: Option<String>
The Availability Zone where the domain controller is located.
status: Option<DomainControllerStatus>
The status of the domain controller.
status_reason: Option<String>
A description of the domain controller state.
launch_time: Option<DateTime>
Specifies when the domain controller was created.
status_last_updated_date_time: Option<DateTime>
The date and time that the status was last updated.
Implementations
sourceimpl DomainController
impl DomainController
sourcepub fn directory_id(&self) -> Option<&str>
pub fn directory_id(&self) -> Option<&str>
Identifier of the directory where the domain controller resides.
sourcepub fn domain_controller_id(&self) -> Option<&str>
pub fn domain_controller_id(&self) -> Option<&str>
Identifies a specific domain controller in the directory.
sourcepub fn dns_ip_addr(&self) -> Option<&str>
pub fn dns_ip_addr(&self) -> Option<&str>
The IP address of the domain controller.
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The identifier of the VPC that contains the domain controller.
sourcepub fn subnet_id(&self) -> Option<&str>
pub fn subnet_id(&self) -> Option<&str>
Identifier of the subnet in the VPC that contains the domain controller.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone where the domain controller is located.
sourcepub fn status(&self) -> Option<&DomainControllerStatus>
pub fn status(&self) -> Option<&DomainControllerStatus>
The status of the domain controller.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
A description of the domain controller state.
sourcepub fn launch_time(&self) -> Option<&DateTime>
pub fn launch_time(&self) -> Option<&DateTime>
Specifies when the domain controller was created.
sourcepub fn status_last_updated_date_time(&self) -> Option<&DateTime>
pub fn status_last_updated_date_time(&self) -> Option<&DateTime>
The date and time that the status was last updated.
sourceimpl DomainController
impl DomainController
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DomainController
Trait Implementations
sourceimpl Clone for DomainController
impl Clone for DomainController
sourcefn clone(&self) -> DomainController
fn clone(&self) -> DomainController
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DomainController
impl Debug for DomainController
sourceimpl PartialEq<DomainController> for DomainController
impl PartialEq<DomainController> for DomainController
sourcefn eq(&self, other: &DomainController) -> bool
fn eq(&self, other: &DomainController) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DomainController) -> bool
fn ne(&self, other: &DomainController) -> bool
This method tests for !=
.
impl StructuralPartialEq for DomainController
Auto Trait Implementations
impl RefUnwindSafe for DomainController
impl Send for DomainController
impl Sync for DomainController
impl Unpin for DomainController
impl UnwindSafe for DomainController
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more