interface ErrorReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnScheduledQueryPropsMixin_ErrorReportConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnScheduledQueryPropsMixin » 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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const errorReportConfigurationProperty: timestream_mixins.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty = {
s3Configuration: {
bucketName: 'bucketName',
encryptionOption: 'encryptionOption',
objectKeyPrefix: 'objectKeyPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The S3 configuration for the error reports. |
s3Configuration?
Type:
IResolvable | S3
(optional)
The S3 configuration for the error reports.

.NET
Go
Java
Python
TypeScript