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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDecoderManifest.NetworkInterfacesItemsProperty
static final class
An implementation forCfnDecoderManifest.NetworkInterfacesItemsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
(Optional) Information about a network interface specified by the Controller Area Network (CAN) protocol.The ID of the network interface.default Object
(Optional) Information about a network interface specified by the On-board diagnostic (OBD) II protocol.getType()
The network protocol for the vehicle.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInterfaceId
The ID of the network interface. -
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
(Optional) Information about a network interface specified by the Controller Area Network (CAN) protocol. -
getObdInterface
(Optional) Information about a network interface specified by the On-board diagnostic (OBD) II protocol. -
builder
-