pub struct ConditionalForwarder {
pub dns_ip_addrs: Option<Vec<String>>,
pub remote_domain_name: Option<String>,
pub replication_scope: Option<String>,
}
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§
§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.
remote_domain_name: Option<String>
The fully qualified domain name (FQDN) of the remote domains pointed to by the conditional forwarder.
replication_scope: Option<String>
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 AWS directory.
Trait Implementations§
Source§impl Clone for ConditionalForwarder
impl Clone for ConditionalForwarder
Source§fn clone(&self) -> ConditionalForwarder
fn clone(&self) -> ConditionalForwarder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConditionalForwarder
impl Debug for ConditionalForwarder
Source§impl Default for ConditionalForwarder
impl Default for ConditionalForwarder
Source§fn default() -> ConditionalForwarder
fn default() -> ConditionalForwarder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConditionalForwarder
impl<'de> Deserialize<'de> for ConditionalForwarder
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConditionalForwarder
impl PartialEq for ConditionalForwarder
impl StructuralPartialEq for ConditionalForwarder
Auto Trait Implementations§
impl Freeze for ConditionalForwarder
impl RefUnwindSafe for ConditionalForwarder
impl Send for ConditionalForwarder
impl Sync for ConditionalForwarder
impl Unpin for ConditionalForwarder
impl UnwindSafe for ConditionalForwarder
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
Mutably borrows from an owned value. Read more