interface LogDeliveryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnInfluxDBClusterPropsMixin.LogDeliveryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnInfluxDBClusterPropsMixin_LogDeliveryConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnInfluxDBClusterPropsMixin.LogDeliveryConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnInfluxDBClusterPropsMixin.LogDeliveryConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » 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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const logDeliveryConfigurationProperty: timestream.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