Class: Aws::Athena::Types::ResultReuseByAgeConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-athena/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

Instance Attribute Details

#enabledBoolean

True if previous query results can be reused when the query is run; otherwise, false. The default is false.

Returns:

  • (Boolean)


3734
3735
3736
3737
3738
3739
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3734

class ResultReuseByAgeConfiguration < Struct.new(
  :enabled,
  :max_age_in_minutes)
  SENSITIVE = []
  include Aws::Structure
end

#max_age_in_minutesInteger

Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.

Returns:

  • (Integer)


3734
3735
3736
3737
3738
3739
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3734

class ResultReuseByAgeConfiguration < Struct.new(
  :enabled,
  :max_age_in_minutes)
  SENSITIVE = []
  include Aws::Structure
end