interface LogDeliveryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnInfluxDBInstancePropsMixin.LogDeliveryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnInfluxDBInstancePropsMixin_LogDeliveryConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnInfluxDBInstancePropsMixin.LogDeliveryConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnInfluxDBInstancePropsMixin.LogDeliveryConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnInfluxDBInstancePropsMixin » LogDeliveryConfigurationProperty |
Configuration for sending InfluxDB engine logs to a specified S3 bucket.
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.CfnInfluxDBInstancePropsMixin.LogDeliveryConfigurationProperty = {
s3Configuration: {
bucketName: 'bucketName',
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Configuration for S3 bucket log delivery. |
s3Configuration?
Type:
IResolvable | S3
(optional)
Configuration for S3 bucket log delivery.

.NET
Go
Java
Python
TypeScript