Struct aws_sdk_lexmodelsv2::operation::list_test_execution_result_items::ListTestExecutionResultItemsInput
source · #[non_exhaustive]pub struct ListTestExecutionResultItemsInput {
pub test_execution_id: Option<String>,
pub result_filter_by: Option<TestExecutionResultFilterBy>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.test_execution_id: Option<String>The unique identifier of the test execution to list the result items.
result_filter_by: Option<TestExecutionResultFilterBy>The filter for the list of results from the test set execution.
max_results: Option<i32>The maximum number of test execution result items to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
next_token: Option<String>If the response from the ListTestExecutionResultItems operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
Implementations§
source§impl ListTestExecutionResultItemsInput
impl ListTestExecutionResultItemsInput
sourcepub fn test_execution_id(&self) -> Option<&str>
pub fn test_execution_id(&self) -> Option<&str>
The unique identifier of the test execution to list the result items.
sourcepub fn result_filter_by(&self) -> Option<&TestExecutionResultFilterBy>
pub fn result_filter_by(&self) -> Option<&TestExecutionResultFilterBy>
The filter for the list of results from the test set execution.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of test execution result items to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response from the ListTestExecutionResultItems operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
source§impl ListTestExecutionResultItemsInput
impl ListTestExecutionResultItemsInput
sourcepub fn builder() -> ListTestExecutionResultItemsInputBuilder
pub fn builder() -> ListTestExecutionResultItemsInputBuilder
Creates a new builder-style object to manufacture ListTestExecutionResultItemsInput.
Trait Implementations§
source§impl Clone for ListTestExecutionResultItemsInput
impl Clone for ListTestExecutionResultItemsInput
source§fn clone(&self) -> ListTestExecutionResultItemsInput
fn clone(&self) -> ListTestExecutionResultItemsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListTestExecutionResultItemsInput
impl PartialEq for ListTestExecutionResultItemsInput
source§fn eq(&self, other: &ListTestExecutionResultItemsInput) -> bool
fn eq(&self, other: &ListTestExecutionResultItemsInput) -> bool
self and other values to be equal, and is used
by ==.