Struct aws_sdk_osis::types::ChangeProgressStatus
source · #[non_exhaustive]pub struct ChangeProgressStatus {
pub start_time: Option<DateTime>,
pub status: Option<ChangeProgressStatuses>,
pub total_number_of_stages: i32,
pub change_progress_stages: Option<Vec<ChangeProgressStage>>,
}Expand description
The progress details of a pipeline configuration change.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.start_time: Option<DateTime>The time at which the configuration change is made on the pipeline.
status: Option<ChangeProgressStatuses>The overall status of the pipeline configuration change.
total_number_of_stages: i32The total number of stages required for the pipeline configuration change.
change_progress_stages: Option<Vec<ChangeProgressStage>>Information about the stages that the pipeline is going through to perform the configuration change.
Implementations§
source§impl ChangeProgressStatus
impl ChangeProgressStatus
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 pipeline.
sourcepub fn status(&self) -> Option<&ChangeProgressStatuses>
pub fn status(&self) -> Option<&ChangeProgressStatuses>
The overall status of the pipeline configuration change.
sourcepub fn total_number_of_stages(&self) -> i32
pub fn total_number_of_stages(&self) -> i32
The total number of stages required for the pipeline configuration change.
sourcepub fn change_progress_stages(&self) -> &[ChangeProgressStage]
pub fn change_progress_stages(&self) -> &[ChangeProgressStage]
Information about the stages that the pipeline is going through to perform the configuration change.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .change_progress_stages.is_none().
source§impl ChangeProgressStatus
impl ChangeProgressStatus
sourcepub fn builder() -> ChangeProgressStatusBuilder
pub fn builder() -> ChangeProgressStatusBuilder
Creates a new builder-style object to manufacture ChangeProgressStatus.
Trait Implementations§
source§impl Clone for ChangeProgressStatus
impl Clone for ChangeProgressStatus
source§fn clone(&self) -> ChangeProgressStatus
fn clone(&self) -> ChangeProgressStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ChangeProgressStatus
impl Debug for ChangeProgressStatus
source§impl PartialEq for ChangeProgressStatus
impl PartialEq for ChangeProgressStatus
source§fn eq(&self, other: &ChangeProgressStatus) -> bool
fn eq(&self, other: &ChangeProgressStatus) -> bool
self and other values to be equal, and is used
by ==.