Update Map
locationservice_update_map | R Documentation |
Updates the specified properties of a given map resource¶
Description¶
Updates the specified properties of a given map resource.
Usage¶
locationservice_update_map(MapName, PricingPlan, Description,
ConfigurationUpdate)
Arguments¶
MapName |
[required] The name of the map resource to update. |
PricingPlan |
No longer used. If included, the only allowed value is
|
Description |
Updates the description for the map resource. |
ConfigurationUpdate |
Updates the parts of the map configuration that can be updated, including the political view. |
Value¶
A list with the following syntax:
list(
MapName = "string",
MapArn = "string",
UpdateTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_map(
MapName = "string",
PricingPlan = "RequestBasedUsage"|"MobileAssetTracking"|"MobileAssetManagement",
Description = "string",
ConfigurationUpdate = list(
PoliticalView = "string",
CustomLayers = list(
"string"
)
)
)