package awsiotfleetwise // A signal that represents static information about the vehicle, such as engine type or manufacturing date. // // 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" // // attributeProperty := &AttributeProperty{ // DataType: jsii.String("dataType"), // FullyQualifiedName: jsii.String("fullyQualifiedName"), // // // the properties below are optional // AllowedValues: []*string{ // jsii.String("allowedValues"), // }, // AssignedValue: jsii.String("assignedValue"), // DefaultValue: jsii.String("defaultValue"), // 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-attribute.html // type CfnSignalCatalog_AttributeProperty struct { // The specified data type of the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-datatype // DataType *string `field:"required" json:"dataType" yaml:"dataType"` // The fully qualified name of the attribute. // // For example, the fully qualified name of an attribute might be `Vehicle.Body.Engine.Type` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-fullyqualifiedname // FullyQualifiedName *string `field:"required" json:"fullyQualifiedName" yaml:"fullyQualifiedName"` // (Optional) A list of possible values an attribute can be assigned. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-allowedvalues // AllowedValues *[]*string `field:"optional" json:"allowedValues" yaml:"allowedValues"` // (Optional) A specified value for the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-assignedvalue // AssignedValue *string `field:"optional" json:"assignedValue" yaml:"assignedValue"` // (Optional) The default value of the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-defaultvalue // DefaultValue *string `field:"optional" json:"defaultValue" yaml:"defaultValue"` // (Optional) A brief description of the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-description // Description *string `field:"optional" json:"description" yaml:"description"` // (Optional) The specified possible maximum value of the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-max // Max *float64 `field:"optional" json:"max" yaml:"max"` // (Optional) The specified possible minimum value of the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-min // Min *float64 `field:"optional" json:"min" yaml:"min"` // (Optional) The scientific unit for the attribute. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-signalcatalog-attribute.html#cfn-iotfleetwise-signalcatalog-attribute-unit // Unit *string `field:"optional" json:"unit" yaml:"unit"` }