GetInstanceTypeNeuronDevice constructor

const GetInstanceTypeNeuronDevice({
  1. required Input<int> coreCount,
  2. required Input<int> coreVersion,
  3. required Input<int> count,
  4. required Input<int> memorySize,
  5. required Input<String> name,
})

Creates a new GetInstanceTypeNeuronDevice. coreCount Required. coreVersion Required. count Required. memorySize Size of the instance memory, in MiB. name Required.

Implementation

const GetInstanceTypeNeuronDevice({
  required this.coreCount,
  required this.coreVersion,
  required this.count,
  required this.memorySize,
  required this.name,
});