Interface CfnDecoderManifest.NetworkInterfacesItemsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDecoderManifest.NetworkInterfacesItemsProperty.Jsii$Proxy
Enclosing class:
CfnDecoderManifest

@Stability(Stable) public static interface CfnDecoderManifest.NetworkInterfacesItemsProperty extends software.amazon.jsii.JsiiSerializable
(Optional) A list of information about available network interfaces.

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.*;
 NetworkInterfacesItemsProperty networkInterfacesItemsProperty = NetworkInterfacesItemsProperty.builder()
         .interfaceId("interfaceId")
         .type("type")
         // the properties below are optional
         .canInterface(CanInterfaceProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .protocolName("protocolName")
                 .protocolVersion("protocolVersion")
                 .build())
         .obdInterface(ObdInterfaceProperty.builder()
                 .name("name")
                 .requestMessageId("requestMessageId")
                 // the properties below are optional
                 .dtcRequestIntervalSeconds("dtcRequestIntervalSeconds")
                 .hasTransmissionEcu("hasTransmissionEcu")
                 .obdStandard("obdStandard")
                 .pidRequestIntervalSeconds("pidRequestIntervalSeconds")
                 .useExtendedIds("useExtendedIds")
                 .build())
         .build();
 
  • Method Details

    • getInterfaceId

      @Stability(Stable) @NotNull String getInterfaceId()
      The ID of the network interface.
    • getType

      @Stability(Stable) @NotNull String getType()
      The network protocol for the vehicle.

      For example, CAN_SIGNAL specifies a protocol that defines how data is communicated between electronic control units (ECUs). OBD_SIGNAL specifies a protocol that defines how self-diagnostic data is communicated between ECUs.

    • getCanInterface

      @Stability(Stable) @Nullable default Object getCanInterface()
      (Optional) Information about a network interface specified by the Controller Area Network (CAN) protocol.
    • getObdInterface

      @Stability(Stable) @Nullable default Object getObdInterface()
      (Optional) Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
    • builder

      @Stability(Stable) static CfnDecoderManifest.NetworkInterfacesItemsProperty.Builder builder()
      Returns:
      a CfnDecoderManifest.NetworkInterfacesItemsProperty.Builder of CfnDecoderManifest.NetworkInterfacesItemsProperty