Interface CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty.Jsii$Proxy
- Enclosing class:
CfnDecoderManifestPropsMixin
@Stability(Stable)
public static interface CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty
extends software.amazon.jsii.JsiiSerializable
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.cfnpropertymixins.services.iotfleetwise.*;
NetworkInterfacesItemsProperty networkInterfacesItemsProperty = NetworkInterfacesItemsProperty.builder()
.canInterface(CanInterfaceProperty.builder()
.name("name")
.protocolName("protocolName")
.protocolVersion("protocolVersion")
.build())
.interfaceId("interfaceId")
.obdInterface(ObdInterfaceProperty.builder()
.dtcRequestIntervalSeconds("dtcRequestIntervalSeconds")
.hasTransmissionEcu("hasTransmissionEcu")
.name("name")
.obdStandard("obdStandard")
.pidRequestIntervalSeconds("pidRequestIntervalSeconds")
.requestMessageId("requestMessageId")
.useExtendedIds("useExtendedIds")
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnDecoderManifestPropsMixin.CanInterfacePropertydefault Stringdefault ObjectReturns union: eitherIResolvableorCfnDecoderManifestPropsMixin.ObdInterfacePropertydefault StringgetType()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCanInterface
Returns union: eitherIResolvableorCfnDecoderManifestPropsMixin.CanInterfaceProperty- See Also:
-
getInterfaceId
- See Also:
-
getObdInterface
Returns union: eitherIResolvableorCfnDecoderManifestPropsMixin.ObdInterfaceProperty- See Also:
-
getType
- See Also:
-
builder
@Stability(Stable) static CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty.Builder builder()
-