com.pulumi.aws.servicequotas.inputs.GetServiceArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetServiceArgs extends com.pulumi.resources.InvokeArgs {
public static final GetServiceArgs Empty = new GetServiceArgs();
/**
* Service name to lookup within Service Quotas. Available values can be found with the [AWS CLI service-quotas list-services command](https://docs.aws.amazon.com/cli/latest/reference/service-quotas/list-services.html).
*
*/
@Import(name="serviceName", required=true)
private Output serviceName;
/**
* @return Service name to lookup within Service Quotas. Available values can be found with the [AWS CLI service-quotas list-services command](https://docs.aws.amazon.com/cli/latest/reference/service-quotas/list-services.html).
*
*/
public Output serviceName() {
return this.serviceName;
}
private GetServiceArgs() {}
private GetServiceArgs(GetServiceArgs $) {
this.serviceName = $.serviceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetServiceArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetServiceArgs $;
public Builder() {
$ = new GetServiceArgs();
}
public Builder(GetServiceArgs defaults) {
$ = new GetServiceArgs(Objects.requireNonNull(defaults));
}
/**
* @param serviceName Service name to lookup within Service Quotas. Available values can be found with the [AWS CLI service-quotas list-services command](https://docs.aws.amazon.com/cli/latest/reference/service-quotas/list-services.html).
*
* @return builder
*
*/
public Builder serviceName(Output serviceName) {
$.serviceName = serviceName;
return this;
}
/**
* @param serviceName Service name to lookup within Service Quotas. Available values can be found with the [AWS CLI service-quotas list-services command](https://docs.aws.amazon.com/cli/latest/reference/service-quotas/list-services.html).
*
* @return builder
*
*/
public Builder serviceName(String serviceName) {
return serviceName(Output.of(serviceName));
}
public GetServiceArgs build() {
if ($.serviceName == null) {
throw new MissingRequiredPropertyException("GetServiceArgs", "serviceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy