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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDecoderManifest.NetworkInterfacesItemsPropertystatic final classAn implementation forCfnDecoderManifest.NetworkInterfacesItemsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInterfaceId
- See Also:
-
getType
- See Also:
-
getCanInterface
- See Also:
-
getObdInterface
- See Also:
-
builder
-