Returns the descriptions of existing applications.
Access
public
Parameters
Parameter |
Type |
Required |
Description |
---|---|---|---|
|
Optional |
An associative array of parameters that can have the following keys:
|
Returns
Type |
Description |
---|---|
A |
Examples
Describe all existing applications.
// Instantiate the class $bean = new AmazonElasticBeanstalk(); $response = $bean->describe_applications(); // Success? var_dump($response->isOK());Result:
bool(true)
Describe a specific application.
// Instantiate the class $bean = new AmazonElasticBeanstalk(); $response = $bean->describe_applications(array( 'ApplicationNames' => 'my-application' )); // Success? var_dump($response->isOK());Result:
bool(true)
Related Methods
Source
Method defined in services/elasticbeanstalk.class.php | Toggle source view (15 lines) | View on GitHub