interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnInfluxDBInstancePropsMixin.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnInfluxDBInstancePropsMixin_S3ConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnInfluxDBInstancePropsMixin.S3ConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnInfluxDBInstancePropsMixin.S3ConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnInfluxDBInstancePropsMixin » S3ConfigurationProperty |
Configuration for S3 bucket log delivery.
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 s3ConfigurationProperty: timestream.CfnInfluxDBInstancePropsMixin.S3ConfigurationProperty = {
bucketName: 'bucketName',
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The bucket name of the customer S3 bucket. |
| enabled? | boolean | IResolvable | Indicates whether log delivery to the S3 bucket is enabled. |
bucketName?
Type:
string
(optional)
The bucket name of the customer S3 bucket.
enabled?
Type:
boolean | IResolvable
(optional)
Indicates whether log delivery to the S3 bucket is enabled.

.NET
Go
Java
Python
TypeScript