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

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

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

@CustomType
public final class GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo {
    private List provisionedThroughputs;
    private Integer volumeSize;

    private GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo() {}
    public List provisionedThroughputs() {
        return this.provisionedThroughputs;
    }
    public Integer volumeSize() {
        return this.volumeSize;
    }

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

    public static Builder builder(GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List provisionedThroughputs;
        private Integer volumeSize;
        public Builder() {}
        public Builder(GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.provisionedThroughputs = defaults.provisionedThroughputs;
    	      this.volumeSize = defaults.volumeSize;
        }

        @CustomType.Setter
        public Builder provisionedThroughputs(List provisionedThroughputs) {
            if (provisionedThroughputs == null) {
              throw new MissingRequiredPropertyException("GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo", "provisionedThroughputs");
            }
            this.provisionedThroughputs = provisionedThroughputs;
            return this;
        }
        public Builder provisionedThroughputs(GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfoProvisionedThroughput... provisionedThroughputs) {
            return provisionedThroughputs(List.of(provisionedThroughputs));
        }
        @CustomType.Setter
        public Builder volumeSize(Integer volumeSize) {
            if (volumeSize == null) {
              throw new MissingRequiredPropertyException("GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo", "volumeSize");
            }
            this.volumeSize = volumeSize;
            return this;
        }
        public GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo build() {
            final var _resultValue = new GetClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo();
            _resultValue.provisionedThroughputs = provisionedThroughputs;
            _resultValue.volumeSize = volumeSize;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy