toValue method
Implementation
String toValue() {
switch (this) {
case InstanceGroupStateChangeReasonCode.internalError:
return 'INTERNAL_ERROR';
case InstanceGroupStateChangeReasonCode.validationError:
return 'VALIDATION_ERROR';
case InstanceGroupStateChangeReasonCode.instanceFailure:
return 'INSTANCE_FAILURE';
case InstanceGroupStateChangeReasonCode.clusterTerminated:
return 'CLUSTER_TERMINATED';
}
}