# File lib/fog/aws/requests/compute/describe_account_attributes.rb, line 34
        def describe_account_attributes(filters = {})
          account_attributes = self.data[:account_attributes]

          Excon::Response.new(
            :status => 200,
            :body => {
              'requestId'           => Fog::AWS::Mock.request_id,
              'accountAttributeSet' => account_attributes
            }
          )
        end