batch_get_applications
(**kwargs)¶Gets information about one or more applications. The maximum number of applications that can be returned is 100.
See also: AWS API Documentation
Request Syntax
response = client.batch_get_applications(
applicationNames=[
'string',
]
)
[REQUIRED]
A list of application names separated by spaces. The maximum number of application names you can specify is 100.
{
'applicationsInfo': [
{
'applicationId': 'string',
'applicationName': 'string',
'createTime': datetime(2015, 1, 1),
'linkedToGitHub': True|False,
'gitHubAccountName': 'string',
'computePlatform': 'Server'|'Lambda'|'ECS'
},
]
}
Response Structure
Represents the output of a BatchGetApplications
operation.
Information about the applications.
Information about an application.
The application ID.
The application name.
The time at which the application was created.
True if the user has authenticated with GitHub for the specified application. Otherwise, false.
The name for a connection to a GitHub account.
The destination platform type for deployment of the application ( Lambda
or Server
).
Exceptions
CodeDeploy.Client.exceptions.ApplicationNameRequiredException
CodeDeploy.Client.exceptions.InvalidApplicationNameException
CodeDeploy.Client.exceptions.ApplicationDoesNotExistException
CodeDeploy.Client.exceptions.BatchLimitExceededException