Create Application
| codedeploy_create_application | R Documentation | 
Creates an application¶
Description¶
Creates an application.
Usage¶
codedeploy_create_application(applicationName, computePlatform, tags)
Arguments¶
applicationName | 
[required] The name of the application. This name must be unique with the applicable user or Amazon Web Services account.  | 
computePlatform | 
The destination platform type for the deployment
(  | 
tags | 
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.  | 
Value¶
A list with the following syntax:
list(
  applicationId = "string"
)
Request syntax¶
svc$create_application(
  applicationName = "string",
  computePlatform = "Server"|"Lambda"|"ECS",
  tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)