- 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.
CreateApplicationCommand
Creates an application with the given name and description.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { ApplicationDiscoveryServiceClient, CreateApplicationCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
// const { ApplicationDiscoveryServiceClient, CreateApplicationCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
const client = new ApplicationDiscoveryServiceClient(config);
const input = { // CreateApplicationRequest
name: "STRING_VALUE", // required
description: "STRING_VALUE",
wave: "STRING_VALUE",
};
const command = new CreateApplicationCommand(input);
const response = await client.send(command);
// { // CreateApplicationResponse
// configurationId: "STRING_VALUE",
// };
CreateApplicationCommand Input
See CreateApplicationCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
name Required | string | undefined | The name of the application to be created. |
description | string | undefined | The description of the application to be created. |
wave | string | undefined | The name of the migration wave of the application to be created. |
CreateApplicationCommand Output
See CreateApplicationCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
configurationId | string | undefined | The configuration ID of an application to be created. |
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. |