aws-cdk-lib.aws_iotfleetwise.CfnCampaign.SignalInformationProperty

interface SignalInformationProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnCampaign.SignalInformationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_SignalInformationProperty
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnCampaign.SignalInformationProperty
Pythonaws_cdk.aws_iotfleetwise.CfnCampaign.SignalInformationProperty
TypeScript aws-cdk-lib » aws_iotfleetwise » CfnCampaign » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const signalInformationProperty: iotfleetwise.CfnCampaign.SignalInformationProperty = {
  name: 'name',

  // the properties below are optional
  maxSampleCount: 123,
  minimumSamplingIntervalMs: 123,
};

Properties

NameTypeDescription
namestringThe name of the signal.
maxSampleCount?number(Optional) The maximum number of samples to collect.
minimumSamplingIntervalMs?number(Optional) The minimum duration of time (in milliseconds) between two triggering events to collect data.

name

Type: string

The name of the signal.


maxSampleCount?

Type: number (optional)

(Optional) The maximum number of samples to collect.


minimumSamplingIntervalMs?

Type: number (optional)

(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.