interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnInfluxDBClusterPropsMixin.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnInfluxDBClusterPropsMixin_S3ConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnInfluxDBClusterPropsMixin.S3ConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnInfluxDBClusterPropsMixin.S3ConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnInfluxDBClusterPropsMixin » S3ConfigurationProperty |
S3 configuration for sending logs to customer account from the InfluxDB cluster.
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 s3ConfigurationProperty: timestream_mixins.CfnInfluxDBClusterPropsMixin.S3ConfigurationProperty = {
bucketName: 'bucketName',
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The bucket name for logs to be sent from the InfluxDB cluster. |
| enabled? | boolean | IResolvable | Specifies whether logging to customer specified bucket is enabled. |
bucketName?
Type:
string
(optional)
The bucket name for logs to be sent from the InfluxDB cluster.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether logging to customer specified bucket is enabled.

.NET
Go
Java
Python
TypeScript