- 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.
UpdateApplicationCommand
Updates metadata about an application.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { ApplicationDiscoveryServiceClient, UpdateApplicationCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
// const { ApplicationDiscoveryServiceClient, UpdateApplicationCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
const client = new ApplicationDiscoveryServiceClient(config);
const input = { // UpdateApplicationRequest
configurationId: "STRING_VALUE", // required
name: "STRING_VALUE",
description: "STRING_VALUE",
wave: "STRING_VALUE",
};
const command = new UpdateApplicationCommand(input);
const response = await client.send(command);
// {};
UpdateApplicationCommand Input
See UpdateApplicationCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
configurationId Required | string | undefined | Configuration ID of the application to be updated. |
description | string | undefined | New description of the application to be updated. |
name | string | undefined | New name of the application to be updated. |
wave | string | undefined | The new migration wave of the application that you want to update. |
UpdateApplicationCommand Output
See UpdateApplicationCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AuthorizationErrorException | client | The user does not have permission to perform the action. Check the IAM policy associated with this user. |
HomeRegionNotSetException | client | The home Region is not set. Set the home Region to continue. |
InvalidParameterException | client | One or more parameters are not valid. Verify the parameters and try again. |
InvalidParameterValueException | client | The value of one or more parameters are either invalid or out of range. Verify the parameter values and try again. |
ServerInternalErrorException | server | The server experienced an internal error. Try again. |
ApplicationDiscoveryServiceServiceException | Base exception class for all service exceptions from ApplicationDiscoveryService service. |