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

com.pulumi.aws.location.inputs.GetTrackerAssociationPlainArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show 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.location.inputs;

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


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

    public static final GetTrackerAssociationPlainArgs Empty = new GetTrackerAssociationPlainArgs();

    /**
     * ARN of the geofence collection associated to tracker resource.
     * 
     */
    @Import(name="consumerArn", required=true)
    private String consumerArn;

    /**
     * @return ARN of the geofence collection associated to tracker resource.
     * 
     */
    public String consumerArn() {
        return this.consumerArn;
    }

    /**
     * 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 GetTrackerAssociationPlainArgs() {}

    private GetTrackerAssociationPlainArgs(GetTrackerAssociationPlainArgs $) {
        this.consumerArn = $.consumerArn;
        this.trackerName = $.trackerName;
    }

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

    public static final class Builder {
        private GetTrackerAssociationPlainArgs $;

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

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

        /**
         * @param consumerArn ARN of the geofence collection associated to tracker resource.
         * 
         * @return builder
         * 
         */
        public Builder consumerArn(String consumerArn) {
            $.consumerArn = consumerArn;
            return this;
        }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy