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.
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 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 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 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 build(self) -> Result<DescribeTestCasesInput, BuildError>
pub fn build(self) -> Result<DescribeTestCasesInput, BuildError>
Consumes the builder and constructs a DescribeTestCasesInput
.
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<DescribeTestCasesInputBuilder> for DescribeTestCasesInputBuilder
impl PartialEq<DescribeTestCasesInputBuilder> 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 ==
.