com.pulumi.aws.lex.outputs.V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification 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.Integer;
import java.util.Objects;
@CustomType
public final class V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification {
/**
* @return Time for which a bot waits before re-prompting a customer for text input.
*
*/
private Integer startTimeoutMs;
private V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification() {}
/**
* @return Time for which a bot waits before re-prompting a customer for text input.
*
*/
public Integer startTimeoutMs() {
return this.startTimeoutMs;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer startTimeoutMs;
public Builder() {}
public Builder(V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification defaults) {
Objects.requireNonNull(defaults);
this.startTimeoutMs = defaults.startTimeoutMs;
}
@CustomType.Setter
public Builder startTimeoutMs(Integer startTimeoutMs) {
if (startTimeoutMs == null) {
throw new MissingRequiredPropertyException("V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification", "startTimeoutMs");
}
this.startTimeoutMs = startTimeoutMs;
return this;
}
public V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification build() {
final var _resultValue = new V2modelsIntentConfirmationSettingPromptSpecificationPromptAttemptsSpecificationTextInputSpecification();
_resultValue.startTimeoutMs = startTimeoutMs;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy