Package io.micronaut.aws.alexa.builders
Interface AlexaSkillBuilder<Request,Response> 
- Type Parameters:
- Request- input type.
- Response- output type.
- All Known Implementing Classes:
- DefaultAlexaSkillBuilder
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@DefaultImplementation(DefaultAlexaSkillBuilder.class)
public interface AlexaSkillBuilder<Request,Response> 
FunctionalInterface to create AlexaSkill.- Since:
- 2.0.0
- Author:
- sdelamo
- 
Method SummaryModifier and TypeMethodDescriptionbuildSkill(@NotNull @NonNull com.amazon.ask.builder.SkillBuilder<?> skillBuilder, @Nullable AlexaSkillConfiguration alexaSkillConfiguration) 
- 
Method Details- 
buildSkill@NonNull @NonNull com.amazon.ask.AlexaSkill<Request,Response> buildSkill(@NotNull @NonNull @NotNull @NonNull com.amazon.ask.builder.SkillBuilder<?> skillBuilder, @Nullable @Nullable AlexaSkillConfiguration alexaSkillConfiguration) - Parameters:
- skillBuilder- A Skill builder
- alexaSkillConfiguration- Alexa Skill Configuration
- Returns:
- An Alexa skill.
 
 
-