com.pulumi.aws.lex.inputs.V2modelsIntentClosingSettingConditionalArgs 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.inputs;
import com.pulumi.aws.lex.inputs.V2modelsIntentClosingSettingConditionalConditionalBranchArgs;
import com.pulumi.aws.lex.inputs.V2modelsIntentClosingSettingConditionalDefaultBranchArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class V2modelsIntentClosingSettingConditionalArgs extends com.pulumi.resources.ResourceArgs {
public static final V2modelsIntentClosingSettingConditionalArgs Empty = new V2modelsIntentClosingSettingConditionalArgs();
/**
* Whether a conditional branch is active. When active is false, the conditions are not evaluated.
*
*/
@Import(name="active", required=true)
private Output active;
/**
* @return Whether a conditional branch is active. When active is false, the conditions are not evaluated.
*
*/
public Output active() {
return this.active;
}
/**
* Configuration blocks for conditional branches. A conditional branch is made up of a condition, a response and a next step. The response and next step are executed when the condition is true. See `conditional_branch`.
*
*/
@Import(name="conditionalBranches")
private @Nullable Output> conditionalBranches;
/**
* @return Configuration blocks for conditional branches. A conditional branch is made up of a condition, a response and a next step. The response and next step are executed when the condition is true. See `conditional_branch`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy