interface LogDeliveryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnInfluxDBClusterPropsMixin.LogDeliveryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnInfluxDBClusterPropsMixin_LogDeliveryConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnInfluxDBClusterPropsMixin.LogDeliveryConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnInfluxDBClusterPropsMixin.LogDeliveryConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnInfluxDBClusterPropsMixin » 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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const logDeliveryConfigurationProperty: timestream_mixins.CfnInfluxDBClusterPropsMixin.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
(optional)
S3 configuration for sending logs to customer account from the InfluxDB cluster.

.NET
Go
Java
Python
TypeScript