Struct aws_sdk_translate::operation::update_parallel_data::builders::UpdateParallelDataOutputBuilder
source · #[non_exhaustive]pub struct UpdateParallelDataOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateParallelDataOutput
.
Implementations§
source§impl UpdateParallelDataOutputBuilder
impl UpdateParallelDataOutputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the parallel data resource being updated.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the parallel data resource being updated.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the parallel data resource being updated.
sourcepub fn status(self, input: ParallelDataStatus) -> Self
pub fn status(self, input: ParallelDataStatus) -> Self
The status of the parallel data resource that you are attempting to update. Your update request is accepted only if this status is either ACTIVE
or FAILED
.
sourcepub fn set_status(self, input: Option<ParallelDataStatus>) -> Self
pub fn set_status(self, input: Option<ParallelDataStatus>) -> Self
The status of the parallel data resource that you are attempting to update. Your update request is accepted only if this status is either ACTIVE
or FAILED
.
sourcepub fn get_status(&self) -> &Option<ParallelDataStatus>
pub fn get_status(&self) -> &Option<ParallelDataStatus>
The status of the parallel data resource that you are attempting to update. Your update request is accepted only if this status is either ACTIVE
or FAILED
.
sourcepub fn latest_update_attempt_status(self, input: ParallelDataStatus) -> Self
pub fn latest_update_attempt_status(self, input: ParallelDataStatus) -> Self
The status of the parallel data update attempt. When the updated parallel data resource is ready for you to use, the status is ACTIVE
.
sourcepub fn set_latest_update_attempt_status(
self,
input: Option<ParallelDataStatus>
) -> Self
pub fn set_latest_update_attempt_status( self, input: Option<ParallelDataStatus> ) -> Self
The status of the parallel data update attempt. When the updated parallel data resource is ready for you to use, the status is ACTIVE
.
sourcepub fn get_latest_update_attempt_status(&self) -> &Option<ParallelDataStatus>
pub fn get_latest_update_attempt_status(&self) -> &Option<ParallelDataStatus>
The status of the parallel data update attempt. When the updated parallel data resource is ready for you to use, the status is ACTIVE
.
sourcepub fn latest_update_attempt_at(self, input: DateTime) -> Self
pub fn latest_update_attempt_at(self, input: DateTime) -> Self
The time that the most recent update was attempted.
sourcepub fn set_latest_update_attempt_at(self, input: Option<DateTime>) -> Self
pub fn set_latest_update_attempt_at(self, input: Option<DateTime>) -> Self
The time that the most recent update was attempted.
sourcepub fn get_latest_update_attempt_at(&self) -> &Option<DateTime>
pub fn get_latest_update_attempt_at(&self) -> &Option<DateTime>
The time that the most recent update was attempted.
sourcepub fn build(self) -> UpdateParallelDataOutput
pub fn build(self) -> UpdateParallelDataOutput
Consumes the builder and constructs a UpdateParallelDataOutput
.
Trait Implementations§
source§impl Clone for UpdateParallelDataOutputBuilder
impl Clone for UpdateParallelDataOutputBuilder
source§fn clone(&self) -> UpdateParallelDataOutputBuilder
fn clone(&self) -> UpdateParallelDataOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateParallelDataOutputBuilder
impl Default for UpdateParallelDataOutputBuilder
source§fn default() -> UpdateParallelDataOutputBuilder
fn default() -> UpdateParallelDataOutputBuilder
source§impl PartialEq for UpdateParallelDataOutputBuilder
impl PartialEq for UpdateParallelDataOutputBuilder
source§fn eq(&self, other: &UpdateParallelDataOutputBuilder) -> bool
fn eq(&self, other: &UpdateParallelDataOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateParallelDataOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateParallelDataOutputBuilder
impl RefUnwindSafe for UpdateParallelDataOutputBuilder
impl Send for UpdateParallelDataOutputBuilder
impl Sync for UpdateParallelDataOutputBuilder
impl Unpin for UpdateParallelDataOutputBuilder
impl UnwindSafe for UpdateParallelDataOutputBuilder
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> 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