Struct aws_sdk_athena::operation::get_calculation_execution::builders::GetCalculationExecutionOutputBuilder
source · #[non_exhaustive]pub struct GetCalculationExecutionOutputBuilder { /* private fields */ }Expand description
A builder for GetCalculationExecutionOutput.
Implementations§
source§impl GetCalculationExecutionOutputBuilder
impl GetCalculationExecutionOutputBuilder
sourcepub fn calculation_execution_id(self, input: impl Into<String>) -> Self
pub fn calculation_execution_id(self, input: impl Into<String>) -> Self
The calculation execution UUID.
sourcepub fn set_calculation_execution_id(self, input: Option<String>) -> Self
pub fn set_calculation_execution_id(self, input: Option<String>) -> Self
The calculation execution UUID.
sourcepub fn get_calculation_execution_id(&self) -> &Option<String>
pub fn get_calculation_execution_id(&self) -> &Option<String>
The calculation execution UUID.
sourcepub fn session_id(self, input: impl Into<String>) -> Self
pub fn session_id(self, input: impl Into<String>) -> Self
The session ID that the calculation ran in.
sourcepub fn set_session_id(self, input: Option<String>) -> Self
pub fn set_session_id(self, input: Option<String>) -> Self
The session ID that the calculation ran in.
sourcepub fn get_session_id(&self) -> &Option<String>
pub fn get_session_id(&self) -> &Option<String>
The session ID that the calculation ran in.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the calculation execution.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the calculation execution.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the calculation execution.
sourcepub fn working_directory(self, input: impl Into<String>) -> Self
pub fn working_directory(self, input: impl Into<String>) -> Self
The Amazon S3 location in which calculation results are stored.
sourcepub fn set_working_directory(self, input: Option<String>) -> Self
pub fn set_working_directory(self, input: Option<String>) -> Self
The Amazon S3 location in which calculation results are stored.
sourcepub fn get_working_directory(&self) -> &Option<String>
pub fn get_working_directory(&self) -> &Option<String>
The Amazon S3 location in which calculation results are stored.
sourcepub fn status(self, input: CalculationStatus) -> Self
pub fn status(self, input: CalculationStatus) -> Self
Contains information about the status of the calculation.
sourcepub fn set_status(self, input: Option<CalculationStatus>) -> Self
pub fn set_status(self, input: Option<CalculationStatus>) -> Self
Contains information about the status of the calculation.
sourcepub fn get_status(&self) -> &Option<CalculationStatus>
pub fn get_status(&self) -> &Option<CalculationStatus>
Contains information about the status of the calculation.
sourcepub fn statistics(self, input: CalculationStatistics) -> Self
pub fn statistics(self, input: CalculationStatistics) -> Self
Contains information about the data processing unit (DPU) execution time and progress. This field is populated only when statistics are available.
sourcepub fn set_statistics(self, input: Option<CalculationStatistics>) -> Self
pub fn set_statistics(self, input: Option<CalculationStatistics>) -> Self
Contains information about the data processing unit (DPU) execution time and progress. This field is populated only when statistics are available.
sourcepub fn get_statistics(&self) -> &Option<CalculationStatistics>
pub fn get_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, input: CalculationResult) -> Self
pub fn result(self, input: CalculationResult) -> Self
Contains result information. This field is populated only if the calculation is completed.
sourcepub fn set_result(self, input: Option<CalculationResult>) -> Self
pub fn set_result(self, input: Option<CalculationResult>) -> Self
Contains result information. This field is populated only if the calculation is completed.
sourcepub fn get_result(&self) -> &Option<CalculationResult>
pub fn get_result(&self) -> &Option<CalculationResult>
Contains result information. This field is populated only if the calculation is completed.
sourcepub fn build(self) -> GetCalculationExecutionOutput
pub fn build(self) -> GetCalculationExecutionOutput
Consumes the builder and constructs a GetCalculationExecutionOutput.
Trait Implementations§
source§impl Clone for GetCalculationExecutionOutputBuilder
impl Clone for GetCalculationExecutionOutputBuilder
source§fn clone(&self) -> GetCalculationExecutionOutputBuilder
fn clone(&self) -> GetCalculationExecutionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetCalculationExecutionOutputBuilder
impl Default for GetCalculationExecutionOutputBuilder
source§fn default() -> GetCalculationExecutionOutputBuilder
fn default() -> GetCalculationExecutionOutputBuilder
source§impl PartialEq for GetCalculationExecutionOutputBuilder
impl PartialEq for GetCalculationExecutionOutputBuilder
source§fn eq(&self, other: &GetCalculationExecutionOutputBuilder) -> bool
fn eq(&self, other: &GetCalculationExecutionOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetCalculationExecutionOutputBuilder
Auto Trait Implementations§
impl Freeze for GetCalculationExecutionOutputBuilder
impl RefUnwindSafe for GetCalculationExecutionOutputBuilder
impl Send for GetCalculationExecutionOutputBuilder
impl Sync for GetCalculationExecutionOutputBuilder
impl Unpin for GetCalculationExecutionOutputBuilder
impl UnwindSafe for GetCalculationExecutionOutputBuilder
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