interface InfluxDBDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnTopicRuleDestination_InfluxDBDestinationPropertiesProperty |
Java | software.amazon.awscdk.services.iot.CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty |
Python | aws_cdk.aws_iot.CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnTopicRuleDestination » InfluxDBDestinationPropertiesProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const influxDBDestinationPropertiesProperty: iot.CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty = {
endpoint: 'endpoint',
influxDbVersion: 'influxDbVersion',
secretId: 'secretId',
// the properties below are optional
secretKey: 'secretKey',
secretType: 'secretType',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | The endpoint URL of the InfluxDB database. |
| influx | string | The version of the InfluxDB database (for example, V2 or V3). |
| secret | string | The ARN or name of the Secrets Manager secret containing the InfluxDB API token. |
| secret | string | The key name within the secret that contains the InfluxDB token. |
| secret | string | The type of the secret value (SecretString or SecretBinary). |
endpoint
Type:
string
The endpoint URL of the InfluxDB database.
influxDbVersion
Type:
string
The version of the InfluxDB database (for example, V2 or V3).
secretId
Type:
string
The ARN or name of the Secrets Manager secret containing the InfluxDB API token.
secretKey?
Type:
string
(optional)
The key name within the secret that contains the InfluxDB token.
secretType?
Type:
string
(optional)
The type of the secret value (SecretString or SecretBinary).

.NET
Go
Java
Python
TypeScript