#[non_exhaustive]pub struct GetWorkflowRunsInput {
pub name: Option<String>,
pub include_graph: Option<bool>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}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.name: Option<String>Name of the workflow whose metadata of runs should be returned.
include_graph: Option<bool>Specifies whether to include the workflow graph in response or not.
next_token: Option<String>The maximum size of the response.
max_results: Option<i32>The maximum number of workflow runs to be included in the response.
Implementations§
source§impl GetWorkflowRunsInput
impl GetWorkflowRunsInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Name of the workflow whose metadata of runs should be returned.
sourcepub fn include_graph(&self) -> Option<bool>
pub fn include_graph(&self) -> Option<bool>
Specifies whether to include the workflow graph in response or not.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The maximum size of the response.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of workflow runs to be included in the response.
source§impl GetWorkflowRunsInput
impl GetWorkflowRunsInput
sourcepub fn builder() -> GetWorkflowRunsInputBuilder
pub fn builder() -> GetWorkflowRunsInputBuilder
Creates a new builder-style object to manufacture GetWorkflowRunsInput.
Trait Implementations§
source§impl Clone for GetWorkflowRunsInput
impl Clone for GetWorkflowRunsInput
source§fn clone(&self) -> GetWorkflowRunsInput
fn clone(&self) -> GetWorkflowRunsInput
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 GetWorkflowRunsInput
impl Debug for GetWorkflowRunsInput
source§impl PartialEq<GetWorkflowRunsInput> for GetWorkflowRunsInput
impl PartialEq<GetWorkflowRunsInput> for GetWorkflowRunsInput
source§fn eq(&self, other: &GetWorkflowRunsInput) -> bool
fn eq(&self, other: &GetWorkflowRunsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetWorkflowRunsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetWorkflowRunsInput
impl Send for GetWorkflowRunsInput
impl Sync for GetWorkflowRunsInput
impl Unpin for GetWorkflowRunsInput
impl UnwindSafe for GetWorkflowRunsInput
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