GetLaunchConfigurationRootBlockDevice constructor

const GetLaunchConfigurationRootBlockDevice({
  1. required Input<bool> deleteOnTermination,
  2. required Input<bool> encrypted,
  3. required Input<int> iops,
  4. required Input<int> throughput,
  5. required Input<int> volumeSize,
  6. required Input<String> volumeType,
})

Creates a new GetLaunchConfigurationRootBlockDevice. deleteOnTermination Whether the EBS Volume will be deleted on instance termination. encrypted Whether the volume is Encrypted. iops Provisioned IOPs of the volume. throughput Throughput of the volume. volumeSize Size of the volume. volumeType Type of the volume.

Implementation

const GetLaunchConfigurationRootBlockDevice({
  required this.deleteOnTermination,
  required this.encrypted,
  required this.iops,
  required this.throughput,
  required this.volumeSize,
  required this.volumeType,
});