Struct aws_sdk_lexmodelsv2::operation::create_test_set_discrepancy_report::CreateTestSetDiscrepancyReportOutput
source · #[non_exhaustive]pub struct CreateTestSetDiscrepancyReportOutput {
pub test_set_discrepancy_report_id: Option<String>,
pub creation_date_time: Option<DateTime>,
pub test_set_id: Option<String>,
pub target: Option<TestSetDiscrepancyReportResourceTarget>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.test_set_discrepancy_report_id: Option<String>
The unique identifier of the test set discrepancy report to describe.
creation_date_time: Option<DateTime>
The creation date and time for the test set discrepancy report.
test_set_id: Option<String>
The test set Id for the test set discrepancy report.
target: Option<TestSetDiscrepancyReportResourceTarget>
The target bot for the test set discrepancy report.
Implementations§
source§impl CreateTestSetDiscrepancyReportOutput
impl CreateTestSetDiscrepancyReportOutput
sourcepub fn test_set_discrepancy_report_id(&self) -> Option<&str>
pub fn test_set_discrepancy_report_id(&self) -> Option<&str>
The unique identifier of the test set discrepancy report to describe.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The creation date and time for the test set discrepancy report.
sourcepub fn test_set_id(&self) -> Option<&str>
pub fn test_set_id(&self) -> Option<&str>
The test set Id for the test set discrepancy report.
sourcepub fn target(&self) -> Option<&TestSetDiscrepancyReportResourceTarget>
pub fn target(&self) -> Option<&TestSetDiscrepancyReportResourceTarget>
The target bot for the test set discrepancy report.
source§impl CreateTestSetDiscrepancyReportOutput
impl CreateTestSetDiscrepancyReportOutput
sourcepub fn builder() -> CreateTestSetDiscrepancyReportOutputBuilder
pub fn builder() -> CreateTestSetDiscrepancyReportOutputBuilder
Creates a new builder-style object to manufacture CreateTestSetDiscrepancyReportOutput
.
Trait Implementations§
source§impl Clone for CreateTestSetDiscrepancyReportOutput
impl Clone for CreateTestSetDiscrepancyReportOutput
source§fn clone(&self) -> CreateTestSetDiscrepancyReportOutput
fn clone(&self) -> CreateTestSetDiscrepancyReportOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for CreateTestSetDiscrepancyReportOutput
impl PartialEq for CreateTestSetDiscrepancyReportOutput
source§fn eq(&self, other: &CreateTestSetDiscrepancyReportOutput) -> bool
fn eq(&self, other: &CreateTestSetDiscrepancyReportOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateTestSetDiscrepancyReportOutput
impl RequestId for CreateTestSetDiscrepancyReportOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateTestSetDiscrepancyReportOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateTestSetDiscrepancyReportOutput
impl Send for CreateTestSetDiscrepancyReportOutput
impl Sync for CreateTestSetDiscrepancyReportOutput
impl Unpin for CreateTestSetDiscrepancyReportOutput
impl UnwindSafe for CreateTestSetDiscrepancyReportOutput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.