toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case VolumeType.standard:
      return 'standard';
    case VolumeType.gp2:
      return 'gp2';
    case VolumeType.io1:
      return 'io1';
  }
}