#[non_exhaustive]pub struct ChangeProgressStatusDetails { /* private fields */ }
Expand description
The progress details of a specific domain configuration change.
Implementations
sourceimpl ChangeProgressStatusDetails
impl ChangeProgressStatusDetails
sourcepub fn change_id(&self) -> Option<&str>
pub fn change_id(&self) -> Option<&str>
The unique change identifier associated with a specific domain configuration change.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time at which the configuration change is made on the domain.
sourcepub fn status(&self) -> Option<&OverallChangeStatus>
pub fn status(&self) -> Option<&OverallChangeStatus>
The overall status of the domain configuration change. This field can take the following values: PENDING
, PROCESSING
, COMPLETED
and FAILED
sourcepub fn pending_properties(&self) -> Option<&[String]>
pub fn pending_properties(&self) -> Option<&[String]>
The list of properties involved in the domain configuration change that are still in pending.
sourcepub fn completed_properties(&self) -> Option<&[String]>
pub fn completed_properties(&self) -> Option<&[String]>
The list of properties involved in the domain configuration change that are completed.
sourcepub fn total_number_of_stages(&self) -> i32
pub fn total_number_of_stages(&self) -> i32
The total number of stages required for the configuration change.
sourcepub fn change_progress_stages(&self) -> Option<&[ChangeProgressStage]>
pub fn change_progress_stages(&self) -> Option<&[ChangeProgressStage]>
The specific stages that the domain is going through to perform the configuration change.
sourceimpl ChangeProgressStatusDetails
impl ChangeProgressStatusDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ChangeProgressStatusDetails
.
Trait Implementations
sourceimpl Clone for ChangeProgressStatusDetails
impl Clone for ChangeProgressStatusDetails
sourcefn clone(&self) -> ChangeProgressStatusDetails
fn clone(&self) -> ChangeProgressStatusDetails
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more