Interface CfnDecoderManifest.ObdNetworkInterfaceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDecoderManifest.ObdNetworkInterfaceProperty.Jsii$Proxy
- Enclosing class:
CfnDecoderManifest
@Stability(Stable)
public static interface CfnDecoderManifest.ObdNetworkInterfaceProperty
extends software.amazon.jsii.JsiiSerializable
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.
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.*;
ObdNetworkInterfaceProperty obdNetworkInterfaceProperty = ObdNetworkInterfaceProperty.builder()
.interfaceId("interfaceId")
.obdInterface(ObdInterfaceProperty.builder()
.name("name")
.requestMessageId("requestMessageId")
// the properties below are optional
.dtcRequestIntervalSeconds("dtcRequestIntervalSeconds")
.hasTransmissionEcu("hasTransmissionEcu")
.obdStandard("obdStandard")
.pidRequestIntervalSeconds("pidRequestIntervalSeconds")
.useExtendedIds("useExtendedIds")
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDecoderManifest.ObdNetworkInterfacePropertystatic final classAn implementation forCfnDecoderManifest.ObdNetworkInterfaceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInterfaceId
The ID of the network interface.- See Also:
-
getObdInterface
Information about a network interface specified by the On-board diagnostic (OBD) II protocol.Returns union: either
IResolvableorCfnDecoderManifest.ObdInterfaceProperty- See Also:
-
getType
The network protocol for the vehicle.For example,
CAN_SIGNALspecifies a protocol that defines how data is communicated between electronic control units (ECUs).OBD_SIGNALspecifies a protocol that defines how self-diagnostic data is communicated between ECUs.- See Also:
-
builder
-