Class CfnDecoderManifestProps
Properties for defining a CfnDecoderManifest
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDecoderManifestProps : Object, ICfnDecoderManifestProps
Syntax (vb)
Public Class CfnDecoderManifestProps
Inherits Object
Implements ICfnDecoderManifestProps
Remarks
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 cfnDecoderManifestProps = new CfnDecoderManifestProps {
ModelManifestArn = "modelManifestArn",
Name = "name",
// the properties below are optional
DefaultForUnmappedSignals = "defaultForUnmappedSignals",
Description = "description",
NetworkInterfaces = new [] { new NetworkInterfacesItemsProperty {
InterfaceId = "interfaceId",
Type = "type",
// the properties below are optional
CanInterface = new CanInterfaceProperty {
Name = "name",
// the properties below are optional
ProtocolName = "protocolName",
ProtocolVersion = "protocolVersion"
},
ObdInterface = new ObdInterfaceProperty {
Name = "name",
RequestMessageId = "requestMessageId",
// the properties below are optional
DtcRequestIntervalSeconds = "dtcRequestIntervalSeconds",
HasTransmissionEcu = "hasTransmissionEcu",
ObdStandard = "obdStandard",
PidRequestIntervalSeconds = "pidRequestIntervalSeconds",
UseExtendedIds = "useExtendedIds"
}
} },
SignalDecoders = new [] { new SignalDecodersItemsProperty {
FullyQualifiedName = "fullyQualifiedName",
InterfaceId = "interfaceId",
Type = "type",
// the properties below are optional
CanSignal = new CanSignalProperty {
Factor = "factor",
IsBigEndian = "isBigEndian",
IsSigned = "isSigned",
Length = "length",
MessageId = "messageId",
Offset = "offset",
StartBit = "startBit",
// the properties below are optional
Name = "name"
},
ObdSignal = new ObdSignalProperty {
ByteLength = "byteLength",
Offset = "offset",
Pid = "pid",
PidResponseLength = "pidResponseLength",
Scaling = "scaling",
ServiceMode = "serviceMode",
StartByte = "startByte",
// the properties below are optional
BitMaskLength = "bitMaskLength",
BitRightShift = "bitRightShift"
}
} },
Status = "status",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Default |
Use default decoders for all unmapped signals in the model. |
Description | A brief description of the decoder manifest. |
Model |
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest. |
Name | The name of the decoder manifest. |
Network |
A list of information about available network interfaces. |
Signal |
A list of information about signal decoders. |
Status | The state of the decoder manifest. |
Tags | Metadata that can be used to manage the decoder manifest. |
Constructors
CfnDecoderManifestProps()
public CfnDecoderManifestProps()
Properties
DefaultForUnmappedSignals
Use default decoders for all unmapped signals in the model.
public string DefaultForUnmappedSignals { get; set; }
Property Value
System.
Remarks
You don't need to provide any detailed decoding information.
Description
A brief description of the decoder manifest.
public string Description { get; set; }
Property Value
System.
Remarks
ModelManifestArn
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
public string ModelManifestArn { get; set; }
Property Value
System.
Remarks
Name
The name of the decoder manifest.
public string Name { get; set; }
Property Value
System.
Remarks
NetworkInterfaces
A list of information about available network interfaces.
public object NetworkInterfaces { get; set; }
Property Value
System.
Remarks
SignalDecoders
A list of information about signal decoders.
public object SignalDecoders { get; set; }
Property Value
System.
Remarks
Status
The state of the decoder manifest.
public string Status { get; set; }
Property Value
System.
Remarks
If the status is ACTIVE
, the decoder manifest can't be edited. If the status is marked DRAFT
, you can edit the decoder manifest.
Default: - "DRAFT"
Tags
Metadata that can be used to manage the decoder manifest.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn