
com.pulumi.aws.location.outputs.MapConfiguration 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 MapConfiguration {
/**
* @return Specifies the map style selected from an available data provider. Valid values can be found in the [Location Service CreateMap API Reference](https://docs.aws.amazon.com/location/latest/APIReference/API_CreateMap.html).
*
*/
private String style;
private MapConfiguration() {}
/**
* @return Specifies the map style selected from an available data provider. Valid values can be found in the [Location Service CreateMap API Reference](https://docs.aws.amazon.com/location/latest/APIReference/API_CreateMap.html).
*
*/
public String style() {
return this.style;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MapConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String style;
public Builder() {}
public Builder(MapConfiguration defaults) {
Objects.requireNonNull(defaults);
this.style = defaults.style;
}
@CustomType.Setter
public Builder style(String style) {
if (style == null) {
throw new MissingRequiredPropertyException("MapConfiguration", "style");
}
this.style = style;
return this;
}
public MapConfiguration build() {
final var _resultValue = new MapConfiguration();
_resultValue.style = style;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy