com.pulumi.aws.servicecatalog.outputs.GetAppregistryApplicationResult 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.servicecatalog.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
@CustomType
public final class GetAppregistryApplicationResult {
/**
* @return A map with a single tag key-value pair used to associate resources with the application.
*
*/
private Map applicationTag;
/**
* @return ARN (Amazon Resource Name) of the application.
*
*/
private String arn;
/**
* @return Description of the application.
*
*/
private String description;
private String id;
/**
* @return Name of the application.
*
*/
private String name;
private GetAppregistryApplicationResult() {}
/**
* @return A map with a single tag key-value pair used to associate resources with the application.
*
*/
public Map applicationTag() {
return this.applicationTag;
}
/**
* @return ARN (Amazon Resource Name) of the application.
*
*/
public String arn() {
return this.arn;
}
/**
* @return Description of the application.
*
*/
public String description() {
return this.description;
}
public String id() {
return this.id;
}
/**
* @return Name of the application.
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAppregistryApplicationResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Map applicationTag;
private String arn;
private String description;
private String id;
private String name;
public Builder() {}
public Builder(GetAppregistryApplicationResult defaults) {
Objects.requireNonNull(defaults);
this.applicationTag = defaults.applicationTag;
this.arn = defaults.arn;
this.description = defaults.description;
this.id = defaults.id;
this.name = defaults.name;
}
@CustomType.Setter
public Builder applicationTag(Map applicationTag) {
if (applicationTag == null) {
throw new MissingRequiredPropertyException("GetAppregistryApplicationResult", "applicationTag");
}
this.applicationTag = applicationTag;
return this;
}
@CustomType.Setter
public Builder arn(String arn) {
if (arn == null) {
throw new MissingRequiredPropertyException("GetAppregistryApplicationResult", "arn");
}
this.arn = arn;
return this;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("GetAppregistryApplicationResult", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetAppregistryApplicationResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetAppregistryApplicationResult", "name");
}
this.name = name;
return this;
}
public GetAppregistryApplicationResult build() {
final var _resultValue = new GetAppregistryApplicationResult();
_resultValue.applicationTag = applicationTag;
_resultValue.arn = arn;
_resultValue.description = description;
_resultValue.id = id;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy