Struct aws_sdk_omics::input::list_workflows_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListWorkflowsInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn type(self, input: WorkflowType) -> Self
pub fn type(self, input: WorkflowType) -> Self
The workflows' type.
sourcepub fn set_type(self, input: Option<WorkflowType>) -> Self
pub fn set_type(self, input: Option<WorkflowType>) -> Self
The workflows' type.
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 max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of workflows 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 workflows to return in one page of results.
sourcepub fn build(self) -> Result<ListWorkflowsInput, BuildError>
pub fn build(self) -> Result<ListWorkflowsInput, BuildError>
Consumes the builder and constructs a ListWorkflowsInput
.