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.
3919 3920 3921 3922 3923 3924 |
# File 'lib/aws-sdk-athena/types.rb', line 3919 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.
3919 3920 3921 3922 3923 3924 |
# File 'lib/aws-sdk-athena/types.rb', line 3919 class ResultReuseByAgeConfiguration < Struct.new( :enabled, :max_age_in_minutes) SENSITIVE = [] include Aws::Structure end |