com.pulumi.aws.lex.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch 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.aws.lex.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchNextStep;
import com.pulumi.aws.lex.outputs.V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch {
/**
* @return Configuration block for the next step in the conversation. See `next_step`.
*
*/
private @Nullable V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchNextStep nextStep;
/**
* @return Configuration block for a list of message groups that Amazon Lex uses to respond to the user input. See `response`.
*
*/
private @Nullable V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchResponse response;
private V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch() {}
/**
* @return Configuration block for the next step in the conversation. See `next_step`.
*
*/
public Optional nextStep() {
return Optional.ofNullable(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(V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchNextStep nextStep;
private @Nullable V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchResponse response;
public Builder() {}
public Builder(V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch defaults) {
Objects.requireNonNull(defaults);
this.nextStep = defaults.nextStep;
this.response = defaults.response;
}
@CustomType.Setter
public Builder nextStep(@Nullable V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchNextStep nextStep) {
this.nextStep = nextStep;
return this;
}
@CustomType.Setter
public Builder response(@Nullable V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranchResponse response) {
this.response = response;
return this;
}
public V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch build() {
final var _resultValue = new V2modelsIntentConfirmationSettingDeclinationConditionalDefaultBranch();
_resultValue.nextStep = nextStep;
_resultValue.response = response;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy