com.pulumi.aws.ssoadmin.outputs.GetApplicationProvidersApplicationProviderDisplayData 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.ssoadmin.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetApplicationProvidersApplicationProviderDisplayData {
/**
* @return Description of the application provider.
*
*/
private String description;
/**
* @return Name of the application provider.
*
*/
private String displayName;
/**
* @return URL that points to an icon that represents the application provider.
*
*/
private String iconUrl;
private GetApplicationProvidersApplicationProviderDisplayData() {}
/**
* @return Description of the application provider.
*
*/
public String description() {
return this.description;
}
/**
* @return Name of the application provider.
*
*/
public String displayName() {
return this.displayName;
}
/**
* @return URL that points to an icon that represents the application provider.
*
*/
public String iconUrl() {
return this.iconUrl;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetApplicationProvidersApplicationProviderDisplayData defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String description;
private String displayName;
private String iconUrl;
public Builder() {}
public Builder(GetApplicationProvidersApplicationProviderDisplayData defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.displayName = defaults.displayName;
this.iconUrl = defaults.iconUrl;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("GetApplicationProvidersApplicationProviderDisplayData", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder displayName(String displayName) {
if (displayName == null) {
throw new MissingRequiredPropertyException("GetApplicationProvidersApplicationProviderDisplayData", "displayName");
}
this.displayName = displayName;
return this;
}
@CustomType.Setter
public Builder iconUrl(String iconUrl) {
if (iconUrl == null) {
throw new MissingRequiredPropertyException("GetApplicationProvidersApplicationProviderDisplayData", "iconUrl");
}
this.iconUrl = iconUrl;
return this;
}
public GetApplicationProvidersApplicationProviderDisplayData build() {
final var _resultValue = new GetApplicationProvidersApplicationProviderDisplayData();
_resultValue.description = description;
_resultValue.displayName = displayName;
_resultValue.iconUrl = iconUrl;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy