DeviceDevice constructor

const DeviceDevice({
  1. Input<String?>? description,
  2. required Input<String> deviceName,
  3. Input<String?>? iotThingName,
})

Creates a new DeviceDevice. description A description for the device. deviceName The name of the device. iotThingName Amazon Web Services Internet of Things (IoT) object name.

Implementation

const DeviceDevice({
  this.description,
  required this.deviceName,
  this.iotThingName,
});