Struct aws_sdk_lexmodelsv2::types::TestSetSummary
source · #[non_exhaustive]pub struct TestSetSummary {
pub test_set_id: Option<String>,
pub test_set_name: Option<String>,
pub description: Option<String>,
pub modality: Option<TestSetModality>,
pub status: Option<TestSetStatus>,
pub role_arn: Option<String>,
pub num_turns: Option<i32>,
pub storage_location: Option<TestSetStorageLocation>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
}
Expand description
Contains summary information about the test set.
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_set_id: Option<String>
The unique identifier of the test set.
test_set_name: Option<String>
The name of the test set.
description: Option<String>
The description of the test set.
modality: Option<TestSetModality>
Specifies whether the test set contains written or spoken data.
status: Option<TestSetStatus>
The status of the test set.
role_arn: Option<String>
The Amazon Resource Name (ARN) of an IAM role that has permission to access the test set.
num_turns: Option<i32>
The number of turns in the test set.
storage_location: Option<TestSetStorageLocation>
Contains information about the location at which the test set is stored.
creation_date_time: Option<DateTime>
The date and time at which the test set was created.
last_updated_date_time: Option<DateTime>
The date and time at which the test set was last updated.
Implementations§
source§impl TestSetSummary
impl TestSetSummary
sourcepub fn test_set_id(&self) -> Option<&str>
pub fn test_set_id(&self) -> Option<&str>
The unique identifier of the test set.
sourcepub fn test_set_name(&self) -> Option<&str>
pub fn test_set_name(&self) -> Option<&str>
The name of the test set.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the test set.
sourcepub fn modality(&self) -> Option<&TestSetModality>
pub fn modality(&self) -> Option<&TestSetModality>
Specifies whether the test set contains written or spoken data.
sourcepub fn status(&self) -> Option<&TestSetStatus>
pub fn status(&self) -> Option<&TestSetStatus>
The status of the test set.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that has permission to access the test set.
sourcepub fn storage_location(&self) -> Option<&TestSetStorageLocation>
pub fn storage_location(&self) -> Option<&TestSetStorageLocation>
Contains information about the location at which the test set is stored.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time at which the test set 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 set was last updated.
source§impl TestSetSummary
impl TestSetSummary
sourcepub fn builder() -> TestSetSummaryBuilder
pub fn builder() -> TestSetSummaryBuilder
Creates a new builder-style object to manufacture TestSetSummary
.
Trait Implementations§
source§impl Clone for TestSetSummary
impl Clone for TestSetSummary
source§fn clone(&self) -> TestSetSummary
fn clone(&self) -> TestSetSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TestSetSummary
impl Debug for TestSetSummary
source§impl PartialEq for TestSetSummary
impl PartialEq for TestSetSummary
source§fn eq(&self, other: &TestSetSummary) -> bool
fn eq(&self, other: &TestSetSummary) -> bool
self
and other
values to be equal, and is used
by ==
.