pub struct DescribeTestCasesInput {
pub filter: Option<TestCaseFilter>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub report_arn: String,
}
Fields§
§filter: Option<TestCaseFilter>
A TestCaseFilter
object used to filter the returned reports.
max_results: Option<i64>
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.
next_token: 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.
report_arn: String
The ARN of the report for which test cases are returned.
Trait Implementations§
Source§impl Clone for DescribeTestCasesInput
impl Clone for DescribeTestCasesInput
Source§fn clone(&self) -> DescribeTestCasesInput
fn clone(&self) -> DescribeTestCasesInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeTestCasesInput
impl Debug for DescribeTestCasesInput
Source§impl Default for DescribeTestCasesInput
impl Default for DescribeTestCasesInput
Source§fn default() -> DescribeTestCasesInput
fn default() -> DescribeTestCasesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeTestCasesInput
impl PartialEq for DescribeTestCasesInput
Source§impl Serialize for DescribeTestCasesInput
impl Serialize for DescribeTestCasesInput
impl StructuralPartialEq for DescribeTestCasesInput
Auto Trait Implementations§
impl Freeze for DescribeTestCasesInput
impl RefUnwindSafe for DescribeTestCasesInput
impl Send for DescribeTestCasesInput
impl Sync for DescribeTestCasesInput
impl Unpin for DescribeTestCasesInput
impl UnwindSafe for DescribeTestCasesInput
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
Mutably borrows from an owned value. Read more