Struct aws_sdk_athena::types::builders::CalculationResultBuilder
source · #[non_exhaustive]pub struct CalculationResultBuilder { /* private fields */ }Expand description
A builder for CalculationResult.
Implementations§
source§impl CalculationResultBuilder
impl CalculationResultBuilder
sourcepub fn std_out_s3_uri(self, input: impl Into<String>) -> Self
pub fn std_out_s3_uri(self, input: impl Into<String>) -> Self
The Amazon S3 location of the stdout file for the calculation.
sourcepub fn set_std_out_s3_uri(self, input: Option<String>) -> Self
pub fn set_std_out_s3_uri(self, input: Option<String>) -> Self
The Amazon S3 location of the stdout file for the calculation.
sourcepub fn get_std_out_s3_uri(&self) -> &Option<String>
pub fn get_std_out_s3_uri(&self) -> &Option<String>
The Amazon S3 location of the stdout file for the calculation.
sourcepub fn std_error_s3_uri(self, input: impl Into<String>) -> Self
pub fn std_error_s3_uri(self, input: impl Into<String>) -> Self
The Amazon S3 location of the stderr error messages file for the calculation.
sourcepub fn set_std_error_s3_uri(self, input: Option<String>) -> Self
pub fn set_std_error_s3_uri(self, input: Option<String>) -> Self
The Amazon S3 location of the stderr error messages file for the calculation.
sourcepub fn get_std_error_s3_uri(&self) -> &Option<String>
pub fn get_std_error_s3_uri(&self) -> &Option<String>
The Amazon S3 location of the stderr error messages file for the calculation.
sourcepub fn result_s3_uri(self, input: impl Into<String>) -> Self
pub fn result_s3_uri(self, input: impl Into<String>) -> Self
The Amazon S3 location of the folder for the calculation results.
sourcepub fn set_result_s3_uri(self, input: Option<String>) -> Self
pub fn set_result_s3_uri(self, input: Option<String>) -> Self
The Amazon S3 location of the folder for the calculation results.
sourcepub fn get_result_s3_uri(&self) -> &Option<String>
pub fn get_result_s3_uri(&self) -> &Option<String>
The Amazon S3 location of the folder for the calculation results.
sourcepub fn result_type(self, input: impl Into<String>) -> Self
pub fn result_type(self, input: impl Into<String>) -> Self
The data format of the calculation result.
sourcepub fn set_result_type(self, input: Option<String>) -> Self
pub fn set_result_type(self, input: Option<String>) -> Self
The data format of the calculation result.
sourcepub fn get_result_type(&self) -> &Option<String>
pub fn get_result_type(&self) -> &Option<String>
The data format of the calculation result.
sourcepub fn build(self) -> CalculationResult
pub fn build(self) -> CalculationResult
Consumes the builder and constructs a CalculationResult.
Trait Implementations§
source§impl Clone for CalculationResultBuilder
impl Clone for CalculationResultBuilder
source§fn clone(&self) -> CalculationResultBuilder
fn clone(&self) -> CalculationResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CalculationResultBuilder
impl Debug for CalculationResultBuilder
source§impl Default for CalculationResultBuilder
impl Default for CalculationResultBuilder
source§fn default() -> CalculationResultBuilder
fn default() -> CalculationResultBuilder
source§impl PartialEq for CalculationResultBuilder
impl PartialEq for CalculationResultBuilder
source§fn eq(&self, other: &CalculationResultBuilder) -> bool
fn eq(&self, other: &CalculationResultBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CalculationResultBuilder
Auto Trait Implementations§
impl Freeze for CalculationResultBuilder
impl RefUnwindSafe for CalculationResultBuilder
impl Send for CalculationResultBuilder
impl Sync for CalculationResultBuilder
impl Unpin for CalculationResultBuilder
impl UnwindSafe for CalculationResultBuilder
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