All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.lex.outputs.V2modelsSlotValueElicitationSettingDefaultValueSpecification Maven / Gradle / Ivy

Go to download

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.outputs;

import com.pulumi.aws.lex.outputs.V2modelsSlotValueElicitationSettingDefaultValueSpecificationDefaultValueList;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;

@CustomType
public final class V2modelsSlotValueElicitationSettingDefaultValueSpecification {
    /**
     * @return List of default values.
     * Amazon Lex chooses the default value to use in the order that they are presented in the list.
     * See the `default_value_list` argument reference below.
     * 
     */
    private @Nullable List defaultValueLists;

    private V2modelsSlotValueElicitationSettingDefaultValueSpecification() {}
    /**
     * @return List of default values.
     * Amazon Lex chooses the default value to use in the order that they are presented in the list.
     * See the `default_value_list` argument reference below.
     * 
     */
    public List defaultValueLists() {
        return this.defaultValueLists == null ? List.of() : this.defaultValueLists;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(V2modelsSlotValueElicitationSettingDefaultValueSpecification defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List defaultValueLists;
        public Builder() {}
        public Builder(V2modelsSlotValueElicitationSettingDefaultValueSpecification defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.defaultValueLists = defaults.defaultValueLists;
        }

        @CustomType.Setter
        public Builder defaultValueLists(@Nullable List defaultValueLists) {

            this.defaultValueLists = defaultValueLists;
            return this;
        }
        public Builder defaultValueLists(V2modelsSlotValueElicitationSettingDefaultValueSpecificationDefaultValueList... defaultValueLists) {
            return defaultValueLists(List.of(defaultValueLists));
        }
        public V2modelsSlotValueElicitationSettingDefaultValueSpecification build() {
            final var _resultValue = new V2modelsSlotValueElicitationSettingDefaultValueSpecification();
            _resultValue.defaultValueLists = defaultValueLists;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy