Interface ICfnDecoderManifestProps
Properties for defining a CfnDecoderManifest
.
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDecoderManifestProps
Syntax (vb)
Public Interface 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
Properties
DefaultForUnmappedSignals | Use default decoders for all unmapped signals in the model. |
Description | A brief description of the decoder manifest. |
ModelManifestArn | The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest. |
Name | The name of the decoder manifest. |
NetworkInterfaces | A list of information about available network interfaces. |
SignalDecoders | 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. |
Properties
DefaultForUnmappedSignals
Use default decoders for all unmapped signals in the model.
virtual string DefaultForUnmappedSignals { get; }
Property Value
System.String
Remarks
You don't need to provide any detailed decoding information.
Description
A brief description of the decoder manifest.
virtual string Description { get; }
Property Value
System.String
Remarks
ModelManifestArn
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
string ModelManifestArn { get; }
Property Value
System.String
Remarks
Name
The name of the decoder manifest.
string Name { get; }
Property Value
System.String
Remarks
NetworkInterfaces
A list of information about available network interfaces.
virtual object NetworkInterfaces { get; }
Property Value
System.Object
Remarks
SignalDecoders
A list of information about signal decoders.
virtual object SignalDecoders { get; }
Property Value
System.Object
Remarks
Status
The state of the decoder manifest.
virtual string Status { get; }
Property Value
System.String
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.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]