#[non_exhaustive]pub struct GetEnrollmentStatusOutput { /* private fields */ }
Implementations§
source§impl GetEnrollmentStatusOutput
impl GetEnrollmentStatusOutput
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the enrollment status of the account.
For example, an account might show a status of Pending
because member accounts of an organization require more time to be enrolled in the service.
sourcepub fn member_accounts_enrolled(&self) -> bool
pub fn member_accounts_enrolled(&self) -> bool
Confirms the enrollment status of member accounts of the organization, if the account is a management account of an organization.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
The Unix epoch timestamp, in seconds, of when the account enrollment status was last updated.
sourcepub fn number_of_member_accounts_opted_in(&self) -> Option<i32>
pub fn number_of_member_accounts_opted_in(&self) -> Option<i32>
The count of organization member accounts that are opted in to the service, if your account is an organization management account.
source§impl GetEnrollmentStatusOutput
impl GetEnrollmentStatusOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetEnrollmentStatusOutput
.
Trait Implementations§
source§impl Clone for GetEnrollmentStatusOutput
impl Clone for GetEnrollmentStatusOutput
source§fn clone(&self) -> GetEnrollmentStatusOutput
fn clone(&self) -> GetEnrollmentStatusOutput
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 GetEnrollmentStatusOutput
impl Debug for GetEnrollmentStatusOutput
source§impl PartialEq<GetEnrollmentStatusOutput> for GetEnrollmentStatusOutput
impl PartialEq<GetEnrollmentStatusOutput> for GetEnrollmentStatusOutput
source§fn eq(&self, other: &GetEnrollmentStatusOutput) -> bool
fn eq(&self, other: &GetEnrollmentStatusOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.