interface SignalInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.SignalInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_SignalInformationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.SignalInformationProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.SignalInformationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » SignalInformationProperty |
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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const signalInformationProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.SignalInformationProperty = {
dataPartitionId: 'dataPartitionId',
maxSampleCount: 123,
minimumSamplingIntervalMs: 123,
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The ID of the data partition this signal is associated with. |
| max | number | The maximum number of samples to collect. |
| minimum | number | The minimum duration of time (in milliseconds) between two triggering events to collect data. |
| name? | string | The name of the signal. |
dataPartitionId?
Type:
string
(optional)
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 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
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 .
maxSampleCount?
Type:
number
(optional)
The maximum number of samples to collect.
minimumSamplingIntervalMs?
Type:
number
(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.
name?
Type:
string
(optional)
The name of the signal.

.NET
Go
Java
Python
TypeScript