Struct aws_sdk_omics::operation::list_runs::builders::ListRunsInputBuilder
source · #[non_exhaustive]pub struct ListRunsInputBuilder { /* private fields */ }Expand description
A builder for ListRunsInput.
Implementations§
source§impl ListRunsInputBuilder
impl ListRunsInputBuilder
sourcepub fn run_group_id(self, input: impl Into<String>) -> Self
pub fn run_group_id(self, input: impl Into<String>) -> Self
Filter the list by run group ID.
sourcepub fn set_run_group_id(self, input: Option<String>) -> Self
pub fn set_run_group_id(self, input: Option<String>) -> Self
Filter the list by run group ID.
sourcepub fn get_run_group_id(&self) -> &Option<String>
pub fn get_run_group_id(&self) -> &Option<String>
Filter the list by run group ID.
sourcepub fn starting_token(self, input: impl Into<String>) -> Self
pub fn starting_token(self, input: impl Into<String>) -> Self
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn set_starting_token(self, input: Option<String>) -> Self
pub fn set_starting_token(self, input: Option<String>) -> Self
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn get_starting_token(&self) -> &Option<String>
pub fn get_starting_token(&self) -> &Option<String>
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of runs to return in one page of results.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of runs to return in one page of results.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of runs to return in one page of results.
sourcepub fn set_status(self, input: Option<RunStatus>) -> Self
pub fn set_status(self, input: Option<RunStatus>) -> Self
The status of a run.
sourcepub fn get_status(&self) -> &Option<RunStatus>
pub fn get_status(&self) -> &Option<RunStatus>
The status of a run.
sourcepub fn build(self) -> Result<ListRunsInput, BuildError>
pub fn build(self) -> Result<ListRunsInput, BuildError>
Consumes the builder and constructs a ListRunsInput.
source§impl ListRunsInputBuilder
impl ListRunsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListRunsOutput, SdkError<ListRunsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListRunsOutput, SdkError<ListRunsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListRunsInputBuilder
impl Clone for ListRunsInputBuilder
source§fn clone(&self) -> ListRunsInputBuilder
fn clone(&self) -> ListRunsInputBuilder
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 ListRunsInputBuilder
impl Debug for ListRunsInputBuilder
source§impl Default for ListRunsInputBuilder
impl Default for ListRunsInputBuilder
source§fn default() -> ListRunsInputBuilder
fn default() -> ListRunsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListRunsInputBuilder
impl PartialEq for ListRunsInputBuilder
source§fn eq(&self, other: &ListRunsInputBuilder) -> bool
fn eq(&self, other: &ListRunsInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListRunsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListRunsInputBuilder
impl Send for ListRunsInputBuilder
impl Sync for ListRunsInputBuilder
impl Unpin for ListRunsInputBuilder
impl UnwindSafe for ListRunsInputBuilder
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