Show / Hide Table of Contents

Class CfnDecoderManifest.ObdNetworkInterfaceProperty

Information about a network interface specified by the On-board diagnostic (OBD) II protocol.

Inheritance
object
CfnDecoderManifest.ObdNetworkInterfaceProperty
Implements
CfnDecoderManifest.IObdNetworkInterfaceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDecoderManifest.ObdNetworkInterfaceProperty : CfnDecoderManifest.IObdNetworkInterfaceProperty
Syntax (vb)
Public Class CfnDecoderManifest.ObdNetworkInterfaceProperty Implements CfnDecoderManifest.IObdNetworkInterfaceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-obdnetworkinterface.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.IoTFleetWise;

             var obdNetworkInterfaceProperty = new ObdNetworkInterfaceProperty {
                 InterfaceId = "interfaceId",
                 ObdInterface = new ObdInterfaceProperty {
                     Name = "name",
                     RequestMessageId = "requestMessageId",

                     // the properties below are optional
                     DtcRequestIntervalSeconds = "dtcRequestIntervalSeconds",
                     HasTransmissionEcu = "hasTransmissionEcu",
                     ObdStandard = "obdStandard",
                     PidRequestIntervalSeconds = "pidRequestIntervalSeconds",
                     UseExtendedIds = "useExtendedIds"
                 },
                 Type = "type"
             };

Synopsis

Constructors

ObdNetworkInterfaceProperty()

Information about a network interface specified by the On-board diagnostic (OBD) II protocol.

Properties

InterfaceId

The ID of the network interface.

ObdInterface

Information about a network interface specified by the On-board diagnostic (OBD) II protocol.

Type

The network protocol for the vehicle.

Constructors

ObdNetworkInterfaceProperty()

Information about a network interface specified by the On-board diagnostic (OBD) II protocol.

public ObdNetworkInterfaceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-obdnetworkinterface.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.IoTFleetWise;

             var obdNetworkInterfaceProperty = new ObdNetworkInterfaceProperty {
                 InterfaceId = "interfaceId",
                 ObdInterface = new ObdInterfaceProperty {
                     Name = "name",
                     RequestMessageId = "requestMessageId",

                     // the properties below are optional
                     DtcRequestIntervalSeconds = "dtcRequestIntervalSeconds",
                     HasTransmissionEcu = "hasTransmissionEcu",
                     ObdStandard = "obdStandard",
                     PidRequestIntervalSeconds = "pidRequestIntervalSeconds",
                     UseExtendedIds = "useExtendedIds"
                 },
                 Type = "type"
             };

Properties

InterfaceId

The ID of the network interface.

public string InterfaceId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-obdnetworkinterface.html#cfn-iotfleetwise-decodermanifest-obdnetworkinterface-interfaceid

ObdInterface

Information about a network interface specified by the On-board diagnostic (OBD) II protocol.

public object ObdInterface { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-obdnetworkinterface.html#cfn-iotfleetwise-decodermanifest-obdnetworkinterface-obdinterface

Type

The network protocol for the vehicle.

public string Type { get; set; }
Property Value

string

Remarks

For example, CAN_SIGNAL specifies a protocol that defines how data is communicated between electronic control units (ECUs). OBD_SIGNAL specifies a protocol that defines how self-diagnostic data is communicated between ECUs.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-obdnetworkinterface.html#cfn-iotfleetwise-decodermanifest-obdnetworkinterface-type

Implements

CfnDecoderManifest.IObdNetworkInterfaceProperty
Back to top Generated by DocFX