#[non_exhaustive]pub struct AccountEnrollmentStatus { /* private fields */ }
Expand description
Describes the enrollment status of an organization's member accounts in Compute Optimizer.
Implementations
sourceimpl AccountEnrollmentStatus
impl AccountEnrollmentStatus
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the account enrollment status.
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 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.
sourceimpl AccountEnrollmentStatus
impl AccountEnrollmentStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AccountEnrollmentStatus
.
Trait Implementations
sourceimpl Clone for AccountEnrollmentStatus
impl Clone for AccountEnrollmentStatus
sourcefn clone(&self) -> AccountEnrollmentStatus
fn clone(&self) -> AccountEnrollmentStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AccountEnrollmentStatus
impl Debug for AccountEnrollmentStatus
sourceimpl PartialEq<AccountEnrollmentStatus> for AccountEnrollmentStatus
impl PartialEq<AccountEnrollmentStatus> for AccountEnrollmentStatus
sourcefn eq(&self, other: &AccountEnrollmentStatus) -> bool
fn eq(&self, other: &AccountEnrollmentStatus) -> bool
impl StructuralPartialEq for AccountEnrollmentStatus
Auto Trait Implementations
impl RefUnwindSafe for AccountEnrollmentStatus
impl Send for AccountEnrollmentStatus
impl Sync for AccountEnrollmentStatus
impl Unpin for AccountEnrollmentStatus
impl UnwindSafe for AccountEnrollmentStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more