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

com.pulumi.aws.msk.inputs.GetBootstrapBrokersArgs 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.66.3
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.msk.inputs;

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


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

    public static final GetBootstrapBrokersArgs Empty = new GetBootstrapBrokersArgs();

    /**
     * ARN of the cluster the nodes belong to.
     * 
     */
    @Import(name="clusterArn", required=true)
    private Output clusterArn;

    /**
     * @return ARN of the cluster the nodes belong to.
     * 
     */
    public Output clusterArn() {
        return this.clusterArn;
    }

    private GetBootstrapBrokersArgs() {}

    private GetBootstrapBrokersArgs(GetBootstrapBrokersArgs $) {
        this.clusterArn = $.clusterArn;
    }

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

    public static final class Builder {
        private GetBootstrapBrokersArgs $;

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

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

        /**
         * @param clusterArn ARN of the cluster the nodes belong to.
         * 
         * @return builder
         * 
         */
        public Builder clusterArn(Output clusterArn) {
            $.clusterArn = clusterArn;
            return this;
        }

        /**
         * @param clusterArn ARN of the cluster the nodes belong to.
         * 
         * @return builder
         * 
         */
        public Builder clusterArn(String clusterArn) {
            return clusterArn(Output.of(clusterArn));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy