#[non_exhaustive]pub struct ListTestSetsInputBuilder { /* private fields */ }Expand description
A builder for ListTestSetsInput.
Implementations§
source§impl ListTestSetsInputBuilder
impl ListTestSetsInputBuilder
sourcepub fn sort_by(self, input: TestSetSortBy) -> Self
pub fn sort_by(self, input: TestSetSortBy) -> Self
The sort order for the list of test sets.
sourcepub fn set_sort_by(self, input: Option<TestSetSortBy>) -> Self
pub fn set_sort_by(self, input: Option<TestSetSortBy>) -> Self
The sort order for the list of test sets.
sourcepub fn get_sort_by(&self) -> &Option<TestSetSortBy>
pub fn get_sort_by(&self) -> &Option<TestSetSortBy>
The sort order for the list of test sets.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of test sets to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of test sets to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of test sets to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return 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
If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response from the ListTestSets operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
sourcepub fn build(self) -> Result<ListTestSetsInput, BuildError>
pub fn build(self) -> Result<ListTestSetsInput, BuildError>
Consumes the builder and constructs a ListTestSetsInput.
source§impl ListTestSetsInputBuilder
impl ListTestSetsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListTestSetsOutput, SdkError<ListTestSetsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListTestSetsOutput, SdkError<ListTestSetsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListTestSetsInputBuilder
impl Clone for ListTestSetsInputBuilder
source§fn clone(&self) -> ListTestSetsInputBuilder
fn clone(&self) -> ListTestSetsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListTestSetsInputBuilder
impl Debug for ListTestSetsInputBuilder
source§impl Default for ListTestSetsInputBuilder
impl Default for ListTestSetsInputBuilder
source§fn default() -> ListTestSetsInputBuilder
fn default() -> ListTestSetsInputBuilder
source§impl PartialEq for ListTestSetsInputBuilder
impl PartialEq for ListTestSetsInputBuilder
source§fn eq(&self, other: &ListTestSetsInputBuilder) -> bool
fn eq(&self, other: &ListTestSetsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.