Skip to content

Describe Map

locationservice_describe_map R Documentation

Retrieves the map resource details

Description

Retrieves the map resource details.

Usage

locationservice_describe_map(MapName)

Arguments

MapName

[required] The name of the map resource.

Value

A list with the following syntax:

list(
  MapName = "string",
  MapArn = "string",
  PricingPlan = "RequestBasedUsage"|"MobileAssetTracking"|"MobileAssetManagement",
  DataSource = "string",
  Configuration = list(
    Style = "string",
    PoliticalView = "string",
    CustomLayers = list(
      "string"
    )
  ),
  Description = "string",
  Tags = list(
    "string"
  ),
  CreateTime = as.POSIXct(
    "2015-01-01"
  ),
  UpdateTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_map(
  MapName = "string"
)