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();
 
  • Method Details

    • getDataType

      @Stability(Stable) @NotNull String getDataType()
      The specified data type of the attribute.
    • getFullyQualifiedName

      @Stability(Stable) @NotNull String getFullyQualifiedName()
      The fully qualified name of the attribute.

      For example, the fully qualified name of an attribute might be Vehicle.Body.Engine.Type .

    • getAllowedValues

      @Stability(Stable) @Nullable default List<String> getAllowedValues()
      (Optional) A list of possible values an attribute can be assigned.
    • getAssignedValue

      @Stability(Stable) @Nullable default String getAssignedValue()
      (Optional) A specified value for the attribute.
    • getDefaultValue

      @Stability(Stable) @Nullable default String getDefaultValue()
      (Optional) The default value of the attribute.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      (Optional) A brief description of the attribute.
    • getMax

      @Stability(Stable) @Nullable default Number getMax()
      (Optional) The specified possible maximum value of the attribute.
    • getMin

      @Stability(Stable) @Nullable default Number getMin()
      (Optional) The specified possible minimum value of the attribute.
    • getUnit

      @Stability(Stable) @Nullable default String getUnit()
      (Optional) The scientific unit for the attribute.
    • builder

      @Stability(Stable) static CfnSignalCatalog.AttributeProperty.Builder builder()
      Returns:
      a CfnSignalCatalog.AttributeProperty.Builder of CfnSignalCatalog.AttributeProperty