interface CanInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnDecoderManifestPropsMixin.CanInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnDecoderManifestPropsMixin_CanInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnDecoderManifestPropsMixin.CanInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnDecoderManifestPropsMixin.CanInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnDecoderManifestPropsMixin » CanInterfaceProperty |
A single controller area network (CAN) device interface.
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 canInterfaceProperty: iotfleetwise_mixins.CfnDecoderManifestPropsMixin.CanInterfaceProperty = {
name: 'name',
protocolName: 'protocolName',
protocolVersion: 'protocolVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The unique name of the interface. |
| protocol | string | The name of the communication protocol for the interface. |
| protocol | string | The version of the communication protocol for the interface. |
name?
Type:
string
(optional)
The unique name of the interface.
protocolName?
Type:
string
(optional)
The name of the communication protocol for the interface.
protocolVersion?
Type:
string
(optional)
The version of the communication protocol for the interface.

.NET
Go
Java
Python
TypeScript