interface LogDeliveryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Timestream.CfnInfluxDBCluster.LogDeliveryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstimestream#CfnInfluxDBCluster_LogDeliveryConfigurationProperty |
Java | software.amazon.awscdk.services.timestream.CfnInfluxDBCluster.LogDeliveryConfigurationProperty |
Python | aws_cdk.aws_timestream.CfnInfluxDBCluster.LogDeliveryConfigurationProperty |
TypeScript | aws-cdk-lib » aws_timestream » CfnInfluxDBCluster » LogDeliveryConfigurationProperty |
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 logDeliveryConfigurationProperty: timestream.CfnInfluxDBCluster.LogDeliveryConfigurationProperty = {
s3Configuration: {
bucketName: 'bucketName',
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | S3 configuration for sending logs to customer account from the InfluxDB cluster. |
s3Configuration
Type:
IResolvable | S3
S3 configuration for sending logs to customer account from the InfluxDB cluster.

.NET
Go
Java
Python
TypeScript