Batch Get Applications
codedeploy_batch_get_applications | R Documentation |
Gets information about one or more applications¶
Description¶
Gets information about one or more applications. The maximum number of applications that can be returned is 100.
Usage¶
codedeploy_batch_get_applications(applicationNames)
Arguments¶
applicationNames |
[required] A list of application names separated by spaces. The maximum number of application names you can specify is 100. |
Value¶
A list with the following syntax:
list(
applicationsInfo = list(
list(
applicationId = "string",
applicationName = "string",
createTime = as.POSIXct(
"2015-01-01"
),
linkedToGitHub = TRUE|FALSE,
gitHubAccountName = "string",
computePlatform = "Server"|"Lambda"|"ECS"
)
)
)
Request syntax¶
svc$batch_get_applications(
applicationNames = list(
"string"
)
)