#[non_exhaustive]pub struct DescribeTestExecutionOutput {
pub test_execution_id: Option<String>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
pub test_execution_status: Option<TestExecutionStatus>,
pub test_set_id: Option<String>,
pub test_set_name: Option<String>,
pub target: Option<TestExecutionTarget>,
pub api_mode: Option<TestExecutionApiMode>,
pub test_execution_modality: Option<TestExecutionModality>,
pub failure_reasons: Option<Vec<String>>,
/* private fields */
}
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 execution Id for the test set execution.
creation_date_time: Option<DateTime>
The execution creation date and time for the test set execution.
last_updated_date_time: Option<DateTime>
The date and time of the last update for the execution.
test_execution_status: Option<TestExecutionStatus>
The test execution status for the test execution.
test_set_id: Option<String>
The test set Id for the test set execution.
test_set_name: Option<String>
The test set name of the test set execution.
target: Option<TestExecutionTarget>
The target bot for the test set execution details.
api_mode: Option<TestExecutionApiMode>
Indicates whether we use streaming or non-streaming APIs are used for the test set execution. For streaming, StartConversation
Amazon Lex Runtime API is used. Whereas for non-streaming, RecognizeUtterance
and RecognizeText
Amazon Lex Runtime API is used.
test_execution_modality: Option<TestExecutionModality>
Indicates whether test set is audio or text.
failure_reasons: Option<Vec<String>>
Reasons for the failure of the test set execution.
Implementations§
source§impl DescribeTestExecutionOutput
impl DescribeTestExecutionOutput
sourcepub fn test_execution_id(&self) -> Option<&str>
pub fn test_execution_id(&self) -> Option<&str>
The execution Id for the test set execution.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The execution creation date and time for the test set execution.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The date and time of the last update for the execution.
sourcepub fn test_execution_status(&self) -> Option<&TestExecutionStatus>
pub fn test_execution_status(&self) -> Option<&TestExecutionStatus>
The test execution status for the test execution.
sourcepub fn test_set_id(&self) -> Option<&str>
pub fn test_set_id(&self) -> Option<&str>
The test set Id for the test set execution.
sourcepub fn test_set_name(&self) -> Option<&str>
pub fn test_set_name(&self) -> Option<&str>
The test set name of the test set execution.
sourcepub fn target(&self) -> Option<&TestExecutionTarget>
pub fn target(&self) -> Option<&TestExecutionTarget>
The target bot for the test set execution details.
sourcepub fn api_mode(&self) -> Option<&TestExecutionApiMode>
pub fn api_mode(&self) -> Option<&TestExecutionApiMode>
Indicates whether we use streaming or non-streaming APIs are used for the test set execution. For streaming, StartConversation
Amazon Lex Runtime API is used. Whereas for non-streaming, RecognizeUtterance
and RecognizeText
Amazon Lex Runtime API is used.
sourcepub fn test_execution_modality(&self) -> Option<&TestExecutionModality>
pub fn test_execution_modality(&self) -> Option<&TestExecutionModality>
Indicates whether test set is audio or text.
sourcepub fn failure_reasons(&self) -> &[String]
pub fn failure_reasons(&self) -> &[String]
Reasons for the failure of the test set execution.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .failure_reasons.is_none()
.
source§impl DescribeTestExecutionOutput
impl DescribeTestExecutionOutput
sourcepub fn builder() -> DescribeTestExecutionOutputBuilder
pub fn builder() -> DescribeTestExecutionOutputBuilder
Creates a new builder-style object to manufacture DescribeTestExecutionOutput
.
Trait Implementations§
source§impl Clone for DescribeTestExecutionOutput
impl Clone for DescribeTestExecutionOutput
source§fn clone(&self) -> DescribeTestExecutionOutput
fn clone(&self) -> DescribeTestExecutionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeTestExecutionOutput
impl Debug for DescribeTestExecutionOutput
source§impl PartialEq for DescribeTestExecutionOutput
impl PartialEq for DescribeTestExecutionOutput
source§fn eq(&self, other: &DescribeTestExecutionOutput) -> bool
fn eq(&self, other: &DescribeTestExecutionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeTestExecutionOutput
impl RequestId for DescribeTestExecutionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.