- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
UpdateRouteCalculatorCommand
Updates the specified properties for a given route calculator resource.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { LocationClient, UpdateRouteCalculatorCommand } from "@aws-sdk/client-location"; // ES Modules import
// const { LocationClient, UpdateRouteCalculatorCommand } = require("@aws-sdk/client-location"); // CommonJS import
const client = new LocationClient(config);
const input = { // UpdateRouteCalculatorRequest
CalculatorName: "STRING_VALUE", // required
PricingPlan: "STRING_VALUE",
Description: "STRING_VALUE",
};
const command = new UpdateRouteCalculatorCommand(input);
const response = await client.send(command);
// { // UpdateRouteCalculatorResponse
// CalculatorName: "STRING_VALUE", // required
// CalculatorArn: "STRING_VALUE", // required
// UpdateTime: new Date("TIMESTAMP"), // required
// };
UpdateRouteCalculatorCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
CalculatorName Required | string | undefined | The name of the route calculator resource to update. |
Description | string | undefined | Updates the description for the route calculator resource. |
PricingPlan | PricingPlan | undefined | No longer used. If included, the only allowed value is |
UpdateRouteCalculatorCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
CalculatorArn Required | string | undefined | The Amazon Resource Name (ARN) of the updated route calculator resource. Used to specify a resource across AWS.
|
CalculatorName Required | string | undefined | The name of the updated route calculator resource. |
UpdateTime Required | Date | undefined | The timestamp for when the route calculator was last updated in ISO 8601 format: |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | The request was denied because of insufficient access or permissions. Check with an administrator to verify your permissions. |
InternalServerException | server | The request has failed to process because of an unknown server error, exception, or failure. |
ResourceNotFoundException | client | The resource that you've entered was not found in your AWS account. |
ThrottlingException | client | The request was denied because of request throttling. |
ValidationException | client | The input failed to meet the constraints specified by the AWS service. |
LocationServiceException | Base exception class for all service exceptions from Location service. |