
com.pulumi.aws.autoscaling.inputs.GetGroupPlainArgs 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.autoscaling.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetGroupPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGroupPlainArgs Empty = new GetGroupPlainArgs();
/**
* Specify the exact name of the desired autoscaling group.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Specify the exact name of the desired autoscaling group.
*
*/
public String name() {
return this.name;
}
private GetGroupPlainArgs() {}
private GetGroupPlainArgs(GetGroupPlainArgs $) {
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroupPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGroupPlainArgs $;
public Builder() {
$ = new GetGroupPlainArgs();
}
public Builder(GetGroupPlainArgs defaults) {
$ = new GetGroupPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param name Specify the exact name of the desired autoscaling group.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
public GetGroupPlainArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetGroupPlainArgs", "name");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy