interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_S3ConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.S3ConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.S3ConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnScheduledQueryPropsMixin » S3ConfigurationProperty |
Details on S3 location for error reports that result from running a query.
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 s3ConfigurationProperty: timestream.CfnScheduledQueryPropsMixin.S3ConfigurationProperty = {
bucketName: 'bucketName',
encryptionOption: 'encryptionOption',
objectKeyPrefix: 'objectKeyPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | IBucket | Name of the S3 bucket under which error reports will be created. |
| encryption | string | Encryption at rest options for the error reports. |
| object | string | Prefix for the error report key. |
bucketName?
Type:
string | IBucket
(optional)
Name of the S3 bucket under which error reports will be created.
encryptionOption?
Type:
string
(optional)
Encryption at rest options for the error reports.
If no encryption option is specified, Timestream will choose SSE_S3 as default.
objectKeyPrefix?
Type:
string
(optional)
Prefix for the error report key.
Timestream by default adds the following prefix to the error report path.

.NET
Go
Java
Python
TypeScript