Interface CfnCampaignPropsMixin.ConditionBasedCollectionSchemeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaignPropsMixin.ConditionBasedCollectionSchemeProperty.Jsii$Proxy
- Enclosing class:
CfnCampaignPropsMixin
@Stability(Stable)
public static interface CfnCampaignPropsMixin.ConditionBasedCollectionSchemeProperty
extends software.amazon.jsii.JsiiSerializable
Information about a collection scheme that uses a simple logical expression to recognize what data to collect.
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.iotfleetwise.*;
ConditionBasedCollectionSchemeProperty conditionBasedCollectionSchemeProperty = ConditionBasedCollectionSchemeProperty.builder()
.conditionLanguageVersion(123)
.expression("expression")
.minimumTriggerIntervalMs(123)
.triggerMode("triggerMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnCampaignPropsMixin.ConditionBasedCollectionSchemeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberSpecifies the version of the conditional expression language.default StringThe logical expression used to recognize what data to collect.default NumberThe minimum duration of time between two triggering events to collect data, in milliseconds.default StringWhether to collect data for all triggering events (ALWAYS).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionLanguageVersion
Specifies the version of the conditional expression language.- See Also:
-
getExpression
The logical expression used to recognize what data to collect.For example,
$variable.Vehicle.OutsideAirTemperature >= 105.0.- See Also:
-
getMinimumTriggerIntervalMs
The minimum duration of time between two triggering events to collect data, in milliseconds.If a signal changes often, you might want to collect data at a slower rate.
- See Also:
-
getTriggerMode
Whether to collect data for all triggering events (ALWAYS).Specify (
RISING_EDGE), or specify only when the condition first evaluates to false. For example, triggering on "AirbagDeployed"; Users aren't interested on triggering when the airbag is already exploded; they only care about the change from not deployed => deployed.- See Also:
-
builder
@Stability(Stable) static CfnCampaignPropsMixin.ConditionBasedCollectionSchemeProperty.Builder builder()
-