com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchArgs 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.inputs;
import com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchConditionArgs;
import com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchNextStepArgs;
import com.pulumi.aws.lex.inputs.V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchResponseArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchArgs extends com.pulumi.resources.ResourceArgs {
public static final V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchArgs Empty = new V2modelsIntentConfirmationSettingDeclinationConditionalConditionalBranchArgs();
/**
* Configuration block for the expression to evaluate. If the condition is true, the branch's actions are taken. See `condition`.
*
*/
@Import(name="condition", required=true)
private Output condition;
/**
* @return Configuration block for the expression to evaluate. If the condition is true, the branch's actions are taken. See `condition`.
*
*/
public Output condition() {
return this.condition;
}
/**
* Name of the branch.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return Name of the branch.
*
*/
public Output name() {
return this.name;
}
/**
* Configuration block for the next step in the conversation. See `next_step`.
*
*/
@Import(name="nextStep", required=true)
private Output nextStep;
/**
* @return Configuration block for the next step in the conversation. See `next_step`.
*
*/
public Output nextStep() {
return this.nextStep;
}
/**
* Configuration block for a list of message groups that Amazon Lex uses to respond to the user input. See `response`.
*
*/
@Import(name="response")
private @Nullable Output response;
/**
* @return Configuration block for a list of message groups that Amazon Lex uses to respond to the user input. See `response`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy