#[non_exhaustive]pub struct UpdateTestSetOutput {
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>,
/* 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_set_id: Option<String>
The test set Id for which update test operation to be performed.
test_set_name: Option<String>
The test set name for the updated test set.
description: Option<String>
The test set description for the updated test set.
modality: Option<TestSetModality>
Indicates whether audio or text is used for the updated test set.
status: Option<TestSetStatus>
The status for the updated test set.
role_arn: Option<String>
The roleARN used for any operation in the test set to access resources in the Amazon Web Services account.
num_turns: Option<i32>
The number of conversation turns from the updated test set.
storage_location: Option<TestSetStorageLocation>
The Amazon S3 storage location for the updated test set.
creation_date_time: Option<DateTime>
The creation date and time for the updated test set.
last_updated_date_time: Option<DateTime>
The date and time of the last update for the updated test set.
Implementations§
source§impl UpdateTestSetOutput
impl UpdateTestSetOutput
sourcepub fn test_set_id(&self) -> Option<&str>
pub fn test_set_id(&self) -> Option<&str>
The test set Id for which update test operation to be performed.
sourcepub fn test_set_name(&self) -> Option<&str>
pub fn test_set_name(&self) -> Option<&str>
The test set name for the updated test set.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The test set description for the updated test set.
sourcepub fn modality(&self) -> Option<&TestSetModality>
pub fn modality(&self) -> Option<&TestSetModality>
Indicates whether audio or text is used for the updated test set.
sourcepub fn status(&self) -> Option<&TestSetStatus>
pub fn status(&self) -> Option<&TestSetStatus>
The status for the updated test set.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The roleARN used for any operation in the test set to access resources in the Amazon Web Services account.
sourcepub fn num_turns(&self) -> Option<i32>
pub fn num_turns(&self) -> Option<i32>
The number of conversation turns from the updated test set.
sourcepub fn storage_location(&self) -> Option<&TestSetStorageLocation>
pub fn storage_location(&self) -> Option<&TestSetStorageLocation>
The Amazon S3 storage location for the updated test set.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The creation date and time for the updated test set.
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 updated test set.
source§impl UpdateTestSetOutput
impl UpdateTestSetOutput
sourcepub fn builder() -> UpdateTestSetOutputBuilder
pub fn builder() -> UpdateTestSetOutputBuilder
Creates a new builder-style object to manufacture UpdateTestSetOutput
.
Trait Implementations§
source§impl Clone for UpdateTestSetOutput
impl Clone for UpdateTestSetOutput
source§fn clone(&self) -> UpdateTestSetOutput
fn clone(&self) -> UpdateTestSetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateTestSetOutput
impl Debug for UpdateTestSetOutput
source§impl PartialEq for UpdateTestSetOutput
impl PartialEq for UpdateTestSetOutput
source§fn eq(&self, other: &UpdateTestSetOutput) -> bool
fn eq(&self, other: &UpdateTestSetOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateTestSetOutput
impl RequestId for UpdateTestSetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for UpdateTestSetOutput
Auto Trait Implementations§
impl Freeze for UpdateTestSetOutput
impl RefUnwindSafe for UpdateTestSetOutput
impl Send for UpdateTestSetOutput
impl Sync for UpdateTestSetOutput
impl Unpin for UpdateTestSetOutput
impl UnwindSafe for UpdateTestSetOutput
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> 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