interface ErrorReportConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_ErrorReportConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » 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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const errorReportConfigurationProperty: timestream.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