# File lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb, line 36
        def describe_auto_scaling_notification_types()
          results = {
            'AutoScalingNotificationTypes' => [],
          }
          self.data[:notification_types].each do |notification_type|
            results['AutoScalingNotificationTypes'] << notification_type
          end
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'DescribeAutoScalingNotificationTypesResult' => results,
            'ResponseMetadata' => { 'RequestId' => Fog::AWS::Mock.request_id }
          }
          response
        end