Class: Aws::Athena::Types::ResultReuseByAgeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ResultReuseByAgeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Specifies whether previous query results are reused, and if so, their maximum age.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
True if previous query results can be reused when the query is run; otherwise, false.
-
#max_age_in_minutes ⇒ Integer
Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse.
Instance Attribute Details
#enabled ⇒ Boolean
True if previous query results can be reused when the query is run; otherwise, false. The default is false.
3724 3725 3726 3727 3728 3729 |
# File 'lib/aws-sdk-athena/types.rb', line 3724 class ResultReuseByAgeConfiguration < Struct.new( :enabled, :max_age_in_minutes) SENSITIVE = [] include Aws::Structure end |
#max_age_in_minutes ⇒ Integer
Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.
3724 3725 3726 3727 3728 3729 |
# File 'lib/aws-sdk-athena/types.rb', line 3724 class ResultReuseByAgeConfiguration < Struct.new( :enabled, :max_age_in_minutes) SENSITIVE = [] include Aws::Structure end |