Class: Aws::Athena::Types::ManagedLoggingConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb

Overview

Configuration settings for delivering logs to Amazon S3 buckets.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Enables mamanged log persistence.

Returns:

  • (Boolean)


3183
3184
3185
3186
3187
3188
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3183

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

#kms_keyString

The KMS key ARN to encrypt the logs stored in managed log persistence.

Returns:

  • (String)


3183
3184
3185
3186
3187
3188
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3183

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