interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Timestream.CfnInfluxDBCluster.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstimestream#CfnInfluxDBCluster_S3ConfigurationProperty |
Java | software.amazon.awscdk.services.timestream.CfnInfluxDBCluster.S3ConfigurationProperty |
Python | aws_cdk.aws_timestream.CfnInfluxDBCluster.S3ConfigurationProperty |
TypeScript | aws-cdk-lib » aws_timestream » CfnInfluxDBCluster » 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 { aws_timestream as timestream } from 'aws-cdk-lib';
const s3ConfigurationProperty: timestream.CfnInfluxDBCluster.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
The bucket name for logs to be sent from the InfluxDB cluster.
enabled
Type:
boolean | IResolvable
Specifies whether logging to customer specified bucket is enabled.

.NET
Go
Java
Python
TypeScript