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

com.pulumi.aws.iot.inputs.IndexingConfigurationState Maven / Gradle / Ivy

// *** 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.iot.inputs;

import com.pulumi.aws.iot.inputs.IndexingConfigurationThingGroupIndexingConfigurationArgs;
import com.pulumi.aws.iot.inputs.IndexingConfigurationThingIndexingConfigurationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class IndexingConfigurationState extends com.pulumi.resources.ResourceArgs {

    public static final IndexingConfigurationState Empty = new IndexingConfigurationState();

    /**
     * Thing group indexing configuration. See below.
     * 
     */
    @Import(name="thingGroupIndexingConfiguration")
    private @Nullable Output thingGroupIndexingConfiguration;

    /**
     * @return Thing group indexing configuration. See below.
     * 
     */
    public Optional> thingGroupIndexingConfiguration() {
        return Optional.ofNullable(this.thingGroupIndexingConfiguration);
    }

    /**
     * Thing indexing configuration. See below.
     * 
     */
    @Import(name="thingIndexingConfiguration")
    private @Nullable Output thingIndexingConfiguration;

    /**
     * @return Thing indexing configuration. See below.
     * 
     */
    public Optional> thingIndexingConfiguration() {
        return Optional.ofNullable(this.thingIndexingConfiguration);
    }

    private IndexingConfigurationState() {}

    private IndexingConfigurationState(IndexingConfigurationState $) {
        this.thingGroupIndexingConfiguration = $.thingGroupIndexingConfiguration;
        this.thingIndexingConfiguration = $.thingIndexingConfiguration;
    }

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

    public static final class Builder {
        private IndexingConfigurationState $;

        public Builder() {
            $ = new IndexingConfigurationState();
        }

        public Builder(IndexingConfigurationState defaults) {
            $ = new IndexingConfigurationState(Objects.requireNonNull(defaults));
        }

        /**
         * @param thingGroupIndexingConfiguration Thing group indexing configuration. See below.
         * 
         * @return builder
         * 
         */
        public Builder thingGroupIndexingConfiguration(@Nullable Output thingGroupIndexingConfiguration) {
            $.thingGroupIndexingConfiguration = thingGroupIndexingConfiguration;
            return this;
        }

        /**
         * @param thingGroupIndexingConfiguration Thing group indexing configuration. See below.
         * 
         * @return builder
         * 
         */
        public Builder thingGroupIndexingConfiguration(IndexingConfigurationThingGroupIndexingConfigurationArgs thingGroupIndexingConfiguration) {
            return thingGroupIndexingConfiguration(Output.of(thingGroupIndexingConfiguration));
        }

        /**
         * @param thingIndexingConfiguration Thing indexing configuration. See below.
         * 
         * @return builder
         * 
         */
        public Builder thingIndexingConfiguration(@Nullable Output thingIndexingConfiguration) {
            $.thingIndexingConfiguration = thingIndexingConfiguration;
            return this;
        }

        /**
         * @param thingIndexingConfiguration Thing indexing configuration. See below.
         * 
         * @return builder
         * 
         */
        public Builder thingIndexingConfiguration(IndexingConfigurationThingIndexingConfigurationArgs thingIndexingConfiguration) {
            return thingIndexingConfiguration(Output.of(thingIndexingConfiguration));
        }

        public IndexingConfigurationState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy