Struct aws_sdk_omics::operation::start_run::builders::StartRunOutputBuilder
source · #[non_exhaustive]pub struct StartRunOutputBuilder { /* private fields */ }
Expand description
A builder for StartRunOutput
.
Implementations§
source§impl StartRunOutputBuilder
impl StartRunOutputBuilder
sourcepub fn set_status(self, input: Option<RunStatus>) -> Self
pub fn set_status(self, input: Option<RunStatus>) -> Self
The run's status.
sourcepub fn get_status(&self) -> &Option<RunStatus>
pub fn get_status(&self) -> &Option<RunStatus>
The run's status.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The run's tags.
The run's tags.
The run's tags.
sourcepub fn uuid(self, input: impl Into<String>) -> Self
pub fn uuid(self, input: impl Into<String>) -> Self
The universally unique identifier for a run.
sourcepub fn set_uuid(self, input: Option<String>) -> Self
pub fn set_uuid(self, input: Option<String>) -> Self
The universally unique identifier for a run.
sourcepub fn run_output_uri(self, input: impl Into<String>) -> Self
pub fn run_output_uri(self, input: impl Into<String>) -> Self
The destination for workflow outputs.
sourcepub fn set_run_output_uri(self, input: Option<String>) -> Self
pub fn set_run_output_uri(self, input: Option<String>) -> Self
The destination for workflow outputs.
sourcepub fn get_run_output_uri(&self) -> &Option<String>
pub fn get_run_output_uri(&self) -> &Option<String>
The destination for workflow outputs.
sourcepub fn build(self) -> StartRunOutput
pub fn build(self) -> StartRunOutput
Consumes the builder and constructs a StartRunOutput
.
Trait Implementations§
source§impl Clone for StartRunOutputBuilder
impl Clone for StartRunOutputBuilder
source§fn clone(&self) -> StartRunOutputBuilder
fn clone(&self) -> StartRunOutputBuilder
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 StartRunOutputBuilder
impl Debug for StartRunOutputBuilder
source§impl Default for StartRunOutputBuilder
impl Default for StartRunOutputBuilder
source§fn default() -> StartRunOutputBuilder
fn default() -> StartRunOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StartRunOutputBuilder
impl PartialEq for StartRunOutputBuilder
source§fn eq(&self, other: &StartRunOutputBuilder) -> bool
fn eq(&self, other: &StartRunOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartRunOutputBuilder
Auto Trait Implementations§
impl Freeze for StartRunOutputBuilder
impl RefUnwindSafe for StartRunOutputBuilder
impl Send for StartRunOutputBuilder
impl Sync for StartRunOutputBuilder
impl Unpin for StartRunOutputBuilder
impl UnwindSafe for StartRunOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.