LaunchConfigurationEphemeralBlockDevice constructor

const LaunchConfigurationEphemeralBlockDevice({
  1. required Input<String> deviceName,
  2. Input<bool?>? noDevice,
  3. Input<String?>? virtualName,
})

Creates a new LaunchConfigurationEphemeralBlockDevice. deviceName The name of the block device to mount on the instance. noDevice Whether the device in the block device mapping of the AMI is suppressed. virtualName The Instance Store Device Name.

Implementation

const LaunchConfigurationEphemeralBlockDevice({
  required this.deviceName,
  this.noDevice,
  this.virtualName,
});