interface CfnInfluxDBClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnInfluxDBClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnInfluxDBClusterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnInfluxDBClusterMixinProps |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnInfluxDBClusterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnInfluxDBClusterMixinProps |
Properties for CfnInfluxDBClusterPropsMixin.
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 cfnInfluxDBClusterMixinProps: timestream_mixins.CfnInfluxDBClusterMixinProps = {
allocatedStorage: 123,
bucket: 'bucket',
dbInstanceType: 'dbInstanceType',
dbParameterGroupIdentifier: 'dbParameterGroupIdentifier',
dbStorageType: 'dbStorageType',
deploymentType: 'deploymentType',
failoverMode: 'failoverMode',
logDeliveryConfiguration: {
s3Configuration: {
bucketName: 'bucketName',
enabled: false,
},
},
name: 'name',
networkType: 'networkType',
organization: 'organization',
password: 'password',
port: 123,
publiclyAccessible: false,
tags: [{
key: 'key',
value: 'value',
}],
username: 'username',
vpcSecurityGroupIds: ['vpcSecurityGroupIds'],
vpcSubnetIds: ['vpcSubnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allocated | number | The allocated storage for the InfluxDB cluster. |
| bucket? | string | The bucket for the InfluxDB cluster. |
| db | string | The compute instance of the InfluxDB cluster. |
| db | string | The name of an existing InfluxDB parameter group. |
| db | string | The storage type of the InfluxDB cluster. |
| deployment | string | Deployment type of the InfluxDB cluster. |
| failover | string | Failover mode of the InfluxDB cluster. |
| log | IResolvable | Log | Configuration for sending logs to customer account from the InfluxDB cluster. |
| name? | string | The unique name that is associated with the InfluxDB cluster. |
| network | string | Network type of the InfluxDB cluster. |
| organization? | string | The organization for the InfluxDB cluster. |
| password? | string | The password for the InfluxDB cluster. |
| port? | number | The port number on which InfluxDB accepts connections. |
| publicly | boolean | IResolvable | Attach a public IP to the customer ENI. |
| tags? | Cfn[] | An arbitrary set of tags (key-value pairs) for this DB cluster. |
| username? | string | The username for the InfluxDB cluster. |
| vpc | string[] | A list of Amazon EC2 VPC security groups to associate with this InfluxDB cluster. |
| vpc | string[] | A list of EC2 subnet IDs for this InfluxDB cluster. |
allocatedStorage?
Type:
number
(optional)
The allocated storage for the InfluxDB cluster.
bucket?
Type:
string
(optional)
The bucket for the InfluxDB cluster.
dbInstanceType?
Type:
string
(optional)
The compute instance of the InfluxDB cluster.
dbParameterGroupIdentifier?
Type:
string
(optional)
The name of an existing InfluxDB parameter group.
dbStorageType?
Type:
string
(optional)
The storage type of the InfluxDB cluster.
deploymentType?
Type:
string
(optional)
Deployment type of the InfluxDB cluster.
failoverMode?
Type:
string
(optional)
Failover mode of the InfluxDB cluster.
logDeliveryConfiguration?
Type:
IResolvable | Log
(optional)
Configuration for sending logs to customer account from the InfluxDB cluster.
name?
Type:
string
(optional)
The unique name that is associated with the InfluxDB cluster.
networkType?
Type:
string
(optional)
Network type of the InfluxDB cluster.
organization?
Type:
string
(optional)
The organization for the InfluxDB cluster.
password?
Type:
string
(optional)
The password for the InfluxDB cluster.
port?
Type:
number
(optional)
The port number on which InfluxDB accepts connections.
publiclyAccessible?
Type:
boolean | IResolvable
(optional, default: false)
Attach a public IP to the customer ENI.
tags?
Type:
Cfn[]
(optional)
An arbitrary set of tags (key-value pairs) for this DB cluster.
username?
Type:
string
(optional)
The username for the InfluxDB cluster.
vpcSecurityGroupIds?
Type:
string[]
(optional)
A list of Amazon EC2 VPC security groups to associate with this InfluxDB cluster.
vpcSubnetIds?
Type:
string[]
(optional)
A list of EC2 subnet IDs for this InfluxDB cluster.

.NET
Go
Java
Python
TypeScript