Struct aws_sdk_omics::operation::start_run::StartRunInput
source · #[non_exhaustive]pub struct StartRunInput { /* private fields */ }
Implementations§
source§impl StartRunInput
impl StartRunInput
sourcepub fn workflow_id(&self) -> Option<&str>
pub fn workflow_id(&self) -> Option<&str>
The run's workflow ID.
sourcepub fn workflow_type(&self) -> Option<&WorkflowType>
pub fn workflow_type(&self) -> Option<&WorkflowType>
The run's workflows type.
sourcepub fn run_group_id(&self) -> Option<&str>
pub fn run_group_id(&self) -> Option<&str>
The run's group ID.
sourcepub fn parameters(&self) -> Option<&Document>
pub fn parameters(&self) -> Option<&Document>
Parameters for the run.
sourcepub fn storage_capacity(&self) -> Option<i32>
pub fn storage_capacity(&self) -> Option<i32>
A storage capacity for the run in gigabytes.
sourcepub fn output_uri(&self) -> Option<&str>
pub fn output_uri(&self) -> Option<&str>
An output URI for the run.
sourcepub fn log_level(&self) -> Option<&RunLogLevel>
pub fn log_level(&self) -> Option<&RunLogLevel>
A log level for the run.
Tags for the run.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
To ensure that requests don't run multiple times, specify a unique ID for each request.
source§impl StartRunInput
impl StartRunInput
sourcepub fn builder() -> StartRunInputBuilder
pub fn builder() -> StartRunInputBuilder
Creates a new builder-style object to manufacture StartRunInput
.
source§impl StartRunInput
impl StartRunInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<StartRun, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<StartRun, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartRun
>
Trait Implementations§
source§impl Clone for StartRunInput
impl Clone for StartRunInput
source§fn clone(&self) -> StartRunInput
fn clone(&self) -> StartRunInput
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 StartRunInput
impl Debug for StartRunInput
source§impl PartialEq<StartRunInput> for StartRunInput
impl PartialEq<StartRunInput> for StartRunInput
source§fn eq(&self, other: &StartRunInput) -> bool
fn eq(&self, other: &StartRunInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartRunInput
Auto Trait Implementations§
impl RefUnwindSafe for StartRunInput
impl Send for StartRunInput
impl Sync for StartRunInput
impl Unpin for StartRunInput
impl UnwindSafe for StartRunInput
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