#[non_exhaustive]pub struct ChangeProgressStatusDetailsBuilder { /* private fields */ }
Expand description
A builder for ChangeProgressStatusDetails
.
Implementations§
source§impl ChangeProgressStatusDetailsBuilder
impl ChangeProgressStatusDetailsBuilder
sourcepub fn change_id(self, input: impl Into<String>) -> Self
pub fn change_id(self, input: impl Into<String>) -> Self
The unique change identifier associated with a specific domain configuration change.
sourcepub fn set_change_id(self, input: Option<String>) -> Self
pub fn set_change_id(self, input: Option<String>) -> Self
The unique change identifier associated with a specific domain configuration change.
sourcepub fn get_change_id(&self) -> &Option<String>
pub fn get_change_id(&self) -> &Option<String>
The unique change identifier associated with a specific domain configuration change.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time at which the configuration change is made on the domain.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time at which the configuration change is made on the domain.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The time at which the configuration change is made on the domain.
sourcepub fn status(self, input: OverallChangeStatus) -> Self
pub fn status(self, input: OverallChangeStatus) -> Self
The overall status of the domain configuration change. This field can take the following values: PENDING
, PROCESSING
, COMPLETED
and FAILED
sourcepub fn set_status(self, input: Option<OverallChangeStatus>) -> Self
pub fn set_status(self, input: Option<OverallChangeStatus>) -> Self
The overall status of the domain configuration change. This field can take the following values: PENDING
, PROCESSING
, COMPLETED
and FAILED
sourcepub fn get_status(&self) -> &Option<OverallChangeStatus>
pub fn get_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, input: impl Into<String>) -> Self
pub fn pending_properties(self, input: impl Into<String>) -> Self
Appends an item to pending_properties
.
To override the contents of this collection use set_pending_properties
.
The list of properties involved in the domain configuration change that are still in pending.
sourcepub fn set_pending_properties(self, input: Option<Vec<String>>) -> Self
pub fn set_pending_properties(self, input: Option<Vec<String>>) -> Self
The list of properties involved in the domain configuration change that are still in pending.
sourcepub fn get_pending_properties(&self) -> &Option<Vec<String>>
pub fn get_pending_properties(&self) -> &Option<Vec<String>>
The list of properties involved in the domain configuration change that are still in pending.
sourcepub fn completed_properties(self, input: impl Into<String>) -> Self
pub fn completed_properties(self, input: impl Into<String>) -> Self
Appends an item to completed_properties
.
To override the contents of this collection use set_completed_properties
.
The list of properties involved in the domain configuration change that are completed.
sourcepub fn set_completed_properties(self, input: Option<Vec<String>>) -> Self
pub fn set_completed_properties(self, input: Option<Vec<String>>) -> Self
The list of properties involved in the domain configuration change that are completed.
sourcepub fn get_completed_properties(&self) -> &Option<Vec<String>>
pub fn get_completed_properties(&self) -> &Option<Vec<String>>
The list of properties involved in the domain configuration change that are completed.
sourcepub fn total_number_of_stages(self, input: i32) -> Self
pub fn total_number_of_stages(self, input: i32) -> Self
The total number of stages required for the configuration change.
sourcepub fn set_total_number_of_stages(self, input: Option<i32>) -> Self
pub fn set_total_number_of_stages(self, input: Option<i32>) -> Self
The total number of stages required for the configuration change.
sourcepub fn get_total_number_of_stages(&self) -> &Option<i32>
pub fn get_total_number_of_stages(&self) -> &Option<i32>
The total number of stages required for the configuration change.
sourcepub fn change_progress_stages(self, input: ChangeProgressStage) -> Self
pub fn change_progress_stages(self, input: ChangeProgressStage) -> Self
Appends an item to change_progress_stages
.
To override the contents of this collection use set_change_progress_stages
.
The specific stages that the domain is going through to perform the configuration change.
sourcepub fn set_change_progress_stages(
self,
input: Option<Vec<ChangeProgressStage>>,
) -> Self
pub fn set_change_progress_stages( self, input: Option<Vec<ChangeProgressStage>>, ) -> Self
The specific stages that the domain is going through to perform the configuration change.
sourcepub fn get_change_progress_stages(&self) -> &Option<Vec<ChangeProgressStage>>
pub fn get_change_progress_stages(&self) -> &Option<Vec<ChangeProgressStage>>
The specific stages that the domain is going through to perform the configuration change.
sourcepub fn config_change_status(self, input: ConfigChangeStatus) -> Self
pub fn config_change_status(self, input: ConfigChangeStatus) -> Self
The current status of the configuration change.
sourcepub fn set_config_change_status(self, input: Option<ConfigChangeStatus>) -> Self
pub fn set_config_change_status(self, input: Option<ConfigChangeStatus>) -> Self
The current status of the configuration change.
sourcepub fn get_config_change_status(&self) -> &Option<ConfigChangeStatus>
pub fn get_config_change_status(&self) -> &Option<ConfigChangeStatus>
The current status of the configuration change.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The last time that the status of the configuration change was updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The last time that the status of the configuration change was updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
The last time that the status of the configuration change was updated.
sourcepub fn initiated_by(self, input: InitiatedBy) -> Self
pub fn initiated_by(self, input: InitiatedBy) -> Self
The IAM principal who initiated the configuration change.
sourcepub fn set_initiated_by(self, input: Option<InitiatedBy>) -> Self
pub fn set_initiated_by(self, input: Option<InitiatedBy>) -> Self
The IAM principal who initiated the configuration change.
sourcepub fn get_initiated_by(&self) -> &Option<InitiatedBy>
pub fn get_initiated_by(&self) -> &Option<InitiatedBy>
The IAM principal who initiated the configuration change.
sourcepub fn build(self) -> ChangeProgressStatusDetails
pub fn build(self) -> ChangeProgressStatusDetails
Consumes the builder and constructs a ChangeProgressStatusDetails
.
Trait Implementations§
source§impl Clone for ChangeProgressStatusDetailsBuilder
impl Clone for ChangeProgressStatusDetailsBuilder
source§fn clone(&self) -> ChangeProgressStatusDetailsBuilder
fn clone(&self) -> ChangeProgressStatusDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ChangeProgressStatusDetailsBuilder
impl Default for ChangeProgressStatusDetailsBuilder
source§fn default() -> ChangeProgressStatusDetailsBuilder
fn default() -> ChangeProgressStatusDetailsBuilder
source§impl PartialEq for ChangeProgressStatusDetailsBuilder
impl PartialEq for ChangeProgressStatusDetailsBuilder
source§fn eq(&self, other: &ChangeProgressStatusDetailsBuilder) -> bool
fn eq(&self, other: &ChangeProgressStatusDetailsBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ChangeProgressStatusDetailsBuilder
Auto Trait Implementations§
impl Freeze for ChangeProgressStatusDetailsBuilder
impl RefUnwindSafe for ChangeProgressStatusDetailsBuilder
impl Send for ChangeProgressStatusDetailsBuilder
impl Sync for ChangeProgressStatusDetailsBuilder
impl Unpin for ChangeProgressStatusDetailsBuilder
impl UnwindSafe for ChangeProgressStatusDetailsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more