com.pulumi.aws.location.outputs.GetMapConfiguration 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.location.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetMapConfiguration {
/**
* @return The map style selected from an available data provider.
*
*/
private String style;
private GetMapConfiguration() {}
/**
* @return The map style selected from an available data provider.
*
*/
public String style() {
return this.style;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetMapConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String style;
public Builder() {}
public Builder(GetMapConfiguration defaults) {
Objects.requireNonNull(defaults);
this.style = defaults.style;
}
@CustomType.Setter
public Builder style(String style) {
if (style == null) {
throw new MissingRequiredPropertyException("GetMapConfiguration", "style");
}
this.style = style;
return this;
}
public GetMapConfiguration build() {
final var _resultValue = new GetMapConfiguration();
_resultValue.style = style;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy