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