pub struct CreateTrustRequest {
pub conditional_forwarder_ip_addrs: Option<Vec<String>>,
pub directory_id: String,
pub remote_domain_name: String,
pub selective_auth: Option<String>,
pub trust_direction: String,
pub trust_password: String,
pub trust_type: Option<String>,
}
Expand description
AWS Directory Service for Microsoft Active Directory allows you to configure trust relationships. For example, you can establish a trust between your AWS Managed Microsoft AD directory, and your existing on-premises Microsoft Active Directory. This would allow you to provide users and groups access to resources in either domain, with a single set of credentials.
This action initiates the creation of the AWS side of a trust relationship between an AWS Managed Microsoft AD directory and an external domain.
Fields§
§conditional_forwarder_ip_addrs: Option<Vec<String>>
The IP addresses of the remote DNS server associated with RemoteDomainName.
directory_id: String
The Directory ID of the AWS Managed Microsoft AD directory for which to establish the trust relationship.
remote_domain_name: String
The Fully Qualified Domain Name (FQDN) of the external domain for which to create the trust relationship.
selective_auth: Option<String>
Optional parameter to enable selective authentication for the trust.
trust_direction: String
The direction of the trust relationship.
trust_password: String
The trust password. The must be the same password that was used when creating the trust relationship on the external domain.
trust_type: Option<String>
The trust relationship type. Forest
is the default.
Trait Implementations§
Source§impl Clone for CreateTrustRequest
impl Clone for CreateTrustRequest
Source§fn clone(&self) -> CreateTrustRequest
fn clone(&self) -> CreateTrustRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more