#[non_exhaustive]pub struct GetCalculationExecutionOutput { /* private fields */ }
Implementations§
source§impl GetCalculationExecutionOutput
impl GetCalculationExecutionOutput
sourcepub fn calculation_execution_id(&self) -> Option<&str>
pub fn calculation_execution_id(&self) -> Option<&str>
The calculation execution UUID.
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The session ID that the calculation ran in.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the calculation execution.
sourcepub fn working_directory(&self) -> Option<&str>
pub fn working_directory(&self) -> Option<&str>
The Amazon S3 location in which calculation results are stored.
sourcepub fn status(&self) -> Option<&CalculationStatus>
pub fn status(&self) -> Option<&CalculationStatus>
Contains information about the status of the calculation.
sourcepub fn statistics(&self) -> Option<&CalculationStatistics>
pub fn statistics(&self) -> Option<&CalculationStatistics>
Contains information about the data processing unit (DPU) execution time and progress. This field is populated only when statistics are available.
sourcepub fn result(&self) -> Option<&CalculationResult>
pub fn result(&self) -> Option<&CalculationResult>
Contains result information. This field is populated only if the calculation is completed.
source§impl GetCalculationExecutionOutput
impl GetCalculationExecutionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetCalculationExecutionOutput
.
Trait Implementations§
source§impl Clone for GetCalculationExecutionOutput
impl Clone for GetCalculationExecutionOutput
source§fn clone(&self) -> GetCalculationExecutionOutput
fn clone(&self) -> GetCalculationExecutionOutput
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<GetCalculationExecutionOutput> for GetCalculationExecutionOutput
impl PartialEq<GetCalculationExecutionOutput> for GetCalculationExecutionOutput
source§fn eq(&self, other: &GetCalculationExecutionOutput) -> bool
fn eq(&self, other: &GetCalculationExecutionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.