#[non_exhaustive]pub struct ListTestSetsOutputBuilder { /* private fields */ }Expand description
A builder for ListTestSetsOutput.
Implementations§
source§impl ListTestSetsOutputBuilder
impl ListTestSetsOutputBuilder
sourcepub fn test_sets(self, input: TestSetSummary) -> Self
pub fn test_sets(self, input: TestSetSummary) -> Self
Appends an item to test_sets.
To override the contents of this collection use set_test_sets.
The selected test sets in a list of test sets.
sourcepub fn set_test_sets(self, input: Option<Vec<TestSetSummary>>) -> Self
pub fn set_test_sets(self, input: Option<Vec<TestSetSummary>>) -> Self
The selected test sets in a list of test sets.
sourcepub fn get_test_sets(&self) -> &Option<Vec<TestSetSummary>>
pub fn get_test_sets(&self) -> &Option<Vec<TestSetSummary>>
The selected test sets in a list of test sets.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that indicates whether there are more results to return in a response to the ListTestSets operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSets operation request to get 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
A token that indicates whether there are more results to return in a response to the ListTestSets operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSets operation request to get the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that indicates whether there are more results to return in a response to the ListTestSets operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSets operation request to get the next page of results.
sourcepub fn build(self) -> ListTestSetsOutput
pub fn build(self) -> ListTestSetsOutput
Consumes the builder and constructs a ListTestSetsOutput.
Trait Implementations§
source§impl Clone for ListTestSetsOutputBuilder
impl Clone for ListTestSetsOutputBuilder
source§fn clone(&self) -> ListTestSetsOutputBuilder
fn clone(&self) -> ListTestSetsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListTestSetsOutputBuilder
impl Debug for ListTestSetsOutputBuilder
source§impl Default for ListTestSetsOutputBuilder
impl Default for ListTestSetsOutputBuilder
source§fn default() -> ListTestSetsOutputBuilder
fn default() -> ListTestSetsOutputBuilder
impl StructuralPartialEq for ListTestSetsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListTestSetsOutputBuilder
impl RefUnwindSafe for ListTestSetsOutputBuilder
impl Send for ListTestSetsOutputBuilder
impl Sync for ListTestSetsOutputBuilder
impl Unpin for ListTestSetsOutputBuilder
impl UnwindSafe for ListTestSetsOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more