interface InfluxDBDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnTopicRuleDestinationPropsMixin_InfluxDBDestinationPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnTopicRuleDestinationPropsMixin » 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/cfn-property-mixins';
const influxDBDestinationPropertiesProperty: iot.CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty = {
endpoint: 'endpoint',
influxDbVersion: 'influxDbVersion',
secretId: 'secretId',
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
(optional)
The endpoint URL of the InfluxDB database.
influxDbVersion?
Type:
string
(optional)
The version of the InfluxDB database (for example, V2 or V3).
secretId?
Type:
string
(optional)
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