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) -> &[String]
pub fn dns_ip_addrs(&self) -> &[String]
The IP addresses of the remote DNS server associated with RemoteDomainName.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .dns_ip_addrs.is_none().
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 for CreateConditionalForwarderInput
impl PartialEq 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 ==.