interface ErrorReportConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Timestream.CfnScheduledQuery.ErrorReportConfigurationProperty | 
|  Java | software.amazon.awscdk.services.timestream.CfnScheduledQuery.ErrorReportConfigurationProperty | 
|  Python | aws_cdk.aws_timestream.CfnScheduledQuery.ErrorReportConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-timestream»CfnScheduledQuery»ErrorReportConfigurationProperty | 
Configuration required for error reporting.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as timestream from '@aws-cdk/aws-timestream';
const errorReportConfigurationProperty: timestream.CfnScheduledQuery.ErrorReportConfigurationProperty = {
  s3Configuration: {
    bucketName: 'bucketName',
    // the properties below are optional
    encryptionOption: 'encryptionOption',
    objectKeyPrefix: 'objectKeyPrefix',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| s3 | IResolvable | S3 | The S3 configuration for the error reports. | 
s3Configuration
Type:
IResolvable | S3
The S3 configuration for the error reports.
