Interface CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnTopicRuleDestination
@Stability(Stable)
public static interface CfnTopicRuleDestination.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.services.iot.*;
InfluxDBDestinationPropertiesProperty influxDBDestinationPropertiesProperty = InfluxDBDestinationPropertiesProperty.builder()
.endpoint("endpoint")
.influxDbVersion("influxDbVersion")
.secretId("secretId")
// the properties below are optional
.secretKey("secretKey")
.secretType("secretType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The endpoint URL of the InfluxDB database.The version of the InfluxDB database (for example, V2 or V3).The 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 CfnTopicRuleDestination.InfluxDBDestinationPropertiesProperty.Builder builder()
-