Show / Hide Table of Contents

Class CfnCampaignPropsMixin.SignalInformationProperty

Information about a signal.

Inheritance
object
CfnCampaignPropsMixin.SignalInformationProperty
Implements
CfnCampaignPropsMixin.ISignalInformationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html

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

string

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html#cfn-iotfleetwise-campaign-signalinformation-datapartitionid

MaxSampleCount

The maximum number of samples to collect.

public double? MaxSampleCount { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html#cfn-iotfleetwise-campaign-signalinformation-maxsamplecount

MinimumSamplingIntervalMs

The minimum duration of time (in milliseconds) between two triggering events to collect data.

public double? MinimumSamplingIntervalMs { get; set; }
Property Value

double?

Remarks
If a signal changes often, you might want to collect data at a slower rate.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html#cfn-iotfleetwise-campaign-signalinformation-minimumsamplingintervalms

Name

The name of the signal.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-signalinformation.html#cfn-iotfleetwise-campaign-signalinformation-name

Implements

CfnCampaignPropsMixin.ISignalInformationProperty
Back to top Generated by DocFX