toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case EbsVolumeType.standard:
      return 'standard';
    case EbsVolumeType.io1:
      return 'io1';
    case EbsVolumeType.io2:
      return 'io2';
    case EbsVolumeType.gp2:
      return 'gp2';
    case EbsVolumeType.sc1:
      return 'sc1';
    case EbsVolumeType.st1:
      return 'st1';
  }
}