Sha256: 7bc16ef81c5d9bd14de4308bc5142805dd1d8d797a124b15210136ed70588e9a

Contents?: true

Size: 941 Bytes

Versions: 1

Compression:

Stored size: 941 Bytes

Contents

module Fog
  module AWS
    class SES
      class Real

        require 'rackspace-fog/aws/parsers/ses/get_send_statistics'

        # Returns the user's current activity limits.
        #
        # ==== Parameters
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'GetSendStatisticsResult'<~Hash>
        #       * 'SendDataPoints' <~Array>
        #         * 'Bounces' <~String>
        #         * 'Complaints' <~String>
        #         * 'DeliveryAttempts' <~String>
        #         * 'Rejects' <~String>
        #         * 'Timestamp' <~String>
        #     * 'ResponseMetadata'<~Hash>:
        #       * 'RequestId'<~String> - Id of request
        def get_send_statistics
          request({
            'Action' => 'GetSendStatistics',
            :parser  => Fog::Parsers::AWS::SES::GetSendStatistics.new
          })
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/ses/get_send_statistics.rb