Struct aws_sdk_apptest::operation::list_test_run_steps::builders::ListTestRunStepsInputBuilder
source · #[non_exhaustive]pub struct ListTestRunStepsInputBuilder { /* private fields */ }
Expand description
A builder for ListTestRunStepsInput
.
Implementations§
source§impl ListTestRunStepsInputBuilder
impl ListTestRunStepsInputBuilder
sourcepub fn test_run_id(self, input: impl Into<String>) -> Self
pub fn test_run_id(self, input: impl Into<String>) -> Self
The test run ID of the test run steps.
This field is required.sourcepub fn set_test_run_id(self, input: Option<String>) -> Self
pub fn set_test_run_id(self, input: Option<String>) -> Self
The test run ID of the test run steps.
sourcepub fn get_test_run_id(&self) -> &Option<String>
pub fn get_test_run_id(&self) -> &Option<String>
The test run ID of the test run steps.
sourcepub fn test_case_id(self, input: impl Into<String>) -> Self
pub fn test_case_id(self, input: impl Into<String>) -> Self
The test case ID of the test run steps.
sourcepub fn set_test_case_id(self, input: Option<String>) -> Self
pub fn set_test_case_id(self, input: Option<String>) -> Self
The test case ID of the test run steps.
sourcepub fn get_test_case_id(&self) -> &Option<String>
pub fn get_test_case_id(&self) -> &Option<String>
The test case ID of the test run steps.
sourcepub fn test_suite_id(self, input: impl Into<String>) -> Self
pub fn test_suite_id(self, input: impl Into<String>) -> Self
The test suite ID of the test run steps.
sourcepub fn set_test_suite_id(self, input: Option<String>) -> Self
pub fn set_test_suite_id(self, input: Option<String>) -> Self
The test suite ID of the test run steps.
sourcepub fn get_test_suite_id(&self) -> &Option<String>
pub fn get_test_suite_id(&self) -> &Option<String>
The test suite ID of the test run steps.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token from a previous step to retrieve 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
The token from a previous step to retrieve the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token from a previous step 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 test run steps 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 test run steps 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 test run steps to return in one page of results.
sourcepub fn build(self) -> Result<ListTestRunStepsInput, BuildError>
pub fn build(self) -> Result<ListTestRunStepsInput, BuildError>
Consumes the builder and constructs a ListTestRunStepsInput
.
source§impl ListTestRunStepsInputBuilder
impl ListTestRunStepsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListTestRunStepsOutput, SdkError<ListTestRunStepsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListTestRunStepsOutput, SdkError<ListTestRunStepsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListTestRunStepsInputBuilder
impl Clone for ListTestRunStepsInputBuilder
source§fn clone(&self) -> ListTestRunStepsInputBuilder
fn clone(&self) -> ListTestRunStepsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTestRunStepsInputBuilder
impl Debug for ListTestRunStepsInputBuilder
source§impl Default for ListTestRunStepsInputBuilder
impl Default for ListTestRunStepsInputBuilder
source§fn default() -> ListTestRunStepsInputBuilder
fn default() -> ListTestRunStepsInputBuilder
source§impl PartialEq for ListTestRunStepsInputBuilder
impl PartialEq for ListTestRunStepsInputBuilder
source§fn eq(&self, other: &ListTestRunStepsInputBuilder) -> bool
fn eq(&self, other: &ListTestRunStepsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTestRunStepsInputBuilder
Auto Trait Implementations§
impl Freeze for ListTestRunStepsInputBuilder
impl RefUnwindSafe for ListTestRunStepsInputBuilder
impl Send for ListTestRunStepsInputBuilder
impl Sync for ListTestRunStepsInputBuilder
impl Unpin for ListTestRunStepsInputBuilder
impl UnwindSafe for ListTestRunStepsInputBuilder
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> 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