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

com.pulumi.aws.servicequotas.inputs.ServiceQuotaUsageMetricMetricDimensionArgs 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.servicequotas.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 ServiceQuotaUsageMetricMetricDimensionArgs extends com.pulumi.resources.ResourceArgs {

    public static final ServiceQuotaUsageMetricMetricDimensionArgs Empty = new ServiceQuotaUsageMetricMetricDimensionArgs();

    @Import(name="class")
    private @Nullable Output class_;

    public Optional> class_() {
        return Optional.ofNullable(this.class_);
    }

    @Import(name="resource")
    private @Nullable Output resource;

    public Optional> resource() {
        return Optional.ofNullable(this.resource);
    }

    @Import(name="service")
    private @Nullable Output service;

    public Optional> service() {
        return Optional.ofNullable(this.service);
    }

    @Import(name="type")
    private @Nullable Output type;

    public Optional> type() {
        return Optional.ofNullable(this.type);
    }

    private ServiceQuotaUsageMetricMetricDimensionArgs() {}

    private ServiceQuotaUsageMetricMetricDimensionArgs(ServiceQuotaUsageMetricMetricDimensionArgs $) {
        this.class_ = $.class_;
        this.resource = $.resource;
        this.service = $.service;
        this.type = $.type;
    }

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

    public static final class Builder {
        private ServiceQuotaUsageMetricMetricDimensionArgs $;

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

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

        public Builder class_(@Nullable Output class_) {
            $.class_ = class_;
            return this;
        }

        public Builder class_(String class_) {
            return class_(Output.of(class_));
        }

        public Builder resource(@Nullable Output resource) {
            $.resource = resource;
            return this;
        }

        public Builder resource(String resource) {
            return resource(Output.of(resource));
        }

        public Builder service(@Nullable Output service) {
            $.service = service;
            return this;
        }

        public Builder service(String service) {
            return service(Output.of(service));
        }

        public Builder type(@Nullable Output type) {
            $.type = type;
            return this;
        }

        public Builder type(String type) {
            return type(Output.of(type));
        }

        public ServiceQuotaUsageMetricMetricDimensionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy