toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case InstanceAction.terminate:
      return 'TERMINATE';
    case InstanceAction.keepAlive:
      return 'KEEP_ALIVE';
  }
}