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

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

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


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

    public static final LaunchTemplateCreditSpecificationArgs Empty = new LaunchTemplateCreditSpecificationArgs();

    /**
     * The credit option for CPU usage.
     * Can be `standard` or `unlimited`.
     * T3 instances are launched as `unlimited` by default.
     * T2 instances are launched as `standard` by default.
     * 
     */
    @Import(name="cpuCredits")
    private @Nullable Output cpuCredits;

    /**
     * @return The credit option for CPU usage.
     * Can be `standard` or `unlimited`.
     * T3 instances are launched as `unlimited` by default.
     * T2 instances are launched as `standard` by default.
     * 
     */
    public Optional> cpuCredits() {
        return Optional.ofNullable(this.cpuCredits);
    }

    private LaunchTemplateCreditSpecificationArgs() {}

    private LaunchTemplateCreditSpecificationArgs(LaunchTemplateCreditSpecificationArgs $) {
        this.cpuCredits = $.cpuCredits;
    }

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

    public static final class Builder {
        private LaunchTemplateCreditSpecificationArgs $;

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

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

        /**
         * @param cpuCredits The credit option for CPU usage.
         * Can be `standard` or `unlimited`.
         * T3 instances are launched as `unlimited` by default.
         * T2 instances are launched as `standard` by default.
         * 
         * @return builder
         * 
         */
        public Builder cpuCredits(@Nullable Output cpuCredits) {
            $.cpuCredits = cpuCredits;
            return this;
        }

        /**
         * @param cpuCredits The credit option for CPU usage.
         * Can be `standard` or `unlimited`.
         * T3 instances are launched as `unlimited` by default.
         * T2 instances are launched as `standard` by default.
         * 
         * @return builder
         * 
         */
        public Builder cpuCredits(String cpuCredits) {
            return cpuCredits(Output.of(cpuCredits));
        }

        public LaunchTemplateCreditSpecificationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy