- 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.
DeleteApplicationsCommand
Deletes a list of applications and their associations with configuration items.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { ApplicationDiscoveryServiceClient, DeleteApplicationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
// const { ApplicationDiscoveryServiceClient, DeleteApplicationsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
const client = new ApplicationDiscoveryServiceClient(config);
const input = { // DeleteApplicationsRequest
configurationIds: [ // ApplicationIdsList // required
"STRING_VALUE",
],
};
const command = new DeleteApplicationsCommand(input);
const response = await client.send(command);
// {};
DeleteApplicationsCommand Input
See DeleteApplicationsCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
configurationIds Required | string[] | undefined | Configuration ID of an application to be deleted. |
DeleteApplicationsCommand Output
See DeleteApplicationsCommandOutput 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. |