pub struct DescribeConditionalForwardersRequest {
pub directory_id: String,
pub remote_domain_names: Option<Vec<String>>,
}Expand description
Describes a conditional forwarder.
Fields§
§directory_id: StringThe directory ID for which to get the list of associated conditional forwarders.
remote_domain_names: Option<Vec<String>>The fully qualified domain names (FQDN) of the remote domains for which to get the list of associated conditional forwarders. If this member is null, all conditional forwarders are returned.
Trait Implementations§
Source§impl Clone for DescribeConditionalForwardersRequest
impl Clone for DescribeConditionalForwardersRequest
Source§fn clone(&self) -> DescribeConditionalForwardersRequest
fn clone(&self) -> DescribeConditionalForwardersRequest
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 DescribeConditionalForwardersRequest
impl Default for DescribeConditionalForwardersRequest
Source§fn default() -> DescribeConditionalForwardersRequest
fn default() -> DescribeConditionalForwardersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeConditionalForwardersRequest
impl PartialEq for DescribeConditionalForwardersRequest
Source§fn eq(&self, other: &DescribeConditionalForwardersRequest) -> bool
fn eq(&self, other: &DescribeConditionalForwardersRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeConditionalForwardersRequest
Auto Trait Implementations§
impl Freeze for DescribeConditionalForwardersRequest
impl RefUnwindSafe for DescribeConditionalForwardersRequest
impl Send for DescribeConditionalForwardersRequest
impl Sync for DescribeConditionalForwardersRequest
impl Unpin for DescribeConditionalForwardersRequest
impl UnwindSafe for DescribeConditionalForwardersRequest
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