MapArgs

data class MapArgs(val configuration: Output<MapConfigurationArgs>? = null, val description: Output<String>? = null, val mapName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<MapArgs>

Provides a Location Service Map.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.location.Map("example", {
configuration: {
style: "VectorHereBerlin",
},
mapName: "example",
});
import pulumi
import pulumi_aws as aws
example = aws.location.Map("example",
configuration={
"style": "VectorHereBerlin",
},
map_name="example")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Location.Map("example", new()
{
Configuration = new Aws.Location.Inputs.MapConfigurationArgs
{
Style = "VectorHereBerlin",
},
MapName = "example",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/location"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := location.NewMap(ctx, "example", &location.MapArgs{
Configuration: &location.MapConfigurationArgs{
Style: pulumi.String("VectorHereBerlin"),
},
MapName: pulumi.String("example"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.location.Map;
import com.pulumi.aws.location.MapArgs;
import com.pulumi.aws.location.inputs.MapConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Map("example", MapArgs.builder()
.configuration(MapConfigurationArgs.builder()
.style("VectorHereBerlin")
.build())
.mapName("example")
.build());
}
}
resources:
example:
type: aws:location:Map
properties:
configuration:
style: VectorHereBerlin
mapName: example

Import

Using pulumi import, import aws_location_map resources using the map name. For example:

$ pulumi import aws:location/map:Map example example

Constructors

Link copied to clipboard
constructor(configuration: Output<MapConfigurationArgs>? = null, description: Output<String>? = null, mapName: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val configuration: Output<MapConfigurationArgs>? = null

Configuration block with the map style selected from an available data provider. Detailed below.

Link copied to clipboard
val description: Output<String>? = null

An optional description for the map resource.

Link copied to clipboard
val mapName: Output<String>? = null

The name for the map resource. The following arguments are optional:

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value tags for the map. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Functions

Link copied to clipboard
open override fun toJava(): MapArgs