Struct aws_sdk_athena::types::CalculationResult
source · #[non_exhaustive]pub struct CalculationResult {
pub std_out_s3_uri: Option<String>,
pub std_error_s3_uri: Option<String>,
pub result_s3_uri: Option<String>,
pub result_type: Option<String>,
}Expand description
Contains information about an application-specific calculation result.
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.std_out_s3_uri: Option<String>The Amazon S3 location of the stdout file for the calculation.
std_error_s3_uri: Option<String>The Amazon S3 location of the stderr error messages file for the calculation.
result_s3_uri: Option<String>The Amazon S3 location of the folder for the calculation results.
result_type: Option<String>The data format of the calculation result.
Implementations§
source§impl CalculationResult
impl CalculationResult
sourcepub fn std_out_s3_uri(&self) -> Option<&str>
pub fn std_out_s3_uri(&self) -> Option<&str>
The Amazon S3 location of the stdout file for the calculation.
sourcepub fn std_error_s3_uri(&self) -> Option<&str>
pub fn std_error_s3_uri(&self) -> Option<&str>
The Amazon S3 location of the stderr error messages file for the calculation.
sourcepub fn result_s3_uri(&self) -> Option<&str>
pub fn result_s3_uri(&self) -> Option<&str>
The Amazon S3 location of the folder for the calculation results.
sourcepub fn result_type(&self) -> Option<&str>
pub fn result_type(&self) -> Option<&str>
The data format of the calculation result.
source§impl CalculationResult
impl CalculationResult
sourcepub fn builder() -> CalculationResultBuilder
pub fn builder() -> CalculationResultBuilder
Creates a new builder-style object to manufacture CalculationResult.
Trait Implementations§
source§impl Clone for CalculationResult
impl Clone for CalculationResult
source§fn clone(&self) -> CalculationResult
fn clone(&self) -> CalculationResult
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 Debug for CalculationResult
impl Debug for CalculationResult
source§impl PartialEq for CalculationResult
impl PartialEq for CalculationResult
source§fn eq(&self, other: &CalculationResult) -> bool
fn eq(&self, other: &CalculationResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CalculationResult
Auto Trait Implementations§
impl RefUnwindSafe for CalculationResult
impl Send for CalculationResult
impl Sync for CalculationResult
impl Unpin for CalculationResult
impl UnwindSafe for CalculationResult
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