#[non_exhaustive]pub struct ChangeProgressDetailsBuilder { /* private fields */ }
Expand description
A builder for ChangeProgressDetails
.
Implementations§
source§impl ChangeProgressDetailsBuilder
impl ChangeProgressDetailsBuilder
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 message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
Contains an optional message associated with the domain configuration change.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
Contains an optional message associated with the domain configuration change.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
Contains an optional message associated with the domain 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 start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time that the configuration change was initiated, in Universal Coordinated Time (UTC).
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time that the configuration change was initiated, in Universal Coordinated Time (UTC).
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The time that the configuration change was initiated, in Universal Coordinated Time (UTC).
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The last time that 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 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 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) -> ChangeProgressDetails
pub fn build(self) -> ChangeProgressDetails
Consumes the builder and constructs a ChangeProgressDetails
.
Trait Implementations§
source§impl Clone for ChangeProgressDetailsBuilder
impl Clone for ChangeProgressDetailsBuilder
source§fn clone(&self) -> ChangeProgressDetailsBuilder
fn clone(&self) -> ChangeProgressDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ChangeProgressDetailsBuilder
impl Debug for ChangeProgressDetailsBuilder
source§impl Default for ChangeProgressDetailsBuilder
impl Default for ChangeProgressDetailsBuilder
source§fn default() -> ChangeProgressDetailsBuilder
fn default() -> ChangeProgressDetailsBuilder
source§impl PartialEq for ChangeProgressDetailsBuilder
impl PartialEq for ChangeProgressDetailsBuilder
source§fn eq(&self, other: &ChangeProgressDetailsBuilder) -> bool
fn eq(&self, other: &ChangeProgressDetailsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.