#[non_exhaustive]pub struct ListWorkflowsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_results: Option<i32>Specifies the maximum number of workflows to return.
next_token: Option<String> ListWorkflows returns the NextToken parameter in the output. You can then pass the NextToken parameter in a subsequent command to continue listing additional workflows.
Implementations§
source§impl ListWorkflowsInput
impl ListWorkflowsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Specifies the maximum number of workflows to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
ListWorkflows returns the NextToken parameter in the output. You can then pass the NextToken parameter in a subsequent command to continue listing additional workflows.
source§impl ListWorkflowsInput
impl ListWorkflowsInput
sourcepub fn builder() -> ListWorkflowsInputBuilder
pub fn builder() -> ListWorkflowsInputBuilder
Creates a new builder-style object to manufacture ListWorkflowsInput.
Trait Implementations§
source§impl Clone for ListWorkflowsInput
impl Clone for ListWorkflowsInput
source§fn clone(&self) -> ListWorkflowsInput
fn clone(&self) -> ListWorkflowsInput
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 ListWorkflowsInput
impl Debug for ListWorkflowsInput
source§impl PartialEq for ListWorkflowsInput
impl PartialEq for ListWorkflowsInput
source§fn eq(&self, other: &ListWorkflowsInput) -> bool
fn eq(&self, other: &ListWorkflowsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListWorkflowsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListWorkflowsInput
impl Send for ListWorkflowsInput
impl Sync for ListWorkflowsInput
impl Unpin for ListWorkflowsInput
impl UnwindSafe for ListWorkflowsInput
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