ScheduledQueryErrorReportConfigurationS3Configuration constructor

const ScheduledQueryErrorReportConfigurationS3Configuration({
  1. required Input<String> bucketName,
  2. Input<String?>? encryptionOption,
  3. Input<String?>? objectKeyPrefix,
})

Creates a new ScheduledQueryErrorReportConfigurationS3Configuration. bucketName Name of the S3 bucket under which error reports will be created. encryptionOption Encryption at rest options for the error reports. If no encryption option is specified, Timestream will choose SSE_S3 as default. Valid values are SSE_S3, SSE_KMS. objectKeyPrefix Prefix for the error report key.

Implementation

const ScheduledQueryErrorReportConfigurationS3Configuration({
  required this.bucketName,
  this.encryptionOption,
  this.objectKeyPrefix,
});