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

com.pulumi.aws.msk.outputs.GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity 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.msk.outputs;

import com.pulumi.aws.msk.outputs.GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthentication;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;

@CustomType
public final class GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity {
    private List clientAuthentications;

    private GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity() {}
    public List clientAuthentications() {
        return this.clientAuthentications;
    }

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

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

        @CustomType.Setter
        public Builder clientAuthentications(List clientAuthentications) {
            if (clientAuthentications == null) {
              throw new MissingRequiredPropertyException("GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity", "clientAuthentications");
            }
            this.clientAuthentications = clientAuthentications;
            return this;
        }
        public Builder clientAuthentications(GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthentication... clientAuthentications) {
            return clientAuthentications(List.of(clientAuthentications));
        }
        public GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity build() {
            final var _resultValue = new GetClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity();
            _resultValue.clientAuthentications = clientAuthentications;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy