Class: Aws::TimestreamQuery::Types::ErrorReportConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::ErrorReportConfiguration
- Defined in:
- gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb
Overview
Note:
When making an API call, you may pass ErrorReportConfiguration data as a hash:
{
s3_configuration: { # required
bucket_name: "S3BucketName", # required
object_key_prefix: "S3ObjectKeyPrefix",
encryption_option: "SSE_S3", # accepts SSE_S3, SSE_KMS
},
}
Configuration required for error reporting.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_configuration ⇒ Types::S3Configuration
The S3 configuration for the error reports.
Instance Attribute Details
#s3_configuration ⇒ Types::S3Configuration
The S3 configuration for the error reports.
441 442 443 444 445 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 441 class ErrorReportConfiguration < Struct.new( :s3_configuration) SENSITIVE = [] include Aws::Structure end |