Interface CfnSignalCatalog.AttributeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSignalCatalog.AttributeProperty.Jsii$Proxy
- Enclosing class:
- CfnSignalCatalog
@Stability(Stable)
public static interface CfnSignalCatalog.AttributeProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotfleetwise.*;
AttributeProperty attributeProperty = AttributeProperty.builder()
.dataType("dataType")
.fullyQualifiedName("fullyQualifiedName")
// the properties below are optional
.allowedValues(List.of("allowedValues"))
.assignedValue("assignedValue")
.defaultValue("defaultValue")
.description("description")
.max(123)
.min(123)
.unit("unit")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSignalCatalog.AttributePropertystatic final classAn implementation forCfnSignalCatalog.AttributeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(Optional) A list of possible values an attribute can be assigned.default String(Optional) A specified value for the attribute.The specified data type of the attribute.default String(Optional) The default value of the attribute.default String(Optional) A brief description of the attribute.The fully qualified name of the attribute.default NumbergetMax()(Optional) The specified possible maximum value of the attribute.default NumbergetMin()(Optional) The specified possible minimum value of the attribute.default StringgetUnit()(Optional) The scientific unit for the attribute.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataType
The specified data type of the attribute. -
getFullyQualifiedName
The fully qualified name of the attribute.For example, the fully qualified name of an attribute might be
Vehicle.Body.Engine.Type. -
getAllowedValues
(Optional) A list of possible values an attribute can be assigned. -
getAssignedValue
(Optional) A specified value for the attribute. -
getDefaultValue
(Optional) The default value of the attribute. -
getDescription
(Optional) A brief description of the attribute. -
getMax
(Optional) The specified possible maximum value of the attribute. -
getMin
(Optional) The specified possible minimum value of the attribute. -
getUnit
(Optional) The scientific unit for the attribute. -
builder
-