Class: Aws::TimestreamQuery::Types::S3Configuration

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

Overview

Details on S3 location for error reports that result from running a query.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Name of the S3 bucket under which error reports will be created.

Returns:

  • (String)


919
920
921
922
923
924
925
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 919

class S3Configuration < Struct.new(
  :bucket_name,
  :object_key_prefix,
  :encryption_option)
  SENSITIVE = []
  include Aws::Structure
end

#encryption_optionString

Encryption at rest options for the error reports. If no encryption option is specified, Timestream will choose SSE_S3 as default.

Returns:

  • (String)


919
920
921
922
923
924
925
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 919

class S3Configuration < Struct.new(
  :bucket_name,
  :object_key_prefix,
  :encryption_option)
  SENSITIVE = []
  include Aws::Structure
end

#object_key_prefixString

Prefix for the error report key. Timestream by default adds the following prefix to the error report path.

Returns:

  • (String)


919
920
921
922
923
924
925
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 919

class S3Configuration < Struct.new(
  :bucket_name,
  :object_key_prefix,
  :encryption_option)
  SENSITIVE = []
  include Aws::Structure
end