#[non_exhaustive]pub struct ListRunGroupsInputBuilder { /* private fields */ }Expand description
A builder for ListRunGroupsInput.
Implementations§
source§impl ListRunGroupsInputBuilder
impl ListRunGroupsInputBuilder
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 run groups 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 run groups 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 run groups to return in one page of results.
sourcepub fn build(self) -> Result<ListRunGroupsInput, BuildError>
pub fn build(self) -> Result<ListRunGroupsInput, BuildError>
Consumes the builder and constructs a ListRunGroupsInput.
source§impl ListRunGroupsInputBuilder
impl ListRunGroupsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListRunGroupsOutput, SdkError<ListRunGroupsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListRunGroupsOutput, SdkError<ListRunGroupsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListRunGroupsInputBuilder
impl Clone for ListRunGroupsInputBuilder
source§fn clone(&self) -> ListRunGroupsInputBuilder
fn clone(&self) -> ListRunGroupsInputBuilder
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 ListRunGroupsInputBuilder
impl Debug for ListRunGroupsInputBuilder
source§impl Default for ListRunGroupsInputBuilder
impl Default for ListRunGroupsInputBuilder
source§fn default() -> ListRunGroupsInputBuilder
fn default() -> ListRunGroupsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListRunGroupsInputBuilder
impl PartialEq for ListRunGroupsInputBuilder
source§fn eq(&self, other: &ListRunGroupsInputBuilder) -> bool
fn eq(&self, other: &ListRunGroupsInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListRunGroupsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListRunGroupsInputBuilder
impl Send for ListRunGroupsInputBuilder
impl Sync for ListRunGroupsInputBuilder
impl Unpin for ListRunGroupsInputBuilder
impl UnwindSafe for ListRunGroupsInputBuilder
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