Class: Aws::Athena::Types::CalculationResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::CalculationResult
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Contains information about an application-specific calculation result.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#result_s3_uri ⇒ String
The Amazon S3 location of the folder for the calculation results.
-
#result_type ⇒ String
The data format of the calculation result.
-
#std_error_s3_uri ⇒ String
The Amazon S3 location of the
stderr
error messages file for the calculation. -
#std_out_s3_uri ⇒ String
The Amazon S3 location of the
stdout
file for the calculation.
Instance Attribute Details
#result_s3_uri ⇒ String
The Amazon S3 location of the folder for the calculation results.
249 250 251 252 253 254 255 256 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 249 class CalculationResult < Struct.new( :std_out_s3_uri, :std_error_s3_uri, :result_s3_uri, :result_type) SENSITIVE = [] include Aws::Structure end |
#result_type ⇒ String
The data format of the calculation result.
249 250 251 252 253 254 255 256 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 249 class CalculationResult < Struct.new( :std_out_s3_uri, :std_error_s3_uri, :result_s3_uri, :result_type) SENSITIVE = [] include Aws::Structure end |
#std_error_s3_uri ⇒ String
The Amazon S3 location of the stderr
error messages file for the
calculation.
249 250 251 252 253 254 255 256 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 249 class CalculationResult < Struct.new( :std_out_s3_uri, :std_error_s3_uri, :result_s3_uri, :result_type) SENSITIVE = [] include Aws::Structure end |
#std_out_s3_uri ⇒ String
The Amazon S3 location of the stdout
file for the calculation.
249 250 251 252 253 254 255 256 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 249 class CalculationResult < Struct.new( :std_out_s3_uri, :std_error_s3_uri, :result_s3_uri, :result_type) SENSITIVE = [] include Aws::Structure end |