#[non_exhaustive]pub struct DryRunProgressStatusBuilder { /* private fields */ }Expand description
A builder for DryRunProgressStatus.
Implementations§
source§impl DryRunProgressStatusBuilder
impl DryRunProgressStatusBuilder
sourcepub fn dry_run_id(self, input: impl Into<String>) -> Self
pub fn dry_run_id(self, input: impl Into<String>) -> Self
The unique identifier of the dry run.
sourcepub fn set_dry_run_id(self, input: Option<String>) -> Self
pub fn set_dry_run_id(self, input: Option<String>) -> Self
The unique identifier of the dry run.
sourcepub fn dry_run_status(self, input: impl Into<String>) -> Self
pub fn dry_run_status(self, input: impl Into<String>) -> Self
The current status of the dry run.
sourcepub fn set_dry_run_status(self, input: Option<String>) -> Self
pub fn set_dry_run_status(self, input: Option<String>) -> Self
The current status of the dry run.
sourcepub fn creation_date(self, input: impl Into<String>) -> Self
pub fn creation_date(self, input: impl Into<String>) -> Self
The timestamp when the dry run was initiated.
sourcepub fn set_creation_date(self, input: Option<String>) -> Self
pub fn set_creation_date(self, input: Option<String>) -> Self
The timestamp when the dry run was initiated.
sourcepub fn update_date(self, input: impl Into<String>) -> Self
pub fn update_date(self, input: impl Into<String>) -> Self
The timestamp when the dry run was last updated.
sourcepub fn set_update_date(self, input: Option<String>) -> Self
pub fn set_update_date(self, input: Option<String>) -> Self
The timestamp when the dry run was last updated.
sourcepub fn validation_failures(self, input: ValidationFailure) -> Self
pub fn validation_failures(self, input: ValidationFailure) -> Self
Appends an item to validation_failures.
To override the contents of this collection use set_validation_failures.
Any validation failures that occurred as a result of the dry run.
sourcepub fn set_validation_failures(
self,
input: Option<Vec<ValidationFailure>>
) -> Self
pub fn set_validation_failures( self, input: Option<Vec<ValidationFailure>> ) -> Self
Any validation failures that occurred as a result of the dry run.
sourcepub fn build(self) -> DryRunProgressStatus
pub fn build(self) -> DryRunProgressStatus
Consumes the builder and constructs a DryRunProgressStatus.
Trait Implementations§
source§impl Clone for DryRunProgressStatusBuilder
impl Clone for DryRunProgressStatusBuilder
source§fn clone(&self) -> DryRunProgressStatusBuilder
fn clone(&self) -> DryRunProgressStatusBuilder
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 DryRunProgressStatusBuilder
impl Debug for DryRunProgressStatusBuilder
source§impl Default for DryRunProgressStatusBuilder
impl Default for DryRunProgressStatusBuilder
source§fn default() -> DryRunProgressStatusBuilder
fn default() -> DryRunProgressStatusBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DryRunProgressStatusBuilder> for DryRunProgressStatusBuilder
impl PartialEq<DryRunProgressStatusBuilder> for DryRunProgressStatusBuilder
source§fn eq(&self, other: &DryRunProgressStatusBuilder) -> bool
fn eq(&self, other: &DryRunProgressStatusBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DryRunProgressStatusBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DryRunProgressStatusBuilder
impl Send for DryRunProgressStatusBuilder
impl Sync for DryRunProgressStatusBuilder
impl Unpin for DryRunProgressStatusBuilder
impl UnwindSafe for DryRunProgressStatusBuilder
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