Class: Aws::TimestreamQuery::Types::S3Configuration
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::S3Configuration
- Includes:
- Structure
- Defined in:
- 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
-
#bucket_name ⇒ String
Name of the S3 bucket under which error reports will be created.
-
#encryption_option ⇒ String
Encryption at rest options for the error reports.
-
#object_key_prefix ⇒ String
Prefix for the error report key.
Instance Attribute Details
#bucket_name ⇒ String
Name of the S3 bucket under which error reports will be created.
952 953 954 955 956 957 958 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 952 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option) SENSITIVE = [] include Aws::Structure end |
#encryption_option ⇒ String
Encryption at rest options for the error reports. If no encryption option is specified, Timestream will choose SSE_S3 as default.
952 953 954 955 956 957 958 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 952 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option) SENSITIVE = [] include Aws::Structure end |
#object_key_prefix ⇒ String
Prefix for the error report key. Timestream by default adds the following prefix to the error report path.
952 953 954 955 956 957 958 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 952 class S3Configuration < Struct.new( :bucket_name, :object_key_prefix, :encryption_option) SENSITIVE = [] include Aws::Structure end |