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

com.pulumi.aws.ec2.inputs.FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs 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.ec2.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Double;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs extends com.pulumi.resources.ResourceArgs {

    public static final FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs Empty = new FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs();

    /**
     * The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
     * 
     */
    @Import(name="max")
    private @Nullable Output max;

    /**
     * @return The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
     * 
     */
    public Optional> max() {
        return Optional.ofNullable(this.max);
    }

    /**
     * The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
     * 
     */
    @Import(name="min")
    private @Nullable Output min;

    /**
     * @return The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
     * 
     */
    public Optional> min() {
        return Optional.ofNullable(this.min);
    }

    private FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs() {}

    private FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs(FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs $) {
        this.max = $.max;
        this.min = $.min;
    }

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

    public static final class Builder {
        private FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs $;

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

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

        /**
         * @param max The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
         * 
         * @return builder
         * 
         */
        public Builder max(@Nullable Output max) {
            $.max = max;
            return this;
        }

        /**
         * @param max The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
         * 
         * @return builder
         * 
         */
        public Builder max(Double max) {
            return max(Output.of(max));
        }

        /**
         * @param min The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
         * 
         * @return builder
         * 
         */
        public Builder min(@Nullable Output min) {
            $.min = min;
            return this;
        }

        /**
         * @param min The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
         * 
         * @return builder
         * 
         */
        public Builder min(Double min) {
            return min(Output.of(min));
        }

        public FleetLaunchTemplateConfigOverrideInstanceRequirementsNetworkBandwidthGbpsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy