Struct aws_sdk_lexmodelsv2::operation::list_test_executions::builders::ListTestExecutionsOutputBuilder
source · #[non_exhaustive]pub struct ListTestExecutionsOutputBuilder { /* private fields */ }Expand description
A builder for ListTestExecutionsOutput.
Implementations§
source§impl ListTestExecutionsOutputBuilder
impl ListTestExecutionsOutputBuilder
sourcepub fn test_executions(self, input: TestExecutionSummary) -> Self
pub fn test_executions(self, input: TestExecutionSummary) -> Self
Appends an item to test_executions.
To override the contents of this collection use set_test_executions.
The list of test executions.
sourcepub fn set_test_executions(
self,
input: Option<Vec<TestExecutionSummary>>,
) -> Self
pub fn set_test_executions( self, input: Option<Vec<TestExecutionSummary>>, ) -> Self
The list of test executions.
sourcepub fn get_test_executions(&self) -> &Option<Vec<TestExecutionSummary>>
pub fn get_test_executions(&self) -> &Option<Vec<TestExecutionSummary>>
The list of test executions.
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 ListTestExecutions operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestExecutions 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 ListTestExecutions operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestExecutions 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 ListTestExecutions operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestExecutions operation request to get the next page of results.
sourcepub fn build(self) -> ListTestExecutionsOutput
pub fn build(self) -> ListTestExecutionsOutput
Consumes the builder and constructs a ListTestExecutionsOutput.
Trait Implementations§
source§impl Clone for ListTestExecutionsOutputBuilder
impl Clone for ListTestExecutionsOutputBuilder
source§fn clone(&self) -> ListTestExecutionsOutputBuilder
fn clone(&self) -> ListTestExecutionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListTestExecutionsOutputBuilder
impl Default for ListTestExecutionsOutputBuilder
source§fn default() -> ListTestExecutionsOutputBuilder
fn default() -> ListTestExecutionsOutputBuilder
source§impl PartialEq for ListTestExecutionsOutputBuilder
impl PartialEq for ListTestExecutionsOutputBuilder
source§fn eq(&self, other: &ListTestExecutionsOutputBuilder) -> bool
fn eq(&self, other: &ListTestExecutionsOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTestExecutionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListTestExecutionsOutputBuilder
impl RefUnwindSafe for ListTestExecutionsOutputBuilder
impl Send for ListTestExecutionsOutputBuilder
impl Sync for ListTestExecutionsOutputBuilder
impl Unpin for ListTestExecutionsOutputBuilder
impl UnwindSafe for ListTestExecutionsOutputBuilder
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