Applications applicationId
URI
/applications/applicationId
HTTP methods
GET
Operation ID: GetApplication
Gets the specified application.
| Name | Type | Required | Description |
|---|---|---|---|
applicationId | String | True | The Amazon Resource Name (ARN) of the application. |
| Name | Type | Required | Description |
|---|---|---|---|
semanticVersion | String | False | The semantic version of the application to get. |
| Status code | Response model | Description |
|---|---|---|
200 | Application | Success |
400 | BadRequestException | One of the parameters in the request is invalid. |
403 | ForbiddenException | The client is not authenticated. |
404 | NotFoundException | The resource (for example, an access policy statement) specified in the request doesn't exist. |
429 | TooManyRequestsException | The client is sending more than the allowed number of requests per unit of time. |
500 | InternalServerErrorException | The AWS Serverless Application Repository service encountered an internal error. |
DELETE
Operation ID: DeleteApplication
Deletes the specified application.
| Name | Type | Required | Description |
|---|---|---|---|
applicationId | String | True | The Amazon Resource Name (ARN) of the application. |
| Status code | Response model | Description |
|---|---|---|
204 | None | Success |
400 | BadRequestException | One of the parameters in the request is invalid. |
403 | ForbiddenException | The client is not authenticated. |
404 | NotFoundException | The resource (for example, an access policy statement) specified in the request doesn't exist. |
409 | ConflictException | The resource already exists. |
429 | TooManyRequestsException | The client is sending more than the allowed number of requests per unit of time. |
500 | InternalServerErrorException | The AWS Serverless Application Repository service encountered an internal error. |
OPTIONS
| Name | Type | Required | Description |
|---|---|---|---|
applicationId | String | True | The Amazon Resource Name (ARN) of the application. |
| Status code | Response model | Description |
|---|---|---|
200 | None | 200 response |
PATCH
Operation ID: UpdateApplication
Updates the specified application.
| Name | Type | Required | Description |
|---|---|---|---|
applicationId | String | True | The Amazon Resource Name (ARN) of the application. |
| Status code | Response model | Description |
|---|---|---|
200 | Application | Success |
400 | BadRequestException | One of the parameters in the request is invalid. |
403 | ForbiddenException | The client is not authenticated. |
404 | NotFoundException | The resource (for example, an access policy statement) specified in the request doesn't exist. |
409 | ConflictException | The resource already exists. |
429 | TooManyRequestsException | The client is sending more than the allowed number of requests per unit of time. |
500 | InternalServerErrorException | The AWS Serverless Application Repository service encountered an internal error. |
Schemas
Request bodies
{ "description description": "string", "author author": "string", "readmeBody readmeBody": "string", "readmeUrl readmeUrl": "string", "labels labels": [ "string" ], "homePageUrl homePageUrl": "string" }
Response bodies
{ "applicationId applicationId": "string", "name name": "string", "description description": "string", "author author": "string", "isVerifiedAuthor isVerifiedAuthor": boolean, "verifiedAuthorUrl verifiedAuthorUrl": "string", "spdxLicenseId spdxLicenseId": "string", "licenseUrl licenseUrl": "string", "readmeUrl readmeUrl": "string", "labels labels": [ "string" ], "creationTime creationTime": "string", "homePageUrl homePageUrl": "string", "version version": { "applicationId applicationId": "string", "semanticVersion semanticVersion": "string", "sourceCodeUrl sourceCodeUrl": "string", "sourceCodeArchiveUrl sourceCodeArchiveUrl": "string", "templateUrl templateUrl": "string", "creationTime creationTime": "string", "parameterDefinitions parameterDefinitions": [ { "name name": "string", "defaultValue defaultValue": "string", "description description": "string", "type type": "string", "noEcho noEcho": boolean, "allowedPattern allowedPattern": "string", "constraintDescription constraintDescription": "string", "minValue minValue": integer, "maxValue maxValue": integer, "minLength minLength": integer, "maxLength maxLength": integer, "allowedValues allowedValues": [ "string" ], "referencedByResources referencedByResources": [ "string" ] } ], "requiredCapabilities requiredCapabilities": [ enum ], "resourcesSupported resourcesSupported": boolean } }
{ "message message": "string", "errorCode errorCode": "string" }
{ "message message": "string", "errorCode errorCode": "string" }
{ "message message": "string", "errorCode errorCode": "string" }
{ "message message": "string", "errorCode errorCode": "string" }
{ "message message": "string", "errorCode errorCode": "string" }
{ "message message": "string", "errorCode errorCode": "string" }
Properties
Application
Details about the application.
| Property | Type | Required | Description |
|---|---|---|---|
applicationId | string | True | The application Amazon Resource Name (ARN). |
author | string | True | The name of the author publishing the app. Minimum length=1. Maximum length=127. Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$"; |
creationTime | string | False | The date and time this resource was created. |
description | string | True | The description of the application. Minimum length=1. Maximum length=256 |
homePageUrl | string | False | A URL with more information about the application, for example the location of your GitHub repository for the application. |
isVerifiedAuthor | boolean | False | Specifies whether the author of this application has been verified. This means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed. |
labels | Array of type string | False | Labels to improve discovery of apps in search results. Minimum length=1. Maximum length=127. Maximum number of labels: 10 Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$"; |
licenseUrl | string | False | A link to a license file of the app that matches the spdxLicenseID value of your application. Maximum size 5 MB |
name | string | True | The name of the application. Minimum length=1. Maximum length=140 Pattern: "[a-zA-Z0-9\\-]+"; |
readmeUrl | string | False | A link to the readme file in Markdown language that contains a more detailed description of the application and how it works. Maximum size 5 MB |
spdxLicenseId | string | False | A valid identifier from https://spdx.org/licenses/. |
verifiedAuthorUrl | string | False | The URL to the public profile of a verified author. This URL is submitted by the author. |
version | False | Version information about the application. |
applicationId
The application Amazon Resource Name (ARN).
Type: string
Required: True
name
The name of the application.
Minimum length=1. Maximum length=140
Pattern: "[a-zA-Z0-9\\-]+";
Type: string
Required: True
description
The description of the application.
Minimum length=1. Maximum length=256
Type: string
Required: True
author
The name of the author publishing the app.
Minimum length=1. Maximum length=127.
Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
Type: string
Required: True
isVerifiedAuthor
Specifies whether the author of this application has been verified. This means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.
Type: boolean
Required: False
verifiedAuthorUrl
The URL to the public profile of a verified author. This URL is submitted by the author.
Type: string
Required: False
spdxLicenseId
A valid identifier from https://spdx.org/licenses/.
Type: string
Required: False
licenseUrl
A link to a license file of the app that matches the spdxLicenseID value of your application.
Maximum size 5 MB
Type: string
Required: False
readmeUrl
A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.
Maximum size 5 MB
Type: string
Required: False
labels
Labels to improve discovery of apps in search results.
Minimum length=1. Maximum length=127. Maximum number of labels: 10
Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
Type: Array of type string
Required: False
creationTime
The date and time this resource was created.
Type: string
Required: False
homePageUrl
A URL with more information about the application, for example the location of your GitHub repository for the application.
Type: string
Required: False
BadRequestException
One of the parameters in the request is invalid.
| Property | Type | Required | Description |
|---|---|---|---|
errorCode | string | False | 400 |
message | string | False | One of the parameters in the request is invalid. |
message
One of the parameters in the request is invalid.
Type: string
Required: False
errorCode
400
Type: string
Required: False
Capability
Values that must be specified in order to deploy some applications.
CAPABILITY_IAMCAPABILITY_NAMED_IAMCAPABILITY_AUTO_EXPANDCAPABILITY_RESOURCE_POLICY
ConflictException
The resource already exists.
| Property | Type | Required | Description |
|---|---|---|---|
errorCode | string | False | 409 |
message | string | False | The resource already exists. |
message
The resource already exists.
Type: string
Required: False
errorCode
409
Type: string
Required: False
ForbiddenException
The client is not authenticated.
| Property | Type | Required | Description |
|---|---|---|---|
errorCode | string | False | 403 |
message | string | False | The client is not authenticated. |
message
The client is not authenticated.
Type: string
Required: False
errorCode
403
Type: string
Required: False
InternalServerErrorException
The AWS Serverless Application Repository service encountered an internal error.
| Property | Type | Required | Description |
|---|---|---|---|
errorCode | string | False | 500 |
message | string | False | The AWS Serverless Application Repository service encountered an internal error. |
message
The AWS Serverless Application Repository service encountered an internal error.
Type: string
Required: False
errorCode
500
Type: string
Required: False
NotFoundException
The resource (for example, an access policy statement) specified in the request doesn't exist.
| Property | Type | Required | Description |
|---|---|---|---|
errorCode | string | False | 404 |
message | string | False | The resource (for example, an access policy statement) specified in the request doesn't exist. |
message
The resource (for example, an access policy statement) specified in the request doesn't exist.
Type: string
Required: False
errorCode
404
Type: string
Required: False
ParameterDefinition
Parameters supported by the application.
| Property | Type | Required | Description |
|---|---|---|---|
allowedPattern | string | False | A regular expression that represents the patterns to allow for |
allowedValues | Array of type string | False | An array containing the list of values allowed for the parameter. |
constraintDescription | string | False | A string that explains a constraint when the constraint is violated. For example, without a constraint
description, a parameter that has an allowed pattern of
By adding a constraint description, such as "must contain only uppercase and lowercase letters and numbers," you can display the following customized error message:
|
defaultValue | string | False | A value of the appropriate type for the template to use if no value is specified when a stack is created. If you define constraints for the parameter, you must specify a value that adheres to those constraints. |
description | string | False | A string of up to 4,000 characters that describes the parameter. |
maxLength | integer | False | An integer value that determines the largest number of characters that you want to allow for
|
maxValue | integer | False | A numeric value that determines the largest numeric value that you want to allow for |
minLength | integer | False | An integer value that determines the smallest number of characters that you want to allow for
|
minValue | integer | False | A numeric value that determines the smallest numeric value that you want to allow for |
name | string | True | The name of the parameter. |
noEcho | boolean | False | Whether to mask the parameter value whenever anyone makes a call that describes the stack. If you set the value to true, the parameter value is masked with asterisks (*****). |
referencedByResources | Array of type string | True | A list of AWS SAM resources that use this parameter. |
type | string | False | The type of the parameter. Valid values:
For example, users can specify
For example, users might specify
For example, users might specify "80,20", and then
For example, users might specify "test,dev,prod", and then |
name
The name of the parameter.
Type: string
Required: True
defaultValue
A value of the appropriate type for the template to use if no value is specified when a stack is created. If you define constraints for the parameter, you must specify a value that adheres to those constraints.
Type: string
Required: False
description
A string of up to 4,000 characters that describes the parameter.
Type: string
Required: False
type
The type of the parameter.
Valid values: String | Number | List<Number> | CommaDelimitedList
String: A literal string.
For example, users can specify "MyUserName".
Number: An integer or float. CloudFormation validates the parameter value as a number. However,
when you use the parameter elsewhere in your template (for example, by using the Ref intrinsic
function), the parameter value becomes a string.
For example, users might specify "8888".
List<Number>: An array of integers or floats that are separated by commas. CloudFormation
validates the parameter value as numbers. However, when you use the parameter elsewhere in your template (for
example, by using the Ref intrinsic function), the parameter value becomes a list of strings.
For example, users might specify "80,20", and then Ref results in
["80","20"].
CommaDelimitedList: An array of literal strings that are separated by commas. The total number of
strings should be one more than the total number of commas. Also, each member string is space-trimmed.
For example, users might specify "test,dev,prod", and then Ref results in
["test","dev","prod"].
Type: string
Required: False
noEcho
Whether to mask the parameter value whenever anyone makes a call that describes the stack. If you set the value to true, the parameter value is masked with asterisks (*****).
Type: boolean
Required: False
allowedPattern
A regular expression that represents the patterns to allow for String types.
Type: string
Required: False
constraintDescription
A string that explains a constraint when the constraint is violated. For example, without a constraint
description, a parameter that has an allowed pattern of [A-Za-z0-9]+ displays the following error
message when the user specifies an invalid value:
Malformed input-Parameter MyParameter must match pattern [A-Za-z0-9]+
By adding a constraint description, such as "must contain only uppercase and lowercase letters and numbers," you can display the following customized error message:
Malformed input-Parameter MyParameter must contain only uppercase and lowercase letters and numbers.
Type: string
Required: False
minValue
A numeric value that determines the smallest numeric value that you want to allow for Number
types.
Type: integer
Required: False
maxValue
A numeric value that determines the largest numeric value that you want to allow for Number
types.
Type: integer
Required: False
minLength
An integer value that determines the smallest number of characters that you want to allow for
String types.
Type: integer
Required: False
maxLength
An integer value that determines the largest number of characters that you want to allow for
String types.
Type: integer
Required: False
allowedValues
An array containing the list of values allowed for the parameter.
Type: Array of type string
Required: False
referencedByResources
A list of AWS SAM resources that use this parameter.
Type: Array of type string
Required: True
TooManyRequestsException
The client is sending more than the allowed number of requests per unit of time.
| Property | Type | Required | Description |
|---|---|---|---|
errorCode | string | False | 429 |
message | string | False | The client is sending more than the allowed number of requests per unit of time. |
message
The client is sending more than the allowed number of requests per unit of time.
Type: string
Required: False
errorCode
429
Type: string
Required: False
UpdateApplicationInput
Update the application request.
| Property | Type | Required | Description |
|---|---|---|---|
author | string | False | The name of the author publishing the app. Minimum length=1. Maximum length=127. Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$"; |
description | string | False | The description of the application. Minimum length=1. Maximum length=256 |
homePageUrl | string | False | A URL with more information about the application, for example the location of your GitHub repository for the application. |
labels | Array of type string | False | Labels to improve discovery of apps in search results. Minimum length=1. Maximum length=127. Maximum number of labels: 10 Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$"; |
readmeBody | string | False | A text readme file in Markdown language that contains a more detailed description of the application and how it works. Maximum size 5 MB |
readmeUrl | string | False | A link to the readme file in Markdown language that contains a more detailed description of the application and how it works. Maximum size 5 MB |
description
The description of the application.
Minimum length=1. Maximum length=256
Type: string
Required: False
author
The name of the author publishing the app.
Minimum length=1. Maximum length=127.
Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
Type: string
Required: False
readmeBody
A text readme file in Markdown language that contains a more detailed description of the application and how it works.
Maximum size 5 MB
Type: string
Required: False
readmeUrl
A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.
Maximum size 5 MB
Type: string
Required: False
labels
Labels to improve discovery of apps in search results.
Minimum length=1. Maximum length=127. Maximum number of labels: 10
Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
Type: Array of type string
Required: False
homePageUrl
A URL with more information about the application, for example the location of your GitHub repository for the application.
Type: string
Required: False
Version
Application version details.
| Property | Type | Required | Description |
|---|---|---|---|
applicationId | string | True | The application Amazon Resource Name (ARN). |
creationTime | string | True | The date and time this resource was created. |
parameterDefinitions | Array of type ParameterDefinition | True | An array of parameter types supported by the application. |
requiredCapabilities | Array of type Capability | True | A list of values that you must specify before you can deploy certain applications. Some applications might include resources that can affect permissions in your AWS account, for example, by creating new AWS Identity and Access Management (IAM) users. For those applications, you must explicitly acknowledge their capabilities by specifying this parameter. The only valid values are The following resources require you to specify The following resources require you to specify Applications that contain one or more nested applications require you to specify
If your application template contains any of the above resources, we recommend that you review all permissions associated with the application before deploying. If you don't specify this parameter for an application that requires capabilities, the call will fail. |
resourcesSupported | boolean | True | Whether all of the AWS resources contained in this application are supported in the region in which it is being retrieved. |
semanticVersion | string | True | The semantic version of the application: |
sourceCodeArchiveUrl | string | False | A link to the S3 object that contains the ZIP archive of the source code for this version of your application. Maximum size 50 MB |
sourceCodeUrl | string | False | A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit. |
templateUrl | string | True | A link to the packaged AWS SAM template of your application. |
applicationId
The application Amazon Resource Name (ARN).
Type: string
Required: True
semanticVersion
The semantic version of the application:
Type: string
Required: True
sourceCodeUrl
A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
Type: string
Required: False
sourceCodeArchiveUrl
A link to the S3 object that contains the ZIP archive of the source code for this version of your application.
Maximum size 50 MB
Type: string
Required: False
templateUrl
A link to the packaged AWS SAM template of your application.
Type: string
Required: True
creationTime
The date and time this resource was created.
Type: string
Required: True
parameterDefinitions
An array of parameter types supported by the application.
Type: Array of type ParameterDefinition
Required: True
requiredCapabilities
A list of values that you must specify before you can deploy certain applications. Some applications might include resources that can affect permissions in your AWS account, for example, by creating new AWS Identity and Access Management (IAM) users. For those applications, you must explicitly acknowledge their capabilities by specifying this parameter.
The only valid values are CAPABILITY_IAM, CAPABILITY_NAMED_IAM,
CAPABILITY_RESOURCE_POLICY, and CAPABILITY_AUTO_EXPAND.
The following resources require you to specify CAPABILITY_IAM or
CAPABILITY_NAMED_IAM: AWS::IAM::Group, AWS::IAM::InstanceProfile, AWS::IAM::Policy, and AWS::IAM::Role.
If the application contains IAM resources, you can specify either CAPABILITY_IAM or
CAPABILITY_NAMED_IAM. If the application contains IAM resources with custom names, you must specify
CAPABILITY_NAMED_IAM.
The following resources require you to specify CAPABILITY_RESOURCE_POLICY: AWS::Lambda::Permission, AWS::IAM:Policy, AWS::ApplicationAutoScaling::ScalingPolicy, AWS::S3::BucketPolicy, AWS::SQS::QueuePolicy, and AWS::SNS::TopicPolicy.
Applications that contain one or more nested applications require you to specify
CAPABILITY_AUTO_EXPAND.
If your application template contains any of the above resources, we recommend that you review all permissions associated with the application before deploying. If you don't specify this parameter for an application that requires capabilities, the call will fail.
Type: Array of type Capability
Required: True
resourcesSupported
Whether all of the AWS resources contained in this application are supported in the region in which it is being retrieved.
Type: boolean
Required: True
See also
For more information about using this API in one of the language-specific AWS SDKs and references, see the following: