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 .dataPartitionId("dataPartitionId") .maxSampleCount(123) .minimumSamplingIntervalMs(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.SignalInformationProperty
static final class
An implementation forCfnCampaign.SignalInformationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The ID of the data partition this signal is associated with.default Number
The maximum number of samples to collect.default Number
The minimum duration of time (in milliseconds) between two triggering events to collect data.getName()
The name of the signal.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the signal.- See Also:
-
getDataPartitionId
The ID of the data partition this signal is associated with.The ID must match one of the IDs provided in
dataPartitions
. This is accomplished either by specifying a particular data partition ID or by usingdefault
for an established default partition. You can establish a default partition in theDataPartition
data type.If you upload a signal as a condition for a campaign's data partition, the same signal must be included in
signalsToCollect
. > Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .- See Also:
-
getMaxSampleCount
The maximum number of samples to collect.- See Also:
-
getMinimumSamplingIntervalMs
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.
- See Also:
-
builder
-