package io.delphi.qa.auto.awsmfrw.models.aws.lm;

import java.util.function.Supplier;

public enum EnAwsLambdaResponseStatusItems implements Supplier<String> {
  OK,
  KO,
  FAILURE,
  ;

  @Override
  public String get() {
    return this.name();
  }
}
