io.quarkus.funqy.lambda.config.FunqyAmazonConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Amazon Lambda Binding for Quarkus Funqy framework
The newest version!
package io.quarkus.funqy.lambda.config;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithName;
@ConfigMapping(prefix = "quarkus.funqy.amazon-lambda")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface FunqyAmazonConfig {
/**
* The advanced event handling config
*/
@WithName("advanced-event-handling")
AdvancedEventHandlingConfig advancedEventHandling();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy