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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSignalCatalog.AttributeProperty
static final class
An 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 Number
getMax()
(Optional) The specified possible maximum value of the attribute.default Number
getMin()
(Optional) The specified possible minimum value of the attribute.default String
getUnit()
(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.- See Also:
-
getFullyQualifiedName
The fully qualified name of the attribute.For example, the fully qualified name of an attribute might be
Vehicle.Body.Engine.Type
.- See Also:
-
getAllowedValues
(Optional) A list of possible values an attribute can be assigned.- See Also:
-
getAssignedValue
(Optional) A specified value for the attribute.- See Also:
-
getDefaultValue
(Optional) The default value of the attribute.- See Also:
-
getDescription
(Optional) A brief description of the attribute.- See Also:
-
getMax
(Optional) The specified possible maximum value of the attribute.- See Also:
-
getMin
(Optional) The specified possible minimum value of the attribute.- See Also:
-
getUnit
(Optional) The scientific unit for the attribute.- See Also:
-
builder
-