package awsiotfleetwise // An input component that reports the environmental condition of a vehicle. // // > You can collect data about fluid levels, temperatures, vibrations, or battery voltage from sensors. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // sensorProperty := &SensorProperty{ // DataType: jsii.String("dataType"), // FullyQualifiedName: jsii.String("fullyQualifiedName"), // // // the properties below are optional // AllowedValues: []*string{ // jsii.String("allowedValues"), // }, // Description: jsii.String("description"), // Max: jsii.Number(123), // Min: jsii.Number(123), // Unit: jsii.String("unit"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html // type CfnSignalCatalog_SensorProperty struct { // The specified data type of the sensor. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-datatype // DataType *string `field:"required" json:"dataType" yaml:"dataType"` // The fully qualified name of the sensor. // // For example, the fully qualified name of a sensor might be `Vehicle.Body.Engine.Battery` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-fullyqualifiedname // FullyQualifiedName *string `field:"required" json:"fullyQualifiedName" yaml:"fullyQualifiedName"` // (Optional) A list of possible values a sensor can take. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-allowedvalues // AllowedValues *[]*string `field:"optional" json:"allowedValues" yaml:"allowedValues"` // (Optional) A brief description of a sensor. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-description // Description *string `field:"optional" json:"description" yaml:"description"` // (Optional) The specified possible maximum value of the sensor. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-max // Max *float64 `field:"optional" json:"max" yaml:"max"` // (Optional) The specified possible minimum value of the sensor. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-min // Min *float64 `field:"optional" json:"min" yaml:"min"` // (Optional) The scientific unit of measurement for data collected by the sensor. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-sensor.html#cfn-iotfleetwise-signalcatalog-sensor-unit // Unit *string `field:"optional" json:"unit" yaml:"unit"` }