Class: Aws::Athena::Types::S3LoggingConfiguration

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 S3 log delivery.

Returns:

  • (Boolean)


4292
4293
4294
4295
4296
4297
4298
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4292

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

#kms_keyString

The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.

Returns:

  • (String)


4292
4293
4294
4295
4296
4297
4298
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4292

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

#log_locationString

The Amazon S3 destination URI for log publishing.

Returns:

  • (String)


4292
4293
4294
4295
4296
4297
4298
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4292

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