interface NetworkInterfacesItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_NetworkInterfacesItemsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » NetworkInterfacesItemsProperty |
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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const networkInterfacesItemsProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.NetworkInterfacesItemsProperty = {
canInterface: {
name: 'name',
protocolName: 'protocolName',
protocolVersion: 'protocolVersion',
},
interfaceId: 'interfaceId',
obdInterface: {
dtcRequestIntervalSeconds: 'dtcRequestIntervalSeconds',
hasTransmissionEcu: 'hasTransmissionEcu',
name: 'name',
obdStandard: 'obdStandard',
pidRequestIntervalSeconds: 'pidRequestIntervalSeconds',
requestMessageId: 'requestMessageId',
useExtendedIds: 'useExtendedIds',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| can | IResolvable | Can | |
| interface | string | |
| obd | IResolvable | Obd | |
| type? | string |
canInterface?
Type:
IResolvable | Can
(optional)
interfaceId?
Type:
string
(optional)
obdInterface?
Type:
IResolvable | Obd
(optional)
type?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript