AWS Elastic Beanstalk details page. * The location of the lastest AWS Elastic Beanstalk WSDL is http://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl. * * Endpoints * * AWS Elastic Beanstalk supports the following region-specific endpoint: * *
AWS_KEY constant.
* @param string $secret_key (Optional) Your Amazon API Secret Key. If blank, it will look for the AWS_SECRET_KEY constant.
* @return boolean false if no valid values are set, otherwise true.
*/
public function __construct($key = null, $secret_key = null)
{
$this->api_version = '2010-12-01';
$this->hostname = self::DEFAULT_URL;
if (!$key && !defined('AWS_KEY'))
{
// @codeCoverageIgnoreStart
throw new Beanstalk_Exception('No account key was passed into the constructor, nor was it set in the AWS_KEY constant.');
// @codeCoverageIgnoreEnd
}
if (!$secret_key && !defined('AWS_SECRET_KEY'))
{
// @codeCoverageIgnoreStart
throw new Beanstalk_Exception('No account secret was passed into the constructor, nor was it set in the AWS_SECRET_KEY constant.');
// @codeCoverageIgnoreEnd
}
return parent::__construct($key, $secret_key);
}
/*%******************************************************************************************%*/
// SERVICE METHODS
/**
*
* Checks if the specified CNAME is available.
*
* @param string $cname_prefix (Required) The prefix used when this CNAME is reserved.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.ApplicationName - string - Optional - The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment. TemplateName - string - Optional - The name of the configuration template whose configuration options you want to describe. EnvironmentName - string - Optional - The name of the environment whose configuration options you want to describe. SolutionStackName - string - Optional - The name of the solution stack whose configuration options you want to describe. Options - array - Optional - If specified, restricts the descriptions to only the specified options. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.CreateEnvironment returns an InvalidParameterValue error.
* @param string $environment_name (Required) A unique name for the deployment environment. Used in the application URL. Constraint: Must be from 4 to 23 characters in length. The name can contain only letters, numbers, and hyphens. It cannot start or end with a hyphen. This name must be unique in your account. If the specified name already exists, AWS Elastic Beanstalk returns an InvalidParameterValue error. Default: If the CNAME parameter is not specified, the environment name becomes part of the CNAME, and therefore part of the visible URL for your application.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: VersionLabel - string - Optional - The name of the application version to deploy. If the specified application has no associated application versions, AWS Elastic Beanstalk UpdateEnvironment returns an InvalidParameterValue error. Default: If not specified, AWS Elastic Beanstalk attempts to launch the most recently created application version. TemplateName - string - Optional - The name of the configuration template to use in deployment. If no configuration template is found with this name, AWS Elastic Beanstalk returns an InvalidParameterValue error. Conditional: You must specify either this parameter or a SolutionStackName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter error. SolutionStackName - string - Optional - This is an alternative to specifying a configuration name. If specified, AWS Elastic Beanstalk sets the configuration values to the default values associated with the specified solution stack. Condition: You must specify either this or a TemplateName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter error. CNAMEPrefix - string - Optional - If specified, the environment attempts to use this value as the prefix for the CNAME. If not specified, the environment uses the environment name. Description - string - Optional - Describes this environment. OptionSettings - array - Optional - If specified, AWS Elastic Beanstalk sets the specified configuration options to the requested value in the configuration set for the new environment. These override the values obtained from the solution stack or the configuration template. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. Value - string - Optional - The current value for the configuration option. OptionsToRemove - array - Optional - A list of custom user-defined configuration options to remove from the configuration set for this new environment. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.InfoType to tail compiles the last lines from the application server log files of every Amazon EC2
* instance in your environment. Use RetrieveEnvironmentInfo to access the compiled information.
*
* Related Topics
*
* tail]
* @param array $opt (Optional) An associative array of parameters that can have the following keys: EnvironmentId - string - Optional - The ID of the environment of the requested data. If no such environment is found, RequestEnvironmentInfo returns an InvalidParameterValue error. EnvironmentName - string - Optional - The name of the environment of the requested data. If no such environment is found, RequestEnvironmentInfo returns an InvalidParameterValue error. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.AutoCreateApplication is false, returns an InvalidParameterValue error.
* @param string $version_label (Required) A label identifying this version. Constraint: Must be unique per application. If an application version already exists with this label for the specified application, AWS Elastic Beanstalk returns an InvalidParameterValue error.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: Description - string - Optional - Describes this version. SourceBundle - array - Optional - The Amazon S3 bucket and key that identify the location of the source bundle for this version. If data found at the Amazon S3 location exceeds the maximum allowed source bundle size, AWS Elastic Beanstalk returns an InvalidParameterValue error. Default: If not specified, AWS Elastic Beanstalk uses a sample application. If only partially specified (for example, a bucket is provided but not the key) or if no data is found at the Amazon S3 location, AWS Elastic Beanstalk returns an InvalidParameterCombination error. S3Bucket - string - Optional - The Amazon S3 bucket where the data is located. S3Key - string - Optional - The Amazon S3 key where the data is located. AutoCreateApplication - boolean - Optional - Determines how the system behaves if the specified application for this version does not already exist: true: Automatically creates the specified application for this version if it does not already exist. false: Returns an InvalidParameterValue if the specified application for this version does not already exist. true : Automatically creates the specified application for this release if it does not already exist. false : Throws an InvalidParameterValue if the specified application for this release does not already exist. false Valid Values: true | false curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.DeleteSourceBundle - boolean - Optional - Indicates whether to delete the associated source bundle from Amazon S3: true: An attempt is made to delete the associated Amazon S3 source bundle specified at time of creation. false: No action is taken on the Amazon S3 source bundle specified at time of creation. true | false curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.ApplicationName - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include ones that are associated with the specified application. VersionLabels - string|array - Optional - If specified, restricts the returned descriptions to only include ones that have the specified version labels. Pass a string for a single value, or an indexed array for multiple values. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.description) is not provided, the value remains unchanged. To clear properties, specify an empty
* string.
*
* @param string $application_name (Required) The name of the application associated with this version. If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.
* @param string $version_label (Required) The name of the version to update. If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: Description - string - Optional - A new description for this release. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.default and no application versions.
*
* The default configuration template is for a 32-bit version of the Amazon Linux operating system running the Tomcat 6
* application container.
*
* @param string $application_name (Required) The name of the application. Constraint: This name must be unique within your account. If the specified name already exists, the action returns an InvalidParameterValue error.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: Description - string - Optional - Describes the application. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.SourceEnvironmentId - string - Optional - The ID of the source environment. Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentId, you must specify the DestinationEnvironmentId. SourceEnvironmentName - string - Optional - The name of the source environment. Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentName, you must specify the DestinationEnvironmentName. DestinationEnvironmentId - string - Optional - The ID of the destination environment. Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentId with the DestinationEnvironmentId. DestinationEnvironmentName - string - Optional - The name of the destination environment. Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentName with the DestinationEnvironmentName. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.ApplicationName) is not provided, its value remains unchanged. To clear such properties, specify
* an empty string.
*
* Related Topics
*
* UpdateConfigurationTemplate returns an InvalidParameterValue error.
* @param string $template_name (Required) The name of the configuration template to update. If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: Description - string - Optional - A new description for the configuration. OptionSettings - array - Optional - A list of configuration option settings to update with the new specified option value. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. Value - string - Optional - The current value for the configuration option. OptionsToRemove - array - Optional - A list of configuration options to remove from the configuration set. Constraint: You can remove only UserDefined configuration options. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.tail]
* @param array $opt (Optional) An associative array of parameters that can have the following keys: EnvironmentId - string - Optional - The ID of the data's environment. If no such environment is found, returns an InvalidParameterValue error. EnvironmentName - string - Optional - The name of the data's environment. If no such environment is found, returns an InvalidParameterValue error. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.description) is not provided, the value remains unchanged. To clear these properties, specify an
* empty string.
*
* @param string $application_name (Required) The name of the application to update. If no such application is found, UpdateApplication returns an InvalidParameterValue error.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: Description - string - Optional - A new description for the application. Default: If not specified, AWS Elastic Beanstalk does not update the description. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.ApplicationName - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application. VersionLabel - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application version. EnvironmentIds - string|array - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs. Pass a string for a single value, or an indexed array for multiple values. EnvironmentNames - string|array - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names. Pass a string for a single value, or an indexed array for multiple values. IncludeDeleted - boolean - Optional - Indicates whether to include deleted environments: true: Environments that have been deleted after IncludedDeletedBackTo are displayed. false: Do not include deleted environments. IncludedDeletedBackTo - string - Optional - If specified when IncludeDeleted is set to true, then environments deleted after this date are displayed. May be passed as a number of seconds since UNIX Epoch, or any string compatible with curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.EnvironmentId - string - Optional - The ID of the environment to retrieve AWS resource usage data. EnvironmentName - string - Optional - The name of the environment to retrieve AWS resource usage data. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.EnvironmentId - string - Optional - The ID of the environment to terminate. EnvironmentName - string - Optional - The name of the environment to terminate. TerminateResources - boolean - Optional - Indicates whether the associated AWS resources should shut down when the environment is terminated: true: (default) The user AWS resources (for example, the Auto Scaling group, LoadBalancer, etc.) are terminated along with the environment. false: The environment is removed from the AWS Elastic Beanstalk but the AWS resources continue to operate. true: The specified environment as well as the associated AWS resources, such as Auto Scaling group and LoadBalancer, are terminated. false: AWS Elastic Beanstalk resource management is removed from the environment, but the AWS resources continue to operate. true Valid Values: true | false curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. Value - string - Optional - The current value for the configuration option. TemplateName - string - Optional - The name of the configuration template to validate the settings against. Condition: You cannot specify both this and an environment name. EnvironmentName - string - Optional - The name of the environment to validate the settings against. Condition: You cannot specify both this and a configuration template name. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.EnvironmentId - string - Optional - The ID of the environment to restart the server for. EnvironmentName - string - Optional - The name of the environment to restart the server for. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.DeploymentStatus for the draft
* configuration indicates whether the deployment is in process or has failed. The draft configuration remains in existence until it is deleted
* with this action.
*
* @param string $application_name (Required) The name of the application the environment is associated with.
* @param string $environment_name (Required) The name of the environment to delete the draft configuration from.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.InvalidParameterCombination error.
*
* When updating the configuration settings to a new template or individual settings, a draft configuration is created and
* DescribeConfigurationSettings for this environment returns two setting descriptions with different DeploymentStatus values.
*
* @param array $opt (Optional) An associative array of parameters that can have the following keys: EnvironmentId - string - Optional - The ID of the environment to update. If no environment with this ID exists, AWS Elastic Beanstalk returns an InvalidParameterValue error. EnvironmentName - string - Optional - The name of the environment to update. If no environment with this name exists, AWS Elastic Beanstalk returns an InvalidParameterValue error. VersionLabel - string - Optional - If this parameter is specified, AWS Elastic Beanstalk deploys the named application version to the environment. If no such application version is found, returns an InvalidParameterValue error. TemplateName - string - Optional - If this parameter is specified, AWS Elastic Beanstalk deploys this configuration template to the environment. If no such configuration template is found, AWS Elastic Beanstalk returns an InvalidParameterValue error. Description - string - Optional - If this parameter is specified, AWS Elastic Beanstalk updates the description of this environment. OptionSettings - array - Optional - If specified, AWS Elastic Beanstalk updates the configuration set associated with the running environment and sets the specified configuration options to the requested value. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. Value - string - Optional - The current value for the configuration option. OptionsToRemove - array - Optional - A list of custom user-defined configuration options to remove from the configuration set for this environment. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.InvalidParameterValue error.
* @param string $template_name (Required) The name of the configuration template. Constraint: This name must be unique per application. Default: If a configuration template already exists with this name, AWS Elastic Beanstalk returns an InvalidParameterValue error.
* @param array $opt (Optional) An associative array of parameters that can have the following keys: SolutionStackName - string - Optional - The name of the solution stack used by this configuration. The solution stack specifies the operating system, architecture, and application server for a configuration template. It determines the set of configuration options as well as the possible and default values. Use ListAvailableSolutionStacks to obtain a list of available solution stacks. Default: If the SolutionStackName is not specified and the source configuration parameter is blank, AWS Elastic Beanstalk uses the default solution stack. If not specified and the source configuration parameter is specified, AWS Elastic Beanstalk uses the same solution stack as the source configuration template. SourceConfiguration - array - Optional - If specified, AWS Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration. Values specified in the OptionSettings parameter of this call overrides any values obtained from the SourceConfiguration. If no configuration template is found, returns an InvalidParameterValue error. Constraint: If both the solution stack name parameter and the source configuration parameters are specified, the solution stack of the source configuration template must match the specified solution stack name or else AWS Elastic Beanstalk returns an InvalidParameterCombination error. ApplicationName - string - Optional - The name of the application associated with the configuration. TemplateName - string - Optional - The name of the configuration template. EnvironmentId - string - Optional - The ID of the environment used with this configuration template. Description - string - Optional - Describes this configuration. OptionSettings - array - Optional - If specified, AWS Elastic Beanstalk sets the specified configuration option to the requested value. The new value overrides the value obtained from the solution stack or the source configuration template. x - array - This represents a simple array index. Namespace - string - Optional - A unique namespace identifying the option's associated AWS resource. OptionName - string - Optional - The name of the configuration option. Value - string - Optional - The current value for the configuration option. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.TemplateName - string - Optional - The name of the configuration template to describe. EnvironmentName - string - Optional - The name of the environment to describe. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.ApplicationNames - string|array - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include those with the specified names. Pass a string for a single value, or an indexed array for multiple values. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.EnvironmentId - string - Optional - The ID of the environment to rebuild. EnvironmentName - string - Optional - The name of the environment to rebuild. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.NextToken.
*
* @param array $opt (Optional) An associative array of parameters that can have the following keys: ApplicationName - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application. VersionLabel - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version. TemplateName - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration. EnvironmentId - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment. EnvironmentName - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment. RequestId - string - Optional - If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID. Severity - string - Optional - If specified, limits the events returned from this call to include only those with the specified severity or higher. [Allowed values: TRACE, DEBUG, INFO, WARN, ERROR, FATAL]StartTime - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time. May be passed as a number of seconds since UNIX Epoch, or any string compatible with EndTime - string - Optional - If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the EndTime. May be passed as a number of seconds since UNIX Epoch, or any string compatible with NextToken - string - Optional - Pagination token. If specified, the events return the next batch of results. curlopts - array - Optional - A set of values to pass directly into curl_setopt(), where the key is a pre-defined CURLOPT_* constant.returnCurlHandle - boolean - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.