com.pulumi.aws.lex.outputs.V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.lex.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction {
/**
* @return If the dialog action is `ElicitSlot`, defines the slot to elicit from the user.
*
*/
private @Nullable String slotToElicit;
/**
* @return Whether the next message for the intent is _not_ used.
*
*/
private @Nullable Boolean suppressNextMessage;
/**
* @return Action that the bot should execute. Valid values are `ElicitIntent`, `StartIntent`, `ElicitSlot`, `EvaluateConditional`, `InvokeDialogCodeHook`, `ConfirmIntent`, `FulfillIntent`, `CloseIntent`, `EndConversation`.
*
*/
private String type;
private V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction() {}
/**
* @return If the dialog action is `ElicitSlot`, defines the slot to elicit from the user.
*
*/
public Optional slotToElicit() {
return Optional.ofNullable(this.slotToElicit);
}
/**
* @return Whether the next message for the intent is _not_ used.
*
*/
public Optional suppressNextMessage() {
return Optional.ofNullable(this.suppressNextMessage);
}
/**
* @return Action that the bot should execute. Valid values are `ElicitIntent`, `StartIntent`, `ElicitSlot`, `EvaluateConditional`, `InvokeDialogCodeHook`, `ConfirmIntent`, `FulfillIntent`, `CloseIntent`, `EndConversation`.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String slotToElicit;
private @Nullable Boolean suppressNextMessage;
private String type;
public Builder() {}
public Builder(V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction defaults) {
Objects.requireNonNull(defaults);
this.slotToElicit = defaults.slotToElicit;
this.suppressNextMessage = defaults.suppressNextMessage;
this.type = defaults.type;
}
@CustomType.Setter
public Builder slotToElicit(@Nullable String slotToElicit) {
this.slotToElicit = slotToElicit;
return this;
}
@CustomType.Setter
public Builder suppressNextMessage(@Nullable Boolean suppressNextMessage) {
this.suppressNextMessage = suppressNextMessage;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction", "type");
}
this.type = type;
return this;
}
public V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction build() {
final var _resultValue = new V2modelsIntentConfirmationSettingCodeHookPostCodeHookSpecificationTimeoutNextStepDialogAction();
_resultValue.slotToElicit = slotToElicit;
_resultValue.suppressNextMessage = suppressNextMessage;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy