Interface CfnCampaign.SignalInformationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.SignalInformationProperty.Jsii$Proxy
- Enclosing class:
- CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.SignalInformationProperty
extends software.amazon.jsii.JsiiSerializable
Information about a signal.
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.iotfleetwise.*;
SignalInformationProperty signalInformationProperty = SignalInformationProperty.builder()
.name("name")
// the properties below are optional
.maxSampleCount(123)
.minimumSamplingIntervalMs(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.SignalInformationPropertystatic final classAn implementation forCfnCampaign.SignalInformationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the signal. -
getMaxSampleCount
(Optional) The maximum number of samples to collect. -
getMinimumSamplingIntervalMs
(Optional) The minimum duration of time (in milliseconds) between two triggering events to collect data.If a signal changes often, you might want to collect data at a slower rate.
-
builder
-