Struct aws_sdk_codebuild::operation::describe_test_cases::builders::DescribeTestCasesInputBuilder
source · #[non_exhaustive]pub struct DescribeTestCasesInputBuilder { /* private fields */ }
Expand description
A builder for DescribeTestCasesInput
.
Implementations§
source§impl DescribeTestCasesInputBuilder
impl DescribeTestCasesInputBuilder
sourcepub fn report_arn(self, input: impl Into<String>) -> Self
pub fn report_arn(self, input: impl Into<String>) -> Self
The ARN of the report for which test cases are returned.
This field is required.sourcepub fn set_report_arn(self, input: Option<String>) -> Self
pub fn set_report_arn(self, input: Option<String>) -> Self
The ARN of the report for which test cases are returned.
sourcepub fn get_report_arn(&self) -> &Option<String>
pub fn get_report_arn(&self) -> &Option<String>
The ARN of the report for which test cases are returned.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of paginated test cases returned per response. Use nextToken
to iterate pages in the list of returned TestCase
objects. The default value is 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of paginated test cases returned per response. Use nextToken
to iterate pages in the list of returned TestCase
objects. The default value is 100.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of paginated test cases returned per response. Use nextToken
to iterate pages in the list of returned TestCase
objects. The default value is 100.
sourcepub fn filter(self, input: TestCaseFilter) -> Self
pub fn filter(self, input: TestCaseFilter) -> Self
A TestCaseFilter
object used to filter the returned reports.
sourcepub fn set_filter(self, input: Option<TestCaseFilter>) -> Self
pub fn set_filter(self, input: Option<TestCaseFilter>) -> Self
A TestCaseFilter
object used to filter the returned reports.
sourcepub fn get_filter(&self) -> &Option<TestCaseFilter>
pub fn get_filter(&self) -> &Option<TestCaseFilter>
A TestCaseFilter
object used to filter the returned reports.
sourcepub fn build(self) -> Result<DescribeTestCasesInput, BuildError>
pub fn build(self) -> Result<DescribeTestCasesInput, BuildError>
Consumes the builder and constructs a DescribeTestCasesInput
.
source§impl DescribeTestCasesInputBuilder
impl DescribeTestCasesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DescribeTestCasesOutput, SdkError<DescribeTestCasesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DescribeTestCasesOutput, SdkError<DescribeTestCasesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeTestCasesInputBuilder
impl Clone for DescribeTestCasesInputBuilder
source§fn clone(&self) -> DescribeTestCasesInputBuilder
fn clone(&self) -> DescribeTestCasesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeTestCasesInputBuilder
impl Default for DescribeTestCasesInputBuilder
source§fn default() -> DescribeTestCasesInputBuilder
fn default() -> DescribeTestCasesInputBuilder
source§impl PartialEq for DescribeTestCasesInputBuilder
impl PartialEq for DescribeTestCasesInputBuilder
source§fn eq(&self, other: &DescribeTestCasesInputBuilder) -> bool
fn eq(&self, other: &DescribeTestCasesInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.