[][src]Struct rusoto_ds::CreateTrustRequest

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>,
}

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

impl Clone for CreateTrustRequest[src]

impl Debug for CreateTrustRequest[src]

impl Default for CreateTrustRequest[src]

impl PartialEq<CreateTrustRequest> for CreateTrustRequest[src]

impl Serialize for CreateTrustRequest[src]

impl StructuralPartialEq for CreateTrustRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.