Interface CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnTopicRuleDestinationPropsMixin
@Stability(Stable)
public static interface CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iot.*;
InfluxDBDestinationPropertiesProperty influxDBDestinationPropertiesProperty = InfluxDBDestinationPropertiesProperty.builder()
.endpoint("endpoint")
.influxDbVersion("influxDbVersion")
.secretId("secretId")
.secretKey("secretKey")
.secretType("secretType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe endpoint URL of the InfluxDB database.default StringThe version of the InfluxDB database (for example, V2 or V3).default StringThe ARN or name of the Secrets Manager secret containing the InfluxDB API token.default StringThe key name within the secret that contains the InfluxDB token.default StringThe type of the secret value (SecretString or SecretBinary).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpoint
The endpoint URL of the InfluxDB database.- See Also:
-
getInfluxDbVersion
The version of the InfluxDB database (for example, V2 or V3).- See Also:
-
getSecretId
The ARN or name of the Secrets Manager secret containing the InfluxDB API token.- See Also:
-
getSecretKey
The key name within the secret that contains the InfluxDB token.- See Also:
-
getSecretType
The type of the secret value (SecretString or SecretBinary).- See Also:
-
builder
@Stability(Stable) static CfnTopicRuleDestinationPropsMixin.InfluxDBDestinationPropertiesProperty.Builder builder()
-