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

com.pulumi.aws.location.inputs.GetTrackerAssociationsPlainArgs 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.location.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetTrackerAssociationsPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetTrackerAssociationsPlainArgs Empty = new GetTrackerAssociationsPlainArgs();

    /**
     * Name of the tracker resource associated with a geofence collection.
     * 
     */
    @Import(name="trackerName", required=true)
    private String trackerName;

    /**
     * @return Name of the tracker resource associated with a geofence collection.
     * 
     */
    public String trackerName() {
        return this.trackerName;
    }

    private GetTrackerAssociationsPlainArgs() {}

    private GetTrackerAssociationsPlainArgs(GetTrackerAssociationsPlainArgs $) {
        this.trackerName = $.trackerName;
    }

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

    public static final class Builder {
        private GetTrackerAssociationsPlainArgs $;

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

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

        /**
         * @param trackerName Name of the tracker resource associated with a geofence collection.
         * 
         * @return builder
         * 
         */
        public Builder trackerName(String trackerName) {
            $.trackerName = trackerName;
            return this;
        }

        public GetTrackerAssociationsPlainArgs build() {
            if ($.trackerName == null) {
                throw new MissingRequiredPropertyException("GetTrackerAssociationsPlainArgs", "trackerName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy