com.pulumi.aws.lex.outputs.V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList 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.String;
import java.util.Objects;
@CustomType
public final class V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList {
/**
* @return Default value to use when a user doesn't provide a value for a slot.
*
*/
private String defaultValue;
private V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList() {}
/**
* @return Default value to use when a user doesn't provide a value for a slot.
*
*/
public String defaultValue() {
return this.defaultValue;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String defaultValue;
public Builder() {}
public Builder(V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList defaults) {
Objects.requireNonNull(defaults);
this.defaultValue = defaults.defaultValue;
}
@CustomType.Setter
public Builder defaultValue(String defaultValue) {
if (defaultValue == null) {
throw new MissingRequiredPropertyException("V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList", "defaultValue");
}
this.defaultValue = defaultValue;
return this;
}
public V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList build() {
final var _resultValue = new V2modelsSlotSubSlotSettingSlotSpecificationValueElicitationSettingDefaultValueSpecificationDefaultValueList();
_resultValue.defaultValue = defaultValue;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy