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: