pub struct CreateConditionalForwarderRequest {
pub directory_id: String,
pub dns_ip_addrs: Vec<String>,
pub remote_domain_name: String,
}
Expand description
Initiates the creation of a conditional forwarder for your AWS Directory Service for Microsoft Active Directory. Conditional forwarders are required in order to set up a trust relationship with another domain.
Fields§
§directory_id: String
The directory ID of the AWS directory for which you are creating the conditional forwarder.
dns_ip_addrs: Vec<String>
The IP addresses of the remote DNS server associated with RemoteDomainName.
remote_domain_name: String
The fully qualified domain name (FQDN) of the remote domain with which you will set up a trust relationship.
Trait Implementations§
Source§impl Clone for CreateConditionalForwarderRequest
impl Clone for CreateConditionalForwarderRequest
Source§fn clone(&self) -> CreateConditionalForwarderRequest
fn clone(&self) -> CreateConditionalForwarderRequest
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 Default for CreateConditionalForwarderRequest
impl Default for CreateConditionalForwarderRequest
Source§fn default() -> CreateConditionalForwarderRequest
fn default() -> CreateConditionalForwarderRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateConditionalForwarderRequest
impl PartialEq for CreateConditionalForwarderRequest
Source§fn eq(&self, other: &CreateConditionalForwarderRequest) -> bool
fn eq(&self, other: &CreateConditionalForwarderRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateConditionalForwarderRequest
Auto Trait Implementations§
impl Freeze for CreateConditionalForwarderRequest
impl RefUnwindSafe for CreateConditionalForwarderRequest
impl Send for CreateConditionalForwarderRequest
impl Sync for CreateConditionalForwarderRequest
impl Unpin for CreateConditionalForwarderRequest
impl UnwindSafe for CreateConditionalForwarderRequest
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