Interface CfnDecoderManifest.CanNetworkInterfaceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDecoderManifest.CanNetworkInterfaceProperty.Jsii$Proxy
- Enclosing class:
CfnDecoderManifest
@Stability(Stable)
public static interface CfnDecoderManifest.CanNetworkInterfaceProperty
extends software.amazon.jsii.JsiiSerializable
Represents a node and its specifications in an in-vehicle communication network.
All signal decoders must be associated with a network node.
To return this information about all the network interfaces specified in a decoder manifest, use the ListDecoderManifestNetworkInterfaces in the AWS IoT FleetWise API Reference .
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.*;
CanNetworkInterfaceProperty canNetworkInterfaceProperty = CanNetworkInterfaceProperty.builder()
.canInterface(CanInterfaceProperty.builder()
.name("name")
// the properties below are optional
.protocolName("protocolName")
.protocolVersion("protocolVersion")
.build())
.interfaceId("interfaceId")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDecoderManifest.CanNetworkInterfacePropertystatic final classAn implementation forCfnDecoderManifest.CanNetworkInterfaceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanInterface
Information about a network interface specified by the Controller Area Network (CAN) protocol.Returns union: either
IResolvableorCfnDecoderManifest.CanInterfaceProperty- See Also:
-
getInterfaceId
The ID of the network interface.- 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
-