Struct aws_sdk_omics::input::list_sequence_stores_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListSequenceStoresInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of stores 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 stores to return in one page of results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_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_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn filter(self, input: SequenceStoreFilter) -> Self
pub fn filter(self, input: SequenceStoreFilter) -> Self
A filter to apply to the list.
sourcepub fn set_filter(self, input: Option<SequenceStoreFilter>) -> Self
pub fn set_filter(self, input: Option<SequenceStoreFilter>) -> Self
A filter to apply to the list.
sourcepub fn build(self) -> Result<ListSequenceStoresInput, BuildError>
pub fn build(self) -> Result<ListSequenceStoresInput, BuildError>
Consumes the builder and constructs a ListSequenceStoresInput
.