describe_notification_configurations ( $opt )

Returns a list of notification actions associated with Auto Scaling groups for specified events.

Access

public

Parameters

Parameter

Type

Required

Description

$opt

array

Optional

An associative array of parameters that can have the following keys:

  • AutoScalingGroupNames - string|array - Optional - The name of the Auto Scaling group. Pass a string for a single value, or an indexed array for multiple values.
  • NextToken - string - Optional - A string that is used to mark the start of the next batch of returned results for pagination. [Constraints: The value must match the following regular expression pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*]
  • MaxRecords - integer - Optional - Maximum number of records to be returned.
  • 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.

Returns

Type

Description

CFResponse

A CFResponse object containing a parsed HTTP response.

Source

Method defined in services/as.class.php | Toggle source view (15 lines) | View on GitHub

public function describe_notification_configurations($opt = null)
{
    if (!$opt) $opt = array();
            
    // Optional list (non-map)
    if (isset($opt['AutoScalingGroupNames']))
    {
        $opt = array_merge($opt, CFComplexType::map(array(
            'AutoScalingGroupNames' => (is_array($opt['AutoScalingGroupNames']) ? $opt['AutoScalingGroupNames'] : array($opt['AutoScalingGroupNames']))
        ), 'member'));
        unset($opt['AutoScalingGroupNames']);
    }

    return $this->authenticate('DescribeNotificationConfigurations', $opt);
}

Copyright © 2010–2013 Amazon Web Services, LLC


Feedback