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
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.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: i32
The 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) -> Option<&[ChangeProgressStage]>
pub fn change_progress_stages(&self) -> Option<&[ChangeProgressStage]>
Information about the stages that the pipeline is going through to perform the configuration change.
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
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 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
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ChangeProgressStatus
Auto Trait Implementations§
impl RefUnwindSafe for ChangeProgressStatus
impl Send for ChangeProgressStatus
impl Sync for ChangeProgressStatus
impl Unpin for ChangeProgressStatus
impl UnwindSafe for ChangeProgressStatus
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