Struct aws_sdk_directory::operation::create_conditional_forwarder::CreateConditionalForwarderInput
source · #[non_exhaustive]pub struct CreateConditionalForwarderInput {
pub directory_id: Option<String>,
pub remote_domain_name: Option<String>,
pub dns_ip_addrs: Option<Vec<String>>,
}
Expand description
Initiates the creation of a conditional forwarder for your Directory Service for Microsoft Active Directory. 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.directory_id: Option<String>
The directory ID of the Amazon Web Services directory for which you are creating the conditional forwarder.
remote_domain_name: Option<String>
The fully qualified domain name (FQDN) of the remote domain with which you will set up a trust relationship.
dns_ip_addrs: Option<Vec<String>>
The IP addresses of the remote DNS server associated with RemoteDomainName.
Implementations§
source§impl CreateConditionalForwarderInput
impl CreateConditionalForwarderInput
sourcepub fn directory_id(&self) -> Option<&str>
pub fn directory_id(&self) -> Option<&str>
The directory ID of the Amazon Web Services directory for which you are creating the conditional forwarder.
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 domain with which you will set up a trust relationship.
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.
source§impl CreateConditionalForwarderInput
impl CreateConditionalForwarderInput
sourcepub fn builder() -> CreateConditionalForwarderInputBuilder
pub fn builder() -> CreateConditionalForwarderInputBuilder
Creates a new builder-style object to manufacture CreateConditionalForwarderInput
.
Trait Implementations§
source§impl Clone for CreateConditionalForwarderInput
impl Clone for CreateConditionalForwarderInput
source§fn clone(&self) -> CreateConditionalForwarderInput
fn clone(&self) -> CreateConditionalForwarderInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<CreateConditionalForwarderInput> for CreateConditionalForwarderInput
impl PartialEq<CreateConditionalForwarderInput> for CreateConditionalForwarderInput
source§fn eq(&self, other: &CreateConditionalForwarderInput) -> bool
fn eq(&self, other: &CreateConditionalForwarderInput) -> bool
self
and other
values to be equal, and is used
by ==
.