Struct aws_sdk_lexmodelsv2::types::TestExecutionSummary
source · #[non_exhaustive]pub struct TestExecutionSummary {
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>,
}
Expand description
Summarizes metadata about the test execution.
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.
creation_date_time: Option<DateTime>
The date and time at which the test execution was created.
last_updated_date_time: Option<DateTime>
The date and time at which the test execution was last updated.
test_execution_status: Option<TestExecutionStatus>
The current status of the test execution.
test_set_id: Option<String>
The unique identifier of the test set used in the test execution.
test_set_name: Option<String>
The name of the test set used in the test execution.
target: Option<TestExecutionTarget>
Contains information about the bot used for the test execution..
api_mode: Option<TestExecutionApiMode>
Specifies whether the API mode for the test execution is streaming or non-streaming.
test_execution_modality: Option<TestExecutionModality>
Specifies whether the data used for the test execution is written or spoken.
Implementations§
source§impl TestExecutionSummary
impl TestExecutionSummary
sourcepub fn test_execution_id(&self) -> Option<&str>
pub fn test_execution_id(&self) -> Option<&str>
The unique identifier of the test execution.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time at which the test execution was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The date and time at which the test execution was last updated.
sourcepub fn test_execution_status(&self) -> Option<&TestExecutionStatus>
pub fn test_execution_status(&self) -> Option<&TestExecutionStatus>
The current status of the test execution.
sourcepub fn test_set_id(&self) -> Option<&str>
pub fn test_set_id(&self) -> Option<&str>
The unique identifier of the test set used in the test execution.
sourcepub fn test_set_name(&self) -> Option<&str>
pub fn test_set_name(&self) -> Option<&str>
The name of the test set used in the test execution.
sourcepub fn target(&self) -> Option<&TestExecutionTarget>
pub fn target(&self) -> Option<&TestExecutionTarget>
Contains information about the bot used for the test execution..
sourcepub fn api_mode(&self) -> Option<&TestExecutionApiMode>
pub fn api_mode(&self) -> Option<&TestExecutionApiMode>
Specifies whether the API mode for the test execution is streaming or non-streaming.
sourcepub fn test_execution_modality(&self) -> Option<&TestExecutionModality>
pub fn test_execution_modality(&self) -> Option<&TestExecutionModality>
Specifies whether the data used for the test execution is written or spoken.
source§impl TestExecutionSummary
impl TestExecutionSummary
sourcepub fn builder() -> TestExecutionSummaryBuilder
pub fn builder() -> TestExecutionSummaryBuilder
Creates a new builder-style object to manufacture TestExecutionSummary
.
Trait Implementations§
source§impl Clone for TestExecutionSummary
impl Clone for TestExecutionSummary
source§fn clone(&self) -> TestExecutionSummary
fn clone(&self) -> TestExecutionSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TestExecutionSummary
impl Debug for TestExecutionSummary
source§impl PartialEq for TestExecutionSummary
impl PartialEq for TestExecutionSummary
source§fn eq(&self, other: &TestExecutionSummary) -> bool
fn eq(&self, other: &TestExecutionSummary) -> bool
self
and other
values to be equal, and is used
by ==
.