Struct aws_sdk_directory::model::ConditionalForwarder
source · [−]#[non_exhaustive]pub struct ConditionalForwarder {
pub remote_domain_name: Option<String>,
pub dns_ip_addrs: Option<Vec<String>>,
pub replication_scope: Option<ReplicationScope>,
}
Expand description
Points to a remote domain with which you are setting up a trust relationship. Conditional forwarders are required in order to set up a trust relationship with another domain.
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.remote_domain_name: Option<String>
The fully qualified domain name (FQDN) of the remote domains pointed to by the conditional forwarder.
dns_ip_addrs: Option<Vec<String>>
The IP addresses of the remote DNS server associated with RemoteDomainName. This is the IP address of the DNS server that your conditional forwarder points to.
replication_scope: Option<ReplicationScope>
The replication scope of the conditional forwarder. The only allowed value is Domain
, which will replicate the conditional forwarder to all of the domain controllers for your Amazon Web Services directory.
Implementations
sourceimpl ConditionalForwarder
impl ConditionalForwarder
sourcepub fn remote_domain_name(&self) -> Option<&str>
pub fn remote_domain_name(&self) -> Option<&str>
The fully qualified domain name (FQDN) of the remote domains pointed to by the conditional forwarder.
sourcepub fn dns_ip_addrs(&self) -> Option<&[String]>
pub fn dns_ip_addrs(&self) -> Option<&[String]>
The IP addresses of the remote DNS server associated with RemoteDomainName. This is the IP address of the DNS server that your conditional forwarder points to.
sourcepub fn replication_scope(&self) -> Option<&ReplicationScope>
pub fn replication_scope(&self) -> Option<&ReplicationScope>
The replication scope of the conditional forwarder. The only allowed value is Domain
, which will replicate the conditional forwarder to all of the domain controllers for your Amazon Web Services directory.
sourceimpl ConditionalForwarder
impl ConditionalForwarder
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConditionalForwarder
Trait Implementations
sourceimpl Clone for ConditionalForwarder
impl Clone for ConditionalForwarder
sourcefn clone(&self) -> ConditionalForwarder
fn clone(&self) -> ConditionalForwarder
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 ConditionalForwarder
impl Debug for ConditionalForwarder
sourceimpl PartialEq<ConditionalForwarder> for ConditionalForwarder
impl PartialEq<ConditionalForwarder> for ConditionalForwarder
sourcefn eq(&self, other: &ConditionalForwarder) -> bool
fn eq(&self, other: &ConditionalForwarder) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ConditionalForwarder) -> bool
fn ne(&self, other: &ConditionalForwarder) -> bool
This method tests for !=
.
impl StructuralPartialEq for ConditionalForwarder
Auto Trait Implementations
impl RefUnwindSafe for ConditionalForwarder
impl Send for ConditionalForwarder
impl Sync for ConditionalForwarder
impl Unpin for ConditionalForwarder
impl UnwindSafe for ConditionalForwarder
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