#[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 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.impl StructuralPartialEq for DescribeTestExecutionOutput
Auto Trait Implementations§
impl Freeze for DescribeTestExecutionOutput
impl RefUnwindSafe for DescribeTestExecutionOutput
impl Send for DescribeTestExecutionOutput
impl Sync for DescribeTestExecutionOutput
impl Unpin for DescribeTestExecutionOutput
impl UnwindSafe for DescribeTestExecutionOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more