Class: Aws::Athena::Types::ResultReuseInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ResultReuseInformation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Contains information about whether the result of a previous query was reused.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reused_previous_result ⇒ Boolean
True if a previous query result was reused; false if the result was generated from a new run of the query.
Instance Attribute Details
#reused_previous_result ⇒ Boolean
True if a previous query result was reused; false if the result was generated from a new run of the query.
3756 3757 3758 3759 3760 |
# File 'lib/aws-sdk-athena/types.rb', line 3756 class ResultReuseInformation < Struct.new( :reused_previous_result) SENSITIVE = [] include Aws::Structure end |