#[non_exhaustive]pub struct AwsRdsDbDomainMembership {
pub domain: Option<String>,
pub status: Option<String>,
pub fqdn: Option<String>,
pub iam_role_name: Option<String>,
}
Expand description
Information about an Active Directory domain membership record associated with the DB instance.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain: Option<String>
The identifier of the Active Directory domain.
status: Option<String>
The status of the Active Directory Domain membership for the DB instance.
fqdn: Option<String>
The fully qualified domain name of the Active Directory domain.
iam_role_name: Option<String>
The name of the IAM role to use when making API calls to the Directory Service.
Implementations§
source§impl AwsRdsDbDomainMembership
impl AwsRdsDbDomainMembership
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the Active Directory Domain membership for the DB instance.
sourcepub fn fqdn(&self) -> Option<&str>
pub fn fqdn(&self) -> Option<&str>
The fully qualified domain name of the Active Directory domain.
sourcepub fn iam_role_name(&self) -> Option<&str>
pub fn iam_role_name(&self) -> Option<&str>
The name of the IAM role to use when making API calls to the Directory Service.
source§impl AwsRdsDbDomainMembership
impl AwsRdsDbDomainMembership
sourcepub fn builder() -> AwsRdsDbDomainMembershipBuilder
pub fn builder() -> AwsRdsDbDomainMembershipBuilder
Creates a new builder-style object to manufacture AwsRdsDbDomainMembership
.
Trait Implementations§
source§impl Clone for AwsRdsDbDomainMembership
impl Clone for AwsRdsDbDomainMembership
source§fn clone(&self) -> AwsRdsDbDomainMembership
fn clone(&self) -> AwsRdsDbDomainMembership
Returns a copy 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 Debug for AwsRdsDbDomainMembership
impl Debug for AwsRdsDbDomainMembership
source§impl PartialEq for AwsRdsDbDomainMembership
impl PartialEq for AwsRdsDbDomainMembership
source§fn eq(&self, other: &AwsRdsDbDomainMembership) -> bool
fn eq(&self, other: &AwsRdsDbDomainMembership) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRdsDbDomainMembership
Auto Trait Implementations§
impl Freeze for AwsRdsDbDomainMembership
impl RefUnwindSafe for AwsRdsDbDomainMembership
impl Send for AwsRdsDbDomainMembership
impl Sync for AwsRdsDbDomainMembership
impl Unpin for AwsRdsDbDomainMembership
impl UnwindSafe for AwsRdsDbDomainMembership
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.