pub struct UpdateConditionalForwarderRequest {
pub directory_id: String,
pub dns_ip_addrs: Vec<String>,
pub remote_domain_name: String,
}
Expand description
Updates a conditional forwarder.
Fields§
§directory_id: String
The directory ID of the AWS directory for which to update the conditional forwarder.
dns_ip_addrs: Vec<String>
The updated IP addresses of the remote DNS server associated with the conditional forwarder.
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 UpdateConditionalForwarderRequest
impl Clone for UpdateConditionalForwarderRequest
Source§fn clone(&self) -> UpdateConditionalForwarderRequest
fn clone(&self) -> UpdateConditionalForwarderRequest
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 UpdateConditionalForwarderRequest
impl Default for UpdateConditionalForwarderRequest
Source§fn default() -> UpdateConditionalForwarderRequest
fn default() -> UpdateConditionalForwarderRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateConditionalForwarderRequest
impl PartialEq for UpdateConditionalForwarderRequest
Source§fn eq(&self, other: &UpdateConditionalForwarderRequest) -> bool
fn eq(&self, other: &UpdateConditionalForwarderRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateConditionalForwarderRequest
Auto Trait Implementations§
impl Freeze for UpdateConditionalForwarderRequest
impl RefUnwindSafe for UpdateConditionalForwarderRequest
impl Send for UpdateConditionalForwarderRequest
impl Sync for UpdateConditionalForwarderRequest
impl Unpin for UpdateConditionalForwarderRequest
impl UnwindSafe for UpdateConditionalForwarderRequest
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