Interface LambdaConfig


@ConfigRoot(phase=RUN_TIME) @ConfigMapping(prefix="quarkus.lambda") public interface LambdaConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    The handler name.
  • Method Details

    • handler

      Optional<String> handler()
      The handler name. Handler names are specified on handler classes using the
      invalid @link
      {@link @jakarta.inject.Named
      } annotation. If this name is unspecified and there is exactly one unnamed implementation of RequestHandler then this unnamed handler will be used. If there is only a single named handler and the name is unspecified then the named handler will be used.