com.pulumi.aws.lex.outputs.V2modelsIntentClosingSettingConditionalConditionalBranch 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.
The newest version!
// *** 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.aws.lex.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchCondition;
import com.pulumi.aws.lex.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchNextStep;
import com.pulumi.aws.lex.outputs.V2modelsIntentClosingSettingConditionalConditionalBranchResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class V2modelsIntentClosingSettingConditionalConditionalBranch {
/**
* @return Configuration block for the expression to evaluate. If the condition is true, the branch's actions are taken. See `condition`.
*
*/
private V2modelsIntentClosingSettingConditionalConditionalBranchCondition condition;
/**
* @return Name of the branch.
*
*/
private String name;
/**
* @return Configuration block for the next step in the conversation. See `next_step`.
*
*/
private V2modelsIntentClosingSettingConditionalConditionalBranchNextStep nextStep;
/**
* @return Configuration block for a list of message groups that Amazon Lex uses to respond to the user input. See `response`.
*
*/
private @Nullable V2modelsIntentClosingSettingConditionalConditionalBranchResponse response;
private V2modelsIntentClosingSettingConditionalConditionalBranch() {}
/**
* @return Configuration block for the expression to evaluate. If the condition is true, the branch's actions are taken. See `condition`.
*
*/
public V2modelsIntentClosingSettingConditionalConditionalBranchCondition condition() {
return this.condition;
}
/**
* @return Name of the branch.
*
*/
public String name() {
return this.name;
}
/**
* @return Configuration block for the next step in the conversation. See `next_step`.
*
*/
public V2modelsIntentClosingSettingConditionalConditionalBranchNextStep nextStep() {
return this.nextStep;
}
/**
* @return Configuration block for a list of message groups that Amazon Lex uses to respond to the user input. See `response`.
*
*/
public Optional response() {
return Optional.ofNullable(this.response);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(V2modelsIntentClosingSettingConditionalConditionalBranch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private V2modelsIntentClosingSettingConditionalConditionalBranchCondition condition;
private String name;
private V2modelsIntentClosingSettingConditionalConditionalBranchNextStep nextStep;
private @Nullable V2modelsIntentClosingSettingConditionalConditionalBranchResponse response;
public Builder() {}
public Builder(V2modelsIntentClosingSettingConditionalConditionalBranch defaults) {
Objects.requireNonNull(defaults);
this.condition = defaults.condition;
this.name = defaults.name;
this.nextStep = defaults.nextStep;
this.response = defaults.response;
}
@CustomType.Setter
public Builder condition(V2modelsIntentClosingSettingConditionalConditionalBranchCondition condition) {
if (condition == null) {
throw new MissingRequiredPropertyException("V2modelsIntentClosingSettingConditionalConditionalBranch", "condition");
}
this.condition = condition;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("V2modelsIntentClosingSettingConditionalConditionalBranch", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder nextStep(V2modelsIntentClosingSettingConditionalConditionalBranchNextStep nextStep) {
if (nextStep == null) {
throw new MissingRequiredPropertyException("V2modelsIntentClosingSettingConditionalConditionalBranch", "nextStep");
}
this.nextStep = nextStep;
return this;
}
@CustomType.Setter
public Builder response(@Nullable V2modelsIntentClosingSettingConditionalConditionalBranchResponse response) {
this.response = response;
return this;
}
public V2modelsIntentClosingSettingConditionalConditionalBranch build() {
final var _resultValue = new V2modelsIntentClosingSettingConditionalConditionalBranch();
_resultValue.condition = condition;
_resultValue.name = name;
_resultValue.nextStep = nextStep;
_resultValue.response = response;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy