Class CfnCampaignPropsMixin.SignalInformationProperty
Information about a signal.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCampaignPropsMixin.SignalInformationProperty : CfnCampaignPropsMixin.ISignalInformationProperty
Syntax (vb)
Public Class CfnCampaignPropsMixin.SignalInformationProperty Implements CfnCampaignPropsMixin.ISignalInformationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins;
var signalInformationProperty = new SignalInformationProperty {
DataPartitionId = "dataPartitionId",
MaxSampleCount = 123,
MinimumSamplingIntervalMs = 123,
Name = "name"
};
Synopsis
Constructors
| SignalInformationProperty() | Information about a signal. |
Properties
| DataPartitionId | The ID of the data partition this signal is associated with. |
| MaxSampleCount | The maximum number of samples to collect. |
| MinimumSamplingIntervalMs | The minimum duration of time (in milliseconds) between two triggering events to collect data. |
| Name | The name of the signal. |
Constructors
SignalInformationProperty()
Information about a signal.
public SignalInformationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins;
var signalInformationProperty = new SignalInformationProperty {
DataPartitionId = "dataPartitionId",
MaxSampleCount = 123,
MinimumSamplingIntervalMs = 123,
Name = "name"
};
Properties
DataPartitionId
The ID of the data partition this signal is associated with.
public string? DataPartitionId { get; set; }
Property Value
Remarks
The ID must match one of the IDs provided in dataPartitions . This is accomplished either by specifying a particular data partition ID or by using default for an established default partition. You can establish a default partition in the DataPartition data type.
If you upload a signal as a condition for a campaign's data partition, the same signal must be included in <code>signalsToCollect</code> . > Access to certain AWS IoT FleetWise features is currently gated. For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">AWS Region and feature availability</a> in the <em>AWS IoT FleetWise Developer Guide</em> .
MaxSampleCount
The maximum number of samples to collect.
public double? MaxSampleCount { get; set; }
Property Value
Remarks
MinimumSamplingIntervalMs
The minimum duration of time (in milliseconds) between two triggering events to collect data.
public double? MinimumSamplingIntervalMs { get; set; }
Property Value
Remarks
If a signal changes often, you might want to collect data at a slower rate.
Name
The name of the signal.
public string? Name { get; set; }